/* Silvenza Consulting Group - Estilos Completos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Nueva Paleta Profesional SILVENZA */
    --primary-navy: #1f2a3a;
    --primary-gold: #b78e48;
    --primary-white: #ffffff;
    --primary-gray: #a5a5a5;
    
    /* Variaciones para profundidad y elegancia */
    --navy-dark: #152030;
    --navy-light: #2a3b4d;
    --navy-lighter: rgba(31, 42, 58, 0.1);
    --gold-dark: #9d7139;
    --gold-light: #d4a85e;
    --gold-lighter: rgba(183, 142, 72, 0.1);
    --gray-dark: #8a8a8a;
    --gray-light: #e8e8e8;
    --gray-lighter: #f5f5f5;
    
    /* Compatibilidad con variables existentes */
    --navy: #1f2a3a;
    --gold: #b78e48;
    --white: #ffffff;
    --gray: #a5a5a5;
    
    /* Sombras profesionales */
    --shadow-light: rgba(31, 42, 58, 0.08);
    --shadow-medium: rgba(31, 42, 58, 0.15);
    --shadow-heavy: rgba(31, 42, 58, 0.25);
    --shadow-gold: rgba(183, 142, 72, 0.2);
    
    /* Efectos glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Tipografía premium global */
h1, h2, h3, h4, h5, h6 {
    font-feature-settings: "kern" 1, "liga" 1;
}

p, li, span {
    font-feature-settings: "kern" 1;
}

/* Mejorar legibilidad en todos los textos */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--primary-navy);
    background-color: var(--primary-white);
    overflow-x: hidden;
    font-weight: 450;
    font-size: 16px;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Header limpio y profesional */
.header,
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--primary-navy);
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow-medium);
    border-bottom: 1px solid var(--gold-lighter);
    transition: all 0.3s ease;
}

.main-nav {
    width: 100%;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem 0 1rem;
    position: relative;
}

/* Responsive nav-container padding */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem 0 0.5rem;
    }
}

@media (max-width: 360px) {
    .nav-container {
        padding: 0 0.5rem 0 0.25rem;
    }
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-menu a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    position: relative;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Hero Section reorganizado */
/* ======= ENHANCED HERO SECTION ======= */
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    color: var(--primary-white);
    padding: 110px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(183, 142, 72, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(183, 142, 72, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(183, 142, 72, 0.05) 50%,
        transparent 70%
    );
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(183, 142, 72, 0.2), rgba(183, 142, 72, 0.1));
    border: 1px solid rgba(183, 142, 72, 0.3);
    color: var(--primary-gold);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-badge i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f4e06d 50%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 90%;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-description strong {
    color: var(--primary-gold);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    gap: 5rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #d4af37 100%);
    color: var(--primary-white);
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(183, 142, 72, 0.3);
    text-transform: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(183, 142, 72, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-white);
    padding: 1.25rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.cta-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.hero-trust-indicators {
    display: flex;
    gap: 2rem;
    opacity: 0.9;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out 0.3s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.hero-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    min-width: 100%;
    position: relative;
    opacity: 0.7;
    transition: opacity 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mining-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
}

.construction-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
}

.corporate-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 42, 58, 0.8) 0%, rgba(183, 142, 72, 0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: white;
    text-align: center;
    padding: 2rem;
}

.sector-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 1rem;
}

.sector-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.result-showcase {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 300px;
}

.result-value {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.result-description {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
}

.result-timeframe {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.carousel-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.carousel-btn:hover {
    background: rgba(183, 142, 72, 0.8);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-gold);
    transform: scale(1.3);
}

/* Responsive Design for Enhanced Hero */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-trust-indicators {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* KPIs organizados */
.kpis {
    max-width: 1200px;
    margin: -40px auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 3;
}

.kpi-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-gold);
}

.kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-heavy);
}

.kpi-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(183, 142, 72, 0.3);
}

