:root {
    --gold-primary: #ecac32;
    --gold-dark: #d49a2a;
    --navy-dark: #0f172a;
    --navy-light: #1e293b;
    --gray-text: #64748b;
    --bg-light: #f8fafc;
}

.highlight-gold {
    color: var(--gold-primary);
}

.about-hero-creative {
    position: relative;
    padding: 10rem 0 8rem;
    background-color: var(--navy-dark);
    overflow: hidden;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.f-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(236, 172, 50, 0.05) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.f-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(236, 172, 50, 0.08) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
}

.relative-z {
    position: relative;
    z-index: 5;
}

.breadcrumb {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.breadcrumb-item a:hover { color: var(--gold-primary); }
.breadcrumb-item.active { color: var(--gold-primary); font-weight: 600; }
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding-right: 0.75rem;
    color: #64748b;
}

.hero-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-tag-modern {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(236, 172, 50, 0.15);
    color: var(--gold-primary);
    border: 1px solid rgba(236, 172, 50, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-desc-modern {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cert-badges {
    display: flex;
    gap: 1.5rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 600;
}

.cert-badge i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--navy-dark);
}

.image-composition {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.comp-img {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

.comp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.comp-img:hover img {
    transform: scale(1.05);
}

.comp-main {
    top: 0;
    right: 0;
    width: 75%;
    height: 80%;
    z-index: 2;
    border: 4px solid var(--navy-dark);
}

.comp-secondary {
    bottom: 5%;
    left: 0;
    width: 55%;
    height: 50%;
    z-index: 3;
    border: 4px solid var(--navy-dark);
}

.stats-floating-section {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.stats-bar-wrapper {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid rgba(236, 172, 50, 0.1);
}

.stat-block {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.stat-block:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 0;
    width: 1px;
    background: #e2e8f0;
}

.highlight-stat {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #fff;
}

.highlight-stat .stat-label { color: rgba(255,255,255,0.9); }

.stat-count {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.highlight-stat .stat-count { color: #fff; }

.stat-count .plus, .stat-count .percent {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-right: 0.2rem;
}

.highlight-stat .stat-count .plus, .highlight-stat .stat-count .percent {
    color: #fff;
}

.stat-label {
    font-size: 1.05rem;
    color: var(--gray-text);
    font-weight: 500;
}

.core-values-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.section-subtitle-modern {
    font-size: 1.15rem;
    color: var(--gray-text);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.bento-box {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
}

.bento-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(236, 172, 50, 0.08);
}

.bento-icon {
    width: 60px;
    height: 60px;
    background: rgba(236, 172, 50, 0.1);
    color: var(--gold-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.bento-box:hover .bento-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gold-primary);
    color: #fff;
}

.bento-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.bento-content p {
    color: var(--gray-text);
    line-height: 1.7;
    margin: 0;
}

.box-large {
    grid-column: 1 / 3;
    background: var(--navy-dark);
    color: #fff;
}

.box-large .bento-content h3 { color: #fff; }
.box-large .bento-content p { color: #cbd5e1; }
.box-large .bento-icon { background: rgba(255,255,255,0.1); color: var(--gold-primary); }

.box-medium {
    grid-column: auto;
}

.box-large-reverse {
    grid-column: 2 / 4;
    background: var(--navy-dark);
    color: #fff;
}
.box-large-reverse .bento-content h3 { color: #fff; }
.box-large-reverse .bento-content p { color: #cbd5e1; }
.box-large-reverse .bento-icon { background: rgba(255,255,255,0.1); color: var(--gold-primary); }

.dynamic-cta-section {
    padding: 6rem 0;
    background: #fff;
    margin-bottom: 4rem;
}

.cta-banner {
    position: relative;
    background: linear-gradient(135deg, var(--navy-dark) 0%, #1e293b 100%);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

.cta-shapes-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.c-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(236, 172, 50, 0.2) 0%, transparent 80%);
    border-radius: 50%;
}

.c-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
}

.c-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
}

.cta-banner-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-banner-content h2 span {
    color: var(--gold-primary);
}

.cta-banner-content p {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-cta-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-cta-whatsapp:hover {
    background: #1faf53;
    transform: translateY(-3px);
    color: #fff;
}

.btn-cta-call {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-cta-call:hover {
    background: #fff;
    color: var(--navy-dark);
}

.pulse-effect {
    animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .box-large {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991px) {
    .hero-content-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-desc-modern {
        margin: 0 auto 2.5rem;
    }

    .hero-cert-badges {
        justify-content: center;
    }

    .image-composition {
        min-height: 400px;
        width: 80%;
        margin: 0 auto;
    }

    .stats-bar-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .stat-block:nth-child(2)::after {
        display: none;
    }
    .stat-block:nth-child(1)::after, .stat-block:nth-child(3)::after {
        left: unset;
        right: 0;
    }

    .stat-block {
        border-bottom: 1px solid #e2e8f0;
    }
    .stat-block:nth-child(3), .stat-block:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .box-large,
    .box-large-reverse {
        grid-column: 1 / -1;
    }
    
    .bento-layout-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .stats-bar-wrapper {
        grid-template-columns: 1fr;
    }
    
    .stat-block:not(:last-child)::after {
        width: 100%;
        height: 1px;
        top: auto;
        bottom: 0;
        left: 0;
    }
    
    .stat-block {
        border-bottom: auto;
    }
}