/* ========================================
   PRODUCT PAGE STYLES (SAE Eventos)
   ======================================== */

.product-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f0faff 50%, #009fe380 100%);
    color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.product-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: white;
    clip-path: ellipse(75% 100% at 50% 100%);
}

.feature-icon-large {
    width: 70px;
    height: 70px;
    background: rgba(0, 159, 227, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 159, 227, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.info-section {
    padding: 80px 0;
}

.info-card {
    border: none;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    display: block;
}

.info-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.highlight-box {
    background: rgba(2, 83, 172, 0.03);
    border-left: 4px solid var(--primary-color);
    padding: 2.5rem;
    border-radius: 0 20px 20px 0;
    margin: 3rem 0;
}

.cta-bottom {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--dark-color) !important;
    font-weight: 500;
}

/* Laptop Image & Icons */
.product-laptop-img {
    filter: drop-shadow(0 20px 50px rgba(0, 159, 227, 0.15));
    transition: transform 0.4s ease;
}

.product-laptop-img:hover {
    transform: translateY(-10px);
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.icon-circle i {
    margin: 0 !important;
    display: inline-block !important;
    line-height: 1;
}

/* Potentials Section - Icons must be white here */
.potentials-section .icon-circle i {
    color: white !important;
}

/* Potentials Section & Custom Layouts */
.container-custom {
    max-width: 1140px;
}

.potentials-section {
    position: relative;
    z-index: 1;
}

.potentials-section .info-card {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease;
}

.potentials-section .info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 159, 227, 0.08) !important;
}

.check-list-v2 {
    margin-top: 1rem;
}

.check-list-v2 li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

.check-list-v2 li::before {
    content: '\F272';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.check-list-v2 li strong {
    color: var(--dark-color);
}

/* Custom Icon Backgrounds with Brand Colors */
.bg-brand-primary {
    background: var(--gradient-primary) !important;
}

.bg-brand-secondary {
    background: var(--secondary-color) !important;
}

.bg-brand-green {
    background: var(--green-dark) !important;
}

.bg-brand-orange {
    background: var(--orange) !important;
}

.bg-brand-purple {
    background: var(--purple) !important;
}

.bg-brand-muted {
    background: var(--text-muted) !important;
}

.bg-primary-subtle {
    background-color: rgba(2, 83, 172, 0.08) !important;
}

.bg-success-subtle {
    background-color: rgba(23, 213, 151, 0.1) !important;
}

@media (max-width: 991px) {
    .product-hero {
        padding: 120px 0 70px;
    }

    .info-section {
        padding: 60px 0;
    }

    .cta-bottom {
        padding: 70px 0;
    }

    .potentials-section .text-center {
        text-align: center !important;
    }

    .laptop-feature-section {
        text-align: center;
    }

    .laptop-feature-section .ps-lg-4 {
        padding-left: 0 !important;
        margin-top: 2rem;
    }

    .laptop-feature-section .d-flex {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .product-hero {
        padding: 100px 0 50px;
        text-align: center;
    }

    .product-hero h1 {
        font-size: 1.65rem;
    }

    .product-hero p {
        font-size: 0.9rem;
    }

    .product-hero .breadcrumb {
        justify-content: center;
    }

    .feature-icon-large {
        width: 56px;
        height: 56px;
        font-size: 1.7rem;
        margin-bottom: 1.25rem;
    }

    .info-section {
        padding: 40px 0;
    }

    .info-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .info-card i {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .info-card h4 {
        font-size: 1rem;
    }

    .highlight-box {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .cta-bottom {
        padding: 50px 0;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
        border-radius: 10px;
    }

    .check-list-v2 li {
        font-size: 0.88rem;
    }
}