.kpi-label {
    color: var(--primary-gray);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Secciones organizadas con espaciado premium */
.section {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--primary-navy);
    font-weight: 800;
    letter-spacing: -0.04em;
    position: relative;
    background: linear-gradient(135deg, var(--primary-navy), var(--navy-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

/* White titles for dark sections */
.value-prop .section-title,
.contact .section-title,
.case-studies .section-title {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: #FFFFFF;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    font-size: 3.8rem;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    color: var(--primary-gray);
    margin-bottom: 3rem;
    margin-top: -1rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* White subtitles for dark sections */
.value-prop .section-subtitle,
.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

/* Dark subtitles for light sections */
.about .section-subtitle,
.services .section-subtitle,
.portfolio .section-subtitle,
.blog .section-subtitle,
.team .section-subtitle,
.awards .section-subtitle,
.differentiators .section-subtitle,
.testimonials .section-subtitle,
.faq .section-subtitle,
.trust-security .section-subtitle {
    color: var(--primary-gray);
}

/* Quiénes Somos limpio */
.about {
    background: var(--gray-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(10, 22, 40, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid var(--gold);
    color: var(--primary-navy);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 22, 40, 0.12);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
}

.about-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.about-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-navy);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.about-card p {
    font-family: 'Inter', sans-serif;
    color: var(--primary-gray);
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.005em;
}

/* Servicios organizados */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: var(--primary-navy);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--gold);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    margin-bottom: 1.2rem;
    color: var(--primary-navy);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-benefits {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-benefits {
    opacity: 1;
    transform: translateY(0);
}

.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.8rem;
    color: var(--primary-gray);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.5;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 900;
    font-size: 1rem;
}

/* Propuesta de Valor */
.value-prop {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    color: var(--primary-white);
}

.value-prop .section-title {
    color: var(--primary-white) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--primary-white) !important;
    background-clip: unset !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.value-prop .section-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pillar-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.pillar-icon {
    width: 65px;
    height: 65px;
    background: rgba(183, 142, 72, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-gold);
    border: 2px solid rgba(183, 142, 72, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pillar-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.pillar-card h3 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-white) !important;
    letter-spacing: -0.01em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.pillar-card p {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.005em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Portfolio con imágenes profesionales */
.portfolio {
    background: var(--gray-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.1);
    transition: all 0.3s ease;
    color: var(--primary-navy);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.15);
}

.portfolio-image {
    height: 180px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    background-size: cover;
    background-position: center;
    position: relative;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(212, 175, 55, 0.7) 100%);
    z-index: 1;
}

.portfolio-image > div {
    position: relative;
    z-index: 2;
}

.mining-bg {
    background-image: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
}

.construction-bg {
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
}

.corporate-bg {
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.portfolio-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.portfolio-result {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Testimonios */
.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Diferenciadores */
.differentiators {
    background: var(--white);
    color: var(--primary-navy);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: var(--primary-navy);
}

.diff-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.diff-check {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.diff-item h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.diff-item p {
    color: var(--gray);
    line-height: 1.5;
}

/* Contacto organizado */
.contact {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(183, 142, 72, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(183, 142, 72, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    resize: vertical;
}

.form-group textarea {
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-guarantee {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--gold);
}

.guarantee-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guarantee-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Footer limpio */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

/* Responsive Design */
/* Ultra-wide monitors 2560px+ */
@media (min-width: 2560px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .contact-grid {
        gap: 5rem;
    }
}

/* Large monitors 1920px+ */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
    }
    
    .contact-grid {
        gap: 4.5rem;
    }
}

/* Extra large screens (Large desktops) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .contact-grid {
        gap: 4rem;
    }
}

/* Navigation overflow fix */
@media (max-width: 1400px) {
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
}

/* Standard desktop 1366px */
@media (max-width: 1366px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .contact-grid {
        gap: 3.5rem;
    }
    
    .nav-container {
        padding: 0 1.5rem 0 0.8rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.5rem 0.7rem;
    }
    
    .logo-image {
        height: 75px;
        max-width: 300px;
    }
}

/* Large screens (Laptops 15"+) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .services-grid,
    .about-grid,
    .pillars-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        gap: 3rem;
    }
}

/* Navigation breakpoint - switch to mobile menu */
@media (max-width: 1150px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
}

/* MacBook Air/Pro 13" and similar laptops */
@media (max-width: 1024px) {
    .container {
        max-width: 800px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .contact-grid {
        gap: 2.5rem;
    }
    
    .contact-form {
        padding: 1.8rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-image {
        height: 65px;
        max-width: 250px;
    }
}

/* Medium screens (tablets landscape) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .kpis {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .services-grid,
    .pillars-grid,
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* iPad Air/Pro (820px) and similar tablets */
@media (max-width: 820px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info {
        text-align: center;
        order: 1;
    }
    
    .contact-form {
        order: 2;
        padding: 2rem;
    }
}

/* Small screens (tablets portrait) */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .kpis {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .kpi-card {
        min-height: auto;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .contact {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        order: 2;
    }

    .contact-info {
        order: 1;
        text-align: center;
    }

    .services-grid,
    .about-grid,
    .pillars-grid,
    .portfolio-grid,
    .diff-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Extra small screens */
@media (max-width: 576px) {
    .container,
    .nav-container {
        padding: 0 1.2rem 0 0.5rem;
        max-width: 100%;
    }
    
    .kpis {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pillars-grid {
        gap: 1.5rem;
    }
}

/* iPhone 12 Pro Max, Pixel 7 Pro (428px) */
@media (max-width: 428px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        gap: 1.8rem;
    }
    
    .contact-form {
        padding: 1.6rem;
    }
}

/* iPhone 14 Pro, Samsung Galaxy S23 (393px) */
@media (max-width: 393px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }
    
    .contact-icon {
        width: 42px;
        height: 42px;
    }
}

/* iPhone 13/14, Most Android phones (390px) */
@media (max-width: 390px) {
    .hero-content h1 {
        font-size: 1.85rem;
    }
}

/* Standard mobile breakpoint */
@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .contact {
        padding: 90px 0 50px;
    }

    .contact-grid {
        gap: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-item {
        margin-bottom: 1rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .kpi-card,
    .about-card,
    .service-card,
    .pillar-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Animaciones suaves */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Alert styles for notifications */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.alert-success {
    background-color: rgba(0, 200, 81, 0.1);
    border: 1px solid rgba(0, 200, 81, 0.3);
    color: var(--success);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

/* Form validation styles */
.text-danger {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ======= NAVIGATION STYLES ======= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--gold-lighter);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px var(--shadow-light);
}

.main-header.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(10, 22, 40, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 1rem;
    margin-left: -0.5rem;
}

/* Logo Image Styles */
.logo-image {
    height: 70px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Responsive logo sizes */
@media (max-width: 768px) {
    .logo-image {
        height: 60px;
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 60px;
        max-width: 200px;
    }
}

@media (max-width: 360px) {
    .logo-image {
        height: 50px;
        max-width: 180px;
    }
}

.logo-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Error handling for logo */
.logo-image:not([src]),
.logo-image[src=""],
.logo-image:not([src*="."]){
    display: none;
}

/* Show fallback when image fails */
.logo-image + .logo-text-fallback {
    display: none;
}

.logo-image:not([src]) + .logo-text-fallback,
.logo-image[src=""] + .logo-text-fallback {
    display: flex;
    flex-direction: column;
}

/* Fallback text styles */
.logo-text-fallback .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 0.5px;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-text-fallback .logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -2px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 0.5px;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-navy);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--primary-navy);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.2rem;
    border-radius: 10px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: var(--primary-gold);
    background: var(--gold-lighter);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-gold);
    background: var(--gold-lighter);
    box-shadow: 0 2px 8px var(--shadow-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-toggle.nav-toggle-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--gold);
}

.nav-toggle.nav-toggle-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.nav-toggle-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--gold);
}

/* Scroll offset for sections */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

/* Adjust hero section for fixed header */
.hero {
    padding-top: 0;
    min-height: 100vh;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem 0 0.3rem;
        height: 70px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transition: all 0.4s ease;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: -10px 0 30px rgba(10, 22, 40, 0.1);
    }
    
    .nav-menu.nav-menu-open {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        font-size: 1rem;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(212, 175, 55, 0.1);
        border-left: 4px solid var(--gold);
        padding-left: calc(2rem - 4px);
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    html {
        scroll-padding-top: 70px;
    }
}

/* Ultra small screens (Galaxy S8+, Galaxy Fold, iPhone SE) */
@media (max-width: 360px) {
    .nav-container {
        padding: 0 0.5rem 0 0.2rem;
        height: 70px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .logo-image {
        height: 60px;
        max-width: 220px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .kpi-card {
        padding: 0.8rem;
        min-height: auto;
    }
    
    .kpi-number {
        font-size: 1.8rem;
    }
    
    .kpi-label {
        font-size: 0.8rem;
    }
    
    .contact {
        padding: 80px 0 40px;
    }
    
    .contact-grid {
        gap: 1.2rem;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    .contact-info h2 {
        font-size: 1.3rem;
    }
    
    .contact-item {
        margin-bottom: 0.8rem;
        gap: 0.8rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .kpi-card,
    .service-card,
    .pillar-card {
        padding: 1rem;
    }
}

/* Ultra narrow devices (Galaxy Fold closed) */
@media (max-width: 280px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
        line-height: 1.1;
    }
    
    .contact {
        padding: 70px 0 30px;
    }
    
    .contact-grid {
        gap: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .contact-info h2 {
        font-size: 1.2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
        margin: 0 auto;
    }
    
    .contact-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
}

/* Landscape mobile orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 50px;
        min-height: 80vh;
    }
    
    .contact {
        padding: 90px 0 40px;
        min-height: auto;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .nav-container {
        height: 60px;
    }
}

/* High DPI displays (Retina, etc.) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .contact-icon svg,
    .hero-content,
    .section-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* ===== MICROINTERACCIONES Y ANIMACIONES AVANZADAS ===== */

/* Scroll-triggered animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll reveal classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced hover effects */
.service-card,
.pillar-card,
.about-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-card::before,
.pillar-card::before,
.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before,
.pillar-card:hover::before,
.about-card:hover::before {
    left: 100%;
}

.service-card:hover,
.pillar-card:hover,
.about-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(31, 42, 58, 0.15);
}

/* Enhanced button interactions */
.btn,
.button,
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn::before,
.button::before,
.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn:hover::before,
.button:hover::before,
.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active,
.button:active,
.cta-button:active {
    transform: scale(0.95);
}

/* Smooth loading states */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Parallax container */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-element {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Enhanced focus states for accessibility */
*:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .nav-menu.nav-menu-open {
        right: 0;
    }
}

/* Smooth scroll enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Ensure sections have proper visibility */
.section {
    min-height: 400px;
    position: relative;
}

.about {
    background: var(--gray-lighter);
    color: var(--primary-navy);
}

.services {
    background: var(--primary-white);
    color: var(--primary-navy);
}

.value-prop {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    color: var(--primary-white);
}

.portfolio {
    background: var(--primary-white);
    color: var(--primary-navy);
}

.differentiators {
    background: var(--gray-light);
    color: var(--primary-navy);
}

/* Navigation hover effects */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    opacity: 0;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link.active::before {
    opacity: 0.7;
}

/* ======= TESTIMONIALS STYLES ======= */
.testimonials {
    background: linear-gradient(135deg, var(--gray-lighter) 0%, var(--primary-white) 100%);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(31, 42, 58, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(31, 42, 58, 0.15);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--gold-light));
}

.quote-icon {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    font-style: italic;
    quotes: none;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--primary-gray);
    font-size: 0.9rem;
    display: block;
}

.company-name {
    background: var(--primary-gold);
    color: var(--primary-white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.testimonial-metrics {
    display: flex;
    justify-content: space-around;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--primary-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-indicators {
    background: var(--primary-navy);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    margin-top: 3rem;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.trust-stat {
    text-align: center;
    color: var(--primary-white);
}

.trust-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ======= TEAM STYLES ======= */
.team {
    background: var(--primary-white);
    padding: 80px 0;
    color: var(--primary-navy);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-member {
    background: var(--primary-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.1);
    transition: all 0.3s ease;
    color: var(--primary-navy);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(31, 42, 58, 0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-image:hover img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 42, 58, 0.8), rgba(183, 142, 72, 0.8));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary-white);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--primary-white);
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
}

.member-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.credential {
    background: var(--gray-lighter);
    color: var(--primary-navy);
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
}

.member-description {
    color: var(--primary-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-achievements {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.certifications-section {
    background: var(--gray-lighter);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
}

.certifications-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    color: var(--primary-navy);
}

.certification-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 42, 58, 0.1);
}

.cert-icon {
    color: var(--primary-gold);
    font-size: 2rem;
}

.cert-info h4 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cert-info p {
    color: var(--primary-gray);
    font-size: 0.9rem;
}

/* ======= CASE STUDIES STYLES ======= */
.case-studies {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    color: var(--primary-white);
    padding: 100px 0 120px 0;
}

.case-studies .section-header {
    margin-bottom: 3rem;
}

.case-studies .section-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: -0.5rem;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1.8rem;
    border: 1px solid rgba(183, 142, 72, 0.3);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-gold);
}

.case-header {
    margin-bottom: 1.5rem;
}

.case-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.case-company {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.case-challenge,
.case-solution,
.case-results {
    margin-bottom: 1.3rem;
}

.case-challenge h4,
.case-solution h4,
.case-results h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.case-solution ul {
    list-style: none;
    padding: 0;
}

.case-solution li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.case-solution li::before {
    content: '✓';
    color: var(--primary-gold);
    font-weight: bold;
    flex-shrink: 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.result-item {
    text-align: center;
    background: rgba(183, 142, 72, 0.2);
    padding: 0.8rem;
    border-radius: 8px;
}

.result-value {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.case-timeline {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    border-top: 1px solid rgba(183, 142, 72, 0.3);
    padding-top: 1rem;
}

.roi-calculator-cta {
    background: var(--primary-gold);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: var(--primary-navy);
}

.roi-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.roi-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--primary-white);
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-navy), var(--navy-light));
    color: var(--primary-white);
    padding: 2rem;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: var(--primary-white);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.roi-results {
    background: var(--gray-lighter);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    color: var(--primary-navy);
}

.roi-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.roi-metric {
    text-align: center;
    background: var(--primary-white);
    padding: 1rem;
    border-radius: 8px;
    color: var(--primary-navy);
}

.roi-value {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
}

.roi-disclaimer {
    font-size: 0.8rem;
    color: var(--primary-gray);
    font-style: italic;
    margin-bottom: 1rem;
}

/* ======= TRUST & SECURITY STYLES ======= */
.trust-security {
    background: var(--gray-lighter);
    padding: 80px 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.security-item {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(31, 42, 58, 0.1);
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(31, 42, 58, 0.15);
}

.security-icon {
    color: var(--primary-gold);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.security-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-gold);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}

.company-info {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 3rem;
    margin: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-section h3 {
    color: var(--primary-navy);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-section h3 i {
    color: var(--primary-gold);
}

.info-details p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.policy-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.policy-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-lighter);
    border-radius: 8px;
    color: var(--primary-navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-link:hover {
    background: var(--primary-gold);
    color: var(--primary-white);
    transform: translateX(5px);
}

.social-proof {
    text-align: center;
    margin: 4rem 0;
}

.social-proof h3 {
    color: var(--primary-navy);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--primary-white);
    border-radius: 16px;
    color: var(--primary-navy);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(31, 42, 58, 0.1);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(31, 42, 58, 0.15);
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}

.social-link i {
    font-size: 2rem;
}

.social-link span {
    font-weight: 600;
}

.social-link small {
    opacity: 0.7;
    font-size: 0.8rem;
}

.live-support {
    background: var(--primary-navy);
    border-radius: 16px;
    padding: 3rem;
    color: var(--primary-white);
}

.support-card {
    text-align: center;
}

.support-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.support-header i {
    color: var(--primary-gold);
    font-size: 2rem;
}

.support-header h3 {
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.support-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.support-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(183, 142, 72, 0.3);
    border-radius: 12px;
    color: var(--primary-white);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.support-btn:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.support-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: white;
}

.support-btn i {
    font-size: 1.5rem;
}

.support-btn small {
    opacity: 0.8;
    font-size: 0.8rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 99999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-navy);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 99998;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .testimonials-grid,
    .team-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-stats,
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links,
    .support-options {
        flex-direction: column;
        align-items: center;
    }
    
    .case-timeline {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonial-card,
    .team-member,
    .case-study-card,
    .security-item {
        padding: 1.5rem;
    }
    
    .trust-stats,
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .member-credentials {
        flex-direction: column;
    }
    
    .credential {
        margin-right: 0;
    }
}

/* ======= FAQ STYLES ======= */
.faq {
    background: var(--primary-white);
    padding: 80px 0;
    color: var(--primary-navy);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--primary-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(31, 42, 58, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(31, 42, 58, 0.12);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-lighter);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-gold);
    color: var(--primary-white);
}

.faq-question h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--primary-white);
}

.faq-question i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-question:hover i {
    color: var(--primary-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--primary-gray);
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--primary-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.faq-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-lighter);
    border-radius: 12px;
}

.faq-point i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.faq-point strong {
    display: block;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.package-details {
    margin: 1.5rem 0;
}

.package-phase {
    background: var(--gray-lighter);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-gold);
}

.package-phase h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-phase i {
    color: var(--primary-gold);
}

.roi-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.roi-phase {
    text-align: center;
    background: var(--gray-lighter);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}

.roi-time {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.roi-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.roi-desc {
    color: var(--primary-gray);
    font-size: 0.9rem;
}

.company-sizes {
    margin: 1.5rem 0;
}

.size-category {
    background: var(--gray-lighter);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-gold);
    color: var(--primary-navy);
}

.size-category h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.size-category i {
    color: var(--primary-gold);
}

.service-modalities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.modality {
    text-align: center;
    background: var(--gray-lighter);
    border-radius: 12px;
    padding: 1.5rem;
}

.modality i {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modality h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.faq-cta {
    text-align: center;
    background: var(--primary-navy);
    border-radius: 16px;
    padding: 3rem;
    color: var(--primary-white);
    margin-top: 4rem;
}

.faq-cta h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.faq-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ======= BLOG STYLES ======= */
/* ======= BLOG / RECURSOS STYLES ======= */
.blog {
    background: linear-gradient(135deg, var(--gray-lighter) 0%, var(--primary-white) 100%);
    padding: 100px 0;
    position: relative;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-header-content {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--primary-white);
    color: var(--primary-navy);
    border: 2px solid var(--gray-light);
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(183, 142, 72, 0.2);
}

.filter-btn.active {
    background: var(--primary-navy);
    color: var(--primary-white);
    border-color: var(--primary-navy);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-post {
    background: var(--primary-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(31, 42, 58, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(31, 42, 58, 0.05);
}

.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(31, 42, 58, 0.15);
    border-color: var(--primary-gold);
}

.blog-post.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.post-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.blog-post.featured .post-image {
    height: auto;
    min-height: 450px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-image:hover img {
    transform: scale(1.1);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.5) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
}

.post-category {
    background: var(--primary-gold);
    color: var(--primary-white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(183, 142, 72, 0.4);
}

.read-time {
    background: rgba(31, 42, 58, 0.85);
    backdrop-filter: blur(10px);
    color: var(--primary-white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 700;
}

.blog-post.featured .post-header h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.post-excerpt {
    color: var(--primary-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
    flex-wrap: wrap;
}

.meta-item {
    color: var(--primary-gray);
    font-size: 0.85rem;
}

.meta-item::before {
    content: '•';
    color: var(--primary-gold);
    margin-right: 0.5rem;
    font-weight: bold;
}

.meta-item:first-child::before {
    content: '';
    margin-right: 0;
}

.post-highlights {
    background: var(--gray-lighter);
    border-left: 3px solid var(--primary-gold);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.post-highlights h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
}

.post-highlights ul {
    list-style: none;
    padding: 0;
}

.post-highlights li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--primary-navy);
}

.post-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.post-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    background: linear-gradient(135deg, var(--gray-lighter), var(--primary-white));
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--primary-gray);
    line-height: 1.4;
}

.post-tools {
    margin-bottom: 2rem;
}

.post-tools h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
}

.tools-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tool {
    background: var(--gray-lighter);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--primary-navy);
    font-weight: 600;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.tool:hover {
    border-color: var(--primary-gold);
    transform: translateX(5px);
    background: var(--primary-white);
}

.post-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.preview-point {
    padding: 0.75rem 1rem;
    background: var(--gray-lighter);
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.preview-point:hover {
    background: var(--gold-lighter);
    transform: translateX(5px);
}

.preview-point span {
    color: var(--primary-navy);
    font-weight: 600;
}

.read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gold);
    color: var(--primary-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(183, 142, 72, 0.3);
    margin-top: auto;
}

.read-more:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(183, 142, 72, 0.4);
    color: var(--primary-white);
}

/* Post Actions Container */
.post-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    flex-wrap: wrap;
}

/* Download Template Button */
.download-template {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-gold);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
}

.download-template:hover {
    background: var(--primary-gold);
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(183, 142, 72, 0.3);
}

.download-template i {
    font-size: 1rem;
}

/* Blog Subscription Section */
.blog-subscription {
    margin-top: 5rem;
}

.subscription-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(31, 42, 58, 0.25);
    position: relative;
}

.subscription-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.subscription-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary-gold);
    color: var(--primary-white);
    font-size: 2.5rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(183, 142, 72, 0.4);
}

.subscription-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-white);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.subscription-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.subscription-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-content strong {
    color: var(--primary-white);
    font-size: 1.05rem;
    font-weight: 700;
}

.benefit-content span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.5;
}

.subscription-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-navy);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--primary-white);
    box-shadow: 0 0 0 4px rgba(183, 142, 72, 0.2);
}

.newsletter-input::placeholder {
    color: var(--primary-gray);
}

.subscribe-btn {
    background: var(--primary-gold);
    color: var(--primary-white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(183, 142, 72, 0.4);
}

.subscribe-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(183, 142, 72, 0.5);
}

.subscription-footer {
    text-align: center;
}

.subscription-note,
.subscription-stats {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.subscription-stats strong {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-post.featured {
        grid-template-columns: 1fr;
    }
    
    .blog-post.featured .post-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .blog {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-header-content {
        padding: 0 1rem;
    }
    
    .blog-filters {
        padding: 0 1rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .post-header h3 {
        font-size: 1.3rem;
    }
    
    .blog-post.featured .post-header h3 {
        font-size: 1.6rem;
    }
    
    .subscription-card {
        padding: 2.5rem 1.5rem;
    }
    
    .subscription-header h3 {
        font-size: 1.5rem;
    }
    
    .subscription-form {
        flex-direction: column;
    }
    
    .subscribe-btn {
        width: 100%;
        justify-content: center;
    }
    
    .subscription-benefits {
        grid-template-columns: 1fr;
    }
}



/* ======= AWARDS STYLES ======= */
.awards {
    background: var(--primary-white);
    padding: 80px 0;
}

.awards-grid {
    margin-bottom: 4rem;
}

.certification-category,
.awards-category,
.client-awards,
.partnerships {
    background: var(--gray-lighter);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.certification-category h3,
.awards-category h3,
.client-awards h3,
.partnerships h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.certification-category h3 i,
.awards-category h3 i,
.client-awards h3 i,
.partnerships h3 i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.certs-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.cert-item {
    background: var(--primary-white);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(31, 42, 58, 0.08);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 42, 58, 0.12);
}

.cert-logo {
    color: var(--primary-gold);
    font-size: 2rem;
    flex-shrink: 0;
}

.cert-info h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cert-info p {
    color: var(--primary-gray);
    margin-bottom: 0.5rem;
}

.cert-year {
    background: var(--primary-gold);
    color: var(--primary-white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cert-badge {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-left: auto;
}

.awards-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.award-item {
    background: var(--primary-white);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(31, 42, 58, 0.08);
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 42, 58, 0.12);
}

.award-item.featured {
    border: 2px solid var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-white) 0%, rgba(183, 142, 72, 0.05) 100%);
}

.award-icon {
    color: var(--primary-gold);
    font-size: 2.5rem;
    flex-shrink: 0;
}

.award-content h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.award-content p {
    color: var(--primary-gray);
    margin-bottom: 1rem;
}

.award-details {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--primary-gray);
}

.award-badge {
    margin-left: auto;
    text-align: center;
    padding: 0.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 80px;
}

.award-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--primary-white);
}

.award-badge.silver {
    background: linear-gradient(135deg, #C0C0C0, #808080);
    color: var(--primary-white);
}

.award-badge.bronze {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    color: var(--primary-white);
}

.client-ratings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.rating-item {
    background: var(--primary-white);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(31, 42, 58, 0.08);
}

.rating-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
    font-weight: 600;
}

.rating-platform i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.stars i {
    color: #FFD700;
}

.score {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-left: 0.5rem;
}

.rating-count {
    color: var(--primary-gray);
    font-size: 0.9rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.partner-item {
    background: var(--primary-white);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(31, 42, 58, 0.08);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 42, 58, 0.12);
}

.partner-logo {
    color: var(--primary-gold);
    font-size: 2rem;
    flex-shrink: 0;
}

.partner-info h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.partner-info p {
    color: var(--primary-gray);
    margin-bottom: 0.5rem;
}

.partner-level {
    background: var(--primary-gold);
    color: var(--primary-white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.awards-stats {
    background: var(--primary-navy);
    border-radius: 16px;
    padding: 3rem;
    margin: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--primary-white);
}

.stat-icon {
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.verification-section {
    margin-top: 4rem;
}

.verification-card {
    background: var(--gray-lighter);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(31, 42, 58, 0.1);
}

.verification-icon {
    color: var(--primary-gold);
    font-size: 4rem;
    flex-shrink: 0;
}

.verification-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.verification-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.verify-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-white);
    color: var(--primary-navy);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(31, 42, 58, 0.1);
}

.verify-link:hover {
    background: var(--primary-gold);
    color: var(--primary-white);
    transform: translateY(-2px);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .blog-post.featured {
        grid-column: 1;
        grid-template-columns: 1fr;
    }
    
    .faq-grid,
    .service-modalities,
    .roi-timeline {
        grid-template-columns: 1fr;
    }
    
    .subscription-form {
        flex-direction: column;
    }
    
    .verification-card {
        flex-direction: column;
        text-align: center;
    }
    
    .certs-row,
    .partners-grid,
    .client-ratings {
        grid-template-columns: 1fr;
    }
    
    .award-item {
        flex-direction: column;
        text-align: center;
    }
    
    .award-badge {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-question,
    .faq-answer {
        padding: 1.5rem;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .subscription-card,
    .verification-card {
        padding: 2rem;
    }
    
    .cert-item,
    .partner-item,
    .rating-item {
        padding: 1rem;
    }
}

/* Estilos Limpios para Redes Sociales */
.social-card-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.social-card-link:hover > div:first-child {
    transform: scale(1.1);
}

/* Responsive para Redes Sociales */
@media (max-width: 1200px) {
    .social-card-link:parent {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .social-card-link:parent {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
    
    .social-card-link {
        padding: 2rem 1.2rem !important;
    }
    
    .social-card-link > div:first-child {
        width: 60px !important;
        height: 60px !important;
    }
    
    .social-card-link i {
        font-size: 28px !important;
    }
}

@media (max-width: 480px) {
    .social-card-link:parent {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   PROFESSIONAL SOCIAL CARDS - 2025 DESIGN
   ======================================== */

.social-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative !important;
}

.social-card:hover {
    transform: translateY(-12px) scale(1.03) !important;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25), 
                0 15px 35px rgba(0, 0, 0, 0.15),
                inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

.social-card:active {
    transform: translateY(-8px) scale(0.98) !important;
    transition: all 0.15s ease !important;
}

/* Responsive adjustments for professional cards */
@media (max-width: 768px) {
    .social-card {
        min-height: 240px !important;
        padding: 2rem 1.5rem !important;
    }
}

/* ========================================
   MEJORAS ADICIONALES DE RESPONSIVIDAD
   ======================================== */

/* Asegurar que todos los contenedores respeten el ancho de pantalla */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.container, .nav-container, .hero-container {
    max-width: 100%;
    padding-left: clamp(0.5rem, 3vw, 2rem);
    padding-right: clamp(0.5rem, 3vw, 2rem);
}

/* Mejorar grids en móviles */
@media (max-width: 576px) {
    .kpis,
    .about-grid,
    .services-grid,
    .pillars-grid,
    .portfolio-grid,
    .diff-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Asegurar imágenes responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Prevenir overflow horizontal */
* {
    max-width: 100%;
}

/* Ajustes para pantallas extra pequeñas */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ========================================
   ESTILOS PÁGINA NOSOTROS - ELEGANTE Y PROFESIONAL
   ======================================== */

/* Hero Nosotros */
.nosotros-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.nosotros-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b78e48' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.nosotros-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.nosotros-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.nosotros-main-subtitle {
    font-size: 1.25rem;
    color: var(--gold-light);
    font-weight: 300;
    margin-bottom: 2rem;
}

.nosotros-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--gold-light));
    margin: 0 auto;
    border-radius: 2px;
}

/* Sección Historia */
.nosotros-historia {
    padding: 100px 0;
    background: var(--primary-white);
}

.nosotros-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.nosotros-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
}

.nosotros-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--navy-light);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.nosotros-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.nosotros-stat-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.nosotros-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--primary-white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sección Misión, Visión y Valores */
.nosotros-mvv {
    padding: 100px 0;
    background: var(--gray-lighter);
}

.nosotros-section-title-center {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    text-align: center;
}

/* Tarjetas horizontales Misión y Visión */
.mvv-card-horizontal {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.mvv-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--gold-lighter) 0%, transparent 70%);
    opacity: 0.3;
    transition: all 0.4s ease;
}

.mvv-card-horizontal:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 35px var(--shadow-medium);
    border-left-width: 6px;
}

.mvv-card-horizontal:hover::before {
    transform: scale(1.2);
    opacity: 0.5;
}

.mvv-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    opacity: 0.15;
    flex-shrink: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}

.mvv-card-horizontal:hover .mvv-number {
    opacity: 0.3;
    transform: scale(1.1);
}

.mvv-content {
    flex: 1;
}

.mvv-title-horizontal {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.mvv-text-horizontal {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--navy-light);
    text-align: justify;
}

/* Tarjeta de Valores */
.valores-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.valores-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
    opacity: 0.1;
}

.valores-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.valores-header .mvv-number {
    color: var(--primary-gold);
    opacity: 0.3;
    font-size: 4rem;
}

.valores-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-white);
    margin: 0;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.valor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.valor-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.valor-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gold);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.valor-item:hover .valor-icon {
    transform: rotate(360deg) scale(1.1);
    background: var(--gold-light);
}

.valor-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-white);
}

.valor-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-white);
    text-align: center;
}

/* Estilos antiguos que ya no se usan - mantener para compatibilidad */
.mvv-card {
    background: var(--primary-white);
    padding: 3rem 2rem;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px var(--shadow-medium);
    border-color: var(--gold-lighter);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mvv-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary-white);
}

.mvv-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.mvv-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--navy-light);
    text-align: center;
}

.mvv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mvv-list li {
    font-size: 1.05rem;
    color: var(--navy-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.mvv-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Sección Equipo */
.nosotros-equipo {
    padding: 100px 0;
    background: var(--primary-white);
}

.nosotros-section-subtitle {
    font-size: 1.15rem;
    color: var(--primary-gray);
    font-weight: 300;
    margin-bottom: 1rem;
}

.team-card-modern {
    background: var(--primary-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-light);
}

.team-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px var(--shadow-medium);
    border-color: var(--primary-gold);
}

.team-card-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--gray-lighter) 0%, var(--primary-white) 100%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 4px 15px var(--shadow-gold);
    flex-shrink: 0;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-header-info {
    flex: 1;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 1rem;
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-social {
    display: flex;
    gap: 0.75rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
}

.team-social a:hover {
    background: var(--primary-gold);
    color: var(--primary-white);
    border-color: var(--primary-gold);
    transform: scale(1.1);
}

.team-card-body {
    padding: 2rem;
}

.team-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.credential-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: var(--gold-lighter);
    color: var(--gold-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--gold-light);
}

.team-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--navy-light);
}

/* Responsive Nosotros */
@media (max-width: 992px) {
    .nosotros-main-title {
        font-size: 2.5rem;
    }
    
    .nosotros-section-title {
        font-size: 2rem;
    }
    
    .nosotros-historia {
        padding: 60px 0;
    }
    
    .nosotros-mvv {
        padding: 60px 0;
    }
    
    .nosotros-equipo {
        padding: 60px 0;
    }
    
    .mvv-card-horizontal {
        flex-direction: column;
        text-align: center;
    }
    
    .mvv-number {
        font-size: 2.5rem;
    }
    
    .mvv-text-horizontal {
        text-align: center;
    }
    
    .valores-header {
        flex-direction: column;
        text-align: center;
    }
    
    .valores-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .team-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .team-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nosotros-hero {
        padding: 80px 0 50px;
    }
    
    .nosotros-main-title {
        font-size: 2rem;
    }
    
    .nosotros-main-subtitle {
        font-size: 1.1rem;
    }
    
    .nosotros-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .mvv-card-horizontal {
        padding: 2rem;
        gap: 1rem;
    }
    
    .mvv-card-horizontal:hover {
        transform: translateY(-5px);
    }
    
    .mvv-title-horizontal {
        font-size: 1.5rem;
    }
    
    .valores-card {
        padding: 2rem;
    }
    
    .valores-title {
        font-size: 1.5rem;
    }
    
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .valor-item {
        padding: 1rem;
    }
    
    .mvv-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .team-avatar {
        width: 80px;
        height: 80px;
    }
    
    .team-name {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .nosotros-main-title {
        font-size: 1.75rem;
    }
    
    .nosotros-section-title {
        font-size: 1.6rem;
    }
    
    .nosotros-section-title-center {
        font-size: 1.8rem;
    }
    
    .nosotros-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .mvv-card-horizontal {
        padding: 1.5rem;
        border-left-width: 3px;
    }
    
    .mvv-number {
        font-size: 2rem;
    }
    
    .mvv-title-horizontal {
        font-size: 1.3rem;
    }
    
    .mvv-text-horizontal {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .valores-header .mvv-number {
        font-size: 2.5rem;
    }
    
    .valores-title {
        font-size: 1.3rem;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
    }
    
    .valor-icon {
        width: 45px;
        height: 45px;
    }
    
    .valor-item span {
        font-size: 1rem;
    }
    
    .credential-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }
}

/* ============================================
   MODERN UI ENHANCEMENTS - 2024
   Advanced interactions and premium effects
   ============================================ */

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212, 162, 89, 0.4);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(212, 162, 89, 0.5);
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-notification i {
    font-size: 1.5rem;
}

.toast-success {
    border-left: 4px solid #10b981;
}

.toast-success i {
    color: #10b981;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-error i {
    color: #ef4444;
}

.toast-info {
    border-left: 4px solid #3b82f6;
}

.toast-info i {
    color: #3b82f6;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(212, 162, 89, 0.2);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Form Progress Bar */
.form-progress {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.form-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    border-radius: 4px;
}

/* Enhanced Form States */
.form-floating.focused label {
    color: var(--primary-gold);
}

.form-floating.valid input,
.form-floating.valid textarea {
    border-color: #10b981;
}

.form-floating.invalid input,
.form-floating.invalid textarea {
    border-color: #ef4444;
}

.form-floating.valid::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
}

.form-floating.invalid::after {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ef4444;
}

/* Custom Cursor (Desktop only) */
.custom-cursor,
.custom-cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
}

.custom-cursor {
    width: 10px;
    height: 10px;
    background: var(--primary-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.custom-cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.custom-cursor.active,
.custom-cursor-follower.active {
    width: 50px;
    height: 50px;
}

/* Tooltips */
.custom-tooltip {
    position: fixed;
    background: var(--primary-navy);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    transform: translate(-50%, -100%) translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 9999;
    white-space: nowrap;
}

.custom-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -100%) translateY(-15px);
}

.custom-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--primary-navy);
}

/* Modal System */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-light);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--gray-light);
    color: var(--primary-navy);
}

/* Tabs */
.tabs-container {
    margin: 2rem 0;
}

.tabs-header {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid var(--gray-light);
    margin-bottom: 2rem;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-button.active {
    color: var(--primary-gold);
}

.tab-button.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* Accordion Improvements */
[data-accordion-header] {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

[data-accordion-header]::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
    transition: transform 0.3s ease;
}

[data-accordion-header].open::after {
    transform: rotate(180deg);
}

[data-accordion-content] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* Skeleton Loaders */
.skeleton-container .skeleton {
    height: 20px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.skeleton-text {
    height: 16px;
}

.skeleton-title {
    height: 32px;
    width: 60%;
}

/* Infinite Scroll Loader */
.infinite-loader {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.infinite-loader.active {
    opacity: 1;
    visibility: visible;
}

/* Copy to Clipboard Button */
[data-copy] {
    position: relative;
    cursor: pointer;
}

[data-copy].copied {
    color: #10b981;
}

/* Smooth Page Load */
body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

/* Scroll Bar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Selection Styling */
::selection {
    background: var(--primary-gold);
    color: white;
}

::-moz-selection {
    background: var(--primary-gold);
    color: white;
}

/* Focus Visible for Accessibility */
:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Lazy Loaded Images */
img[data-src] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[data-src].loaded {
    opacity: 1;
}

/* Print Styles */
@media print {
    .main-header,
    .main-nav,
    .back-to-top,
    .toast-notification,
    .loading-overlay,
    .modal {
        display: none !important;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .toast-notification {
        left: 1rem;
        right: 1rem;
        transform: translateX(0) translateY(100px);
        max-width: calc(100% - 2rem);
    }
    
    .toast-notification.show {
        transform: translateX(0) translateY(0);
    }
    
    .modal-content {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .custom-cursor,
    .custom-cursor-follower {
        display: none;
    }
}

/* ========================================
   CONVERSION BOOST - High Impact Popups
======================================== */

/* Popup Base */
.conversion-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.conversion-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.conversion-popup-content {
    position: relative;
    background: white;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #6b7280;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.popup-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4a259 0%, #b78e48 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(183, 142, 72, 0.4);
    transition: all 0.3s;
}

.popup-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(183, 142, 72, 0.5);
}

/* Urgency Banner */
.urgency-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1f2a3a 0%, #2a3b4d 100%);
    color: white;
    padding: 1rem;
    z-index: 99998;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* ========================================
   SECCIONES Y CONTENEDORES REUTILIZABLES
   ======================================== */

/* Sección Tecnologías */
.tech-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.tech-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tech-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tech-title {
    color: #1f2a3a;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.tech-subtitle {
    color: #6b7280;
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto;
}

.tech-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.tech-carousel {
    display: flex;
    gap: 4rem;
    align-items: center;
    animation: scroll 30s linear infinite;
}

.tech-carousel:hover {
    animation-play-state: paused;
}

.tech-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.tech-logo-img {
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.tech-logo-img:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hero Section */
/* HERO SECTION - ESTILO CENTRADO */
.hero-section {
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Video de fondo */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    position: absolute;
    top: 0;
    left: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(31, 42, 58, 0.75) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 100%;
    margin: 0;
    padding: 60px 6rem;
    text-align: left;
    width: 100%;
}

.hero-content-centered {
    color: white;
    text-align: left;
    position: relative;
    z-index: 11;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2.5rem;
}

.hero-badge-icon {
    color: #f4d03f;
    font-size: 1rem;
}

.hero-badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: white;
    max-width: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: white;
    color: #1f2a3a;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
    color: #1f2a3a;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: transparent;
    color: white;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s;
}

.hero-cta-secondary:hover {
    background: white;
    color: #1f2a3a;
}

.hero-cta-icon {
    font-size: 0.85rem;
}

/* Animaciones */
@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(244, 208, 63, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(244, 208, 63, 0.5);
    }
}

.hero-video-container {
    background: linear-gradient(135deg, rgba(31, 42, 58, 0.4) 0%, rgba(183, 142, 72, 0.2) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 0.5rem;
    border: 2px solid rgba(183, 142, 72, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 40px rgba(183, 142, 72, 0.2);
    transition: all 0.3s ease;
}

.hero-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(183, 142, 72, 0.3);
    border-color: rgba(183, 142, 72, 0.5);
}

.hero-video-player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #0a1628;
    width: 100%;
    padding-top: 56.25%;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.hero-video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    cursor: pointer;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(183, 142, 72, 0.4);
        border-color: rgba(183, 142, 72, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(183, 142, 72, 0);
        border-color: rgba(212, 162, 89, 0.6);
    }
}

@keyframes textGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes iconRotate {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-5deg) scale(1.1); }
    100% { transform: rotate(0deg) scale(1); }
}

/* Responsive Popups */
@media (max-width: 768px) {
    .conversion-popup-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
    
    .urgency-banner {
        font-size: 0.85rem;
    }
    
    .urgency-banner > div {
        flex-direction: column;
        gap: 0.8rem !important;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-video-wrapper {
        margin-top: 0;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .tech-carousel {
        gap: 2rem;
    }
}

/* ======= VALOR SECTION STYLES ======= */
.valor-section {
    background: #fafbfc;
    padding: 50px 0;
    position: relative;
}

.valor-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0 50%, transparent);
}

.valor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.valor-header {
    text-align: center;
    margin-bottom: 3rem;
}

.valor-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4a259 0%, #b78e48 100%);
    color: white;
    padding: 0.45rem 1.3rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.valor-title {
    color: var(--primary-navy);
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.valor-description {
    color: #666;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.valor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.valor-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.valor-decoration {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 162, 89, 0.1) 0%, rgba(244, 208, 63, 0.1) 100%);
    border-radius: 50%;
}

.valor-content {
    position: relative;
    z-index: 1;
}

.valor-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4a259 0%, #b78e48 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 20px rgba(183, 142, 72, 0.25);
}

.valor-icon i {
    color: white;
    font-size: 1.7rem;
}

.valor-card-title {
    color: var(--primary-navy);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.valor-card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.valor-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.valor-highlight i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .valor-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .valor-title {
        font-size: 2rem;
    }
}

/* ======= TESTIMONIALS SECTION STYLES ======= */
.testimonios-section {
    background: white;
    padding: 50px 0;
    position: relative;
}

.testimonios-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0 50%, transparent);
}

.testimonios-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonios-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonios-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4a259 0%, #b78e48 100%);
    color: white;
    padding: 0.45rem 1.3rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.testimonios-title {
    color: var(--primary-navy);
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonios-description {
    color: #666;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.testimonio-card {
    background: white;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #e9ecef;
    position: relative;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.testimonio-quote-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 2.5rem;
    color: var(--primary-gold);
    opacity: 0.15;
}

.testimonio-content {
    position: relative;
    z-index: 1;
}

.testimonio-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonio-metrics {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.3rem;
    padding-top: 1.3rem;
    border-top: 1px solid #e9ecef;
}

.testimonio-metric {
    flex: 1;
    text-align: center;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.testimonio-metric-value {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonio-metric-label {
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonio-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonio-author-info {
    flex: 1;
}

.testimonio-author-name {
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
}

.testimonio-author-role {
    color: #666;
    font-size: 0.85rem;
    display: block;
}

.testimonio-author-company {
    color: #999;
    font-size: 0.8rem;
    display: block;
}

@media (max-width: 992px) {
    .testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonios-title {
        font-size: 2rem;
    }
}

/* ======= FAQ SECTION STYLES ======= */
.faq-section {
    background: white;
    padding: 100px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    color: var(--primary-navy);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-description {
    color: #666;
    font-size: 1.1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question-text {
    color: var(--primary-navy);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-chevron {
    color: var(--primary-gold);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
}

/* ======= FAQ CTA SECTION ======= */
.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #0a1628 0%, #1f2a3a 100%);
    border-radius: 16px;
}

.faq-cta-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-cta-text {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.faq-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4a259 0%, #b78e48 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(183, 142, 72, 0.3);
    transition: all 0.3s;
}

.faq-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(183, 142, 72, 0.4);
}

.faq-cta-button i {
    margin-left: 0.5rem;
}

/* ======= FOOTER STYLES ======= */
.footer-tagline {
    color: var(--gold);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .faq-cta {
        padding: 2rem 1.5rem;
    }
    
    .faq-cta-title {
        font-size: 1.5rem;
    }
    
    .faq-cta-button {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
}
