/* CSS Variables for Color System */
:root {
    /* Main Brand Colors */
    --primary-dark: #51141B;
    --primary-light: #F4EEDE;
    --primary-gold: #e2ca74;
    --primary-gold-dark: #c4a852;
    --primary-gold-light: #f0dda0;
    --primary-beige: #D1C1B2;
    
    /* Gradients */
    --gradient-primary: #732D37;
    --gradient-gold: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 65%, var(--primary-gold) 100%);
    --gradient-gold-reverse: linear-gradient(135deg, var(--primary-gold-dark) 0%, var(--primary-gold) 50%, var(--primary-gold-dark) 100%);
    
    /* WhatsApp Green */
    --whatsapp-green: #25D366;
    --whatsapp-green-dark: #20B858;
    
    /* Text Shadows & Effects */
    --text-shadow-light: 6px 6px 25px var(--primary-light), -6px -6px 25px var(--primary-light), 0 0 40px var(--primary-light);
    --drop-shadow-gold: 0 8px 25px rgba(226, 202, 116, 0.4);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Questrial', sans-serif;
    color: var(--primary-dark);
    line-height: 1.47059;
    min-height: 100vh;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Only add transitions to specific interactive elements */
a, button, .social-btn, .cta-button, .main-title.mixed-style .apple-icon {
    transition: transform 0.3s ease-in-out;
}

body {
    background: url('./images/hero.png') no-repeat center center fixed;
    background-size: cover;
}

/* Background wrapper */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('./images/hero.png') no-repeat center center;
    background-size: cover;
}

/* Main container */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Hero Section */
.hero-section {
    text-align: center;
    width: 100%;
    flex-shrink: 0;
    margin-top: clamp(10px, 2vh, 20px);
    padding: clamp(15px, 3vh, 30px) 10px;
}

/* Main Title */
.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 500;
    color: var(--primary-dark);
    text-align: center;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
    text-shadow: 0 4px 12px rgba(209, 193, 178, 0.6),
                 0 1px 2px rgba(244, 238, 222, 0.9);
    filter: drop-shadow(0 8px 16px rgba(81, 20, 27, 0.2));
}

/* Main Title Styles */
.main-title.mixed-style {
    font-weight: 300;
    color: var(--primary-dark);
    width: 100%;
    max-width: min(1100px, 100% - 20px);
    margin: 0 auto;
    text-align: center;
    letter-spacing: -0.02em;
    font-size: clamp(24px, 5vw, 68px);
    line-height: 1.3;
    text-shadow: var(--text-shadow-light);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
}

.main-title.mixed-style .bigger-text {
    font-size: clamp(1.2em, 1.4em, 1.6em);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.main-title.mixed-style .highlight {
    font-weight: 700;
    color: var(--primary-dark);
    display: inline-block;
    text-shadow: var(--text-shadow-light);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
}

.main-title.mixed-style .subtle {
    font-weight: 300;
    color: var(--primary-dark);
    font-size: 0.85em;
    display: block;
    text-shadow: var(--text-shadow-light);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
}

.main-title.mixed-style .apple-icon {
    display: inline-block;
    font-size: 0.9em;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--primary-dark);
    text-shadow: var(--text-shadow-light);
    transition: transform 0.3s ease;
}

.main-title.mixed-style .apple-icon:hover {
    transform: scale(1.2) rotate(10deg);
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
    font-size: clamp(16px, 2.8vw, 24px);
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    line-height: 1.4;
    margin: clamp(20px, 4vw, 35px) auto 0;
    max-width: min(950px, 90%);
    letter-spacing: -0.01em;
}

/* Video Section */
.video-section {
    width: 100%;
    max-width: min(1200px, 100% - 30px);
    margin: 0 auto;
    padding: clamp(10px, 2vw, 20px);
}

.youtube-video {
    width: 100%;
    aspect-ratio: 21/9;
    border-radius: clamp(12px, 2vw, 18px);
    box-shadow: 0 0 clamp(50px, 8vw, 100px) rgba(81, 20, 27, 0.3);
}

/* About Section */
.about-section {
    width: 100%;
    padding: 40px 15px;
}

.about-container {
    background: #51141B;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 
        0 15px 30px -10px rgba(81, 20, 27, 0.4),
        0 8px 16px rgba(81, 20, 27, 0.2);
}

/* New layout for photo and content */
.about-layout {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-photo-section {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.profile-photo-container {
    position: relative;
    display: inline-block;
}

.profile-photo {
    width: clamp(180px, 25vw, 280px);
    height: clamp(180px, 25vw, 280px);
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(226, 202, 116, 0.3);
    box-shadow: 
        0 15px 35px -10px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.2),
        0 0 0 8px rgba(244, 238, 222, 0.1);
    transition: all 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 
        0 20px 45px -10px rgba(0, 0, 0, 0.5),
        0 12px 25px rgba(0, 0, 0, 0.3),
        0 0 0 8px rgba(244, 238, 222, 0.2);
    border-color: rgba(226, 202, 116, 0.5);
}

.profile-logo-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: clamp(50px, 8vw, 70px);
    height: clamp(50px, 8vw, 70px);
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.2),
        0 0 0 3px rgba(226, 202, 116, 0.4);
    border: 2px solid #51141B;
    transition: all 0.3s ease;
}

.profile-logo-badge:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 25px rgba(0, 0, 0, 0.4),
        0 6px 15px rgba(0, 0, 0, 0.3),
        0 0 0 3px rgba(226, 202, 116, 0.6);
}

.profile-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(81, 20, 27, 0.2));
}

.about-content {
    flex: 1;
    text-align: left;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-description {
    font-size: clamp(1rem, 1.1rem, 1.2rem);
    line-height: 1.6;
    color: var(--primary-light);
    max-width: min(800px, 100%);
    margin: 0;
}

.about-description .signature {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    display: block;
    margin-top: 1rem;
}

/* Social Media Section */
.social-section {
    width: 100%;
    padding: clamp(20px, 4vw, 40px) 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 2vw, 20px);
    flex-wrap: wrap;
    padding: 0 clamp(10px, 2vw, 20px);
}

.social-btn {
    width: clamp(45px, 8vw, 60px);
    height: clamp(45px, 8vw, 60px);
    border-radius: 50%;
    background: #51141B;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn i {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--primary-light);
}

.social-btn:hover {
    transform: translateY(-5px);
}

/* Footer */
.site-footer {
    background: #51141B;
    padding: 30px 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 2px solid rgba(226, 202, 116, 0.2);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-text {
    color: var(--primary-light);
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.growth-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.growth-link:hover {
    color: var(--primary-light);
    background: var(--primary-gold);
    text-decoration: none;
    transform: translateY(-1px);
}

/* CTA Section */
.cta-section {
    width: 100%;
    padding: 40px 20px;
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1.15);
    position: relative;
    z-index: 10;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: calc(100% + 40px);
    background: radial-gradient(
        circle at center,
        rgba(200, 176, 88, 0.1) 0%,
        transparent 70%
    );
    z-index: -1;
    pointer-events: none;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 45px;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    text-decoration: none;
    background: var(--gradient-gold);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(200, 176, 88, 0.35),
        0 4px 12px rgba(143, 127, 67, 0.2),
        inset 0 2px 3px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2.5px solid rgba(200, 176, 88, 0.6);
    transform: translateY(0);
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cta-button span,
.cta-button i {
    background: linear-gradient(135deg, 
        #51141B 0%,
        #732D37 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    filter: drop-shadow(0 1px 1px rgba(244, 238, 222, 0.6));
}

.cta-button i {
    font-size: 1.3em;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(200, 176, 88, 0.45),
        0 8px 20px rgba(143, 127, 67, 0.25),
        inset 0 2px 3px rgba(255, 255, 255, 0.4);
    background: var(--gradient-gold-reverse);
    border-color: rgba(200, 176, 88, 0.7);
    letter-spacing: 0.8px;
}

.cta-button:hover span,
.cta-button:hover i {
    filter: drop-shadow(0 2px 2px rgba(244, 238, 222, 0.7));
}

.cta-button:hover i {
    transform: scale(1.15) rotate(5deg);
}

.cta-button:active {
    transform: translateY(-2px) scale(0.99);
    box-shadow: 
        0 6px 15px rgba(200, 176, 88, 0.3),
        0 3px 8px rgba(143, 127, 67, 0.2),
        inset 0 2px 3px rgba(255, 255, 255, 0.3);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: clamp(45px, 8vw, 60px);
    height: clamp(45px, 8vw, 60px);
    bottom: clamp(20px, 4vw, 30px);
    right: clamp(20px, 4vw, 30px);
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulseWhatsApp 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: clamp(24px, 4vw, 32px);
    color: #FFF;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: rotate(10deg);
}

@keyframes pulseWhatsApp {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    }
}

/* Media Queries */
@media (max-width: 1068px) {
    .background-wrapper {
        position: absolute;
        background-attachment: scroll;
    }
    
    .about-container {
        padding: 30px;
        margin: 0 10px;
    }
    
    /* Mobile layout adjustments for photo section */
    .about-layout {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .about-content {
        text-align: center;
    }
    
    .profile-photo {
        width: clamp(150px, 35vw, 220px);
        height: clamp(150px, 35vw, 220px);
    }
    
    .profile-logo-badge {
        width: clamp(45px, 10vw, 60px);
        height: clamp(45px, 10vw, 60px);
        bottom: 8px;
        right: 8px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .about-container {
        padding: 25px;
        margin: 0 8px;
        border-radius: 20px;
    }
    
    /* Further mobile adjustments */
    .about-layout {
        gap: 25px;
    }
    
    .profile-photo {
        width: clamp(140px, 40vw, 200px);
        height: clamp(140px, 40vw, 200px);
    }
    
    .profile-logo-badge {
        width: clamp(40px, 12vw, 55px);
        height: clamp(40px, 12vw, 55px);
        bottom: 6px;
        right: 6px;
        padding: 6px;
    }

    .cta-section {
        transform: scale(1.05);
        padding: 30px 15px;
    }
    
    .cta-button {
        padding: 18px 35px;
        font-size: clamp(18px, 2.5vw, 20px);
    }

    .cta-button span,
    .cta-button i {
        background: linear-gradient(135deg, 
            #51141B 0%,
            #732D37 100%
        );
        -webkit-background-clip: text;
        background-clip: text;
        filter: drop-shadow(0 1px 1px rgba(244, 238, 222, 0.6));
    }

}

@media (max-width: 425px) {
    .container {
        padding: 0 15px;
    }

    .about-section {
        padding: 30px 10px;
    }

    .about-container {
        padding: 20px 15px;
        margin: 0 5px;
        border-radius: 16px;
    }
    
    /* Small mobile adjustments */
    .about-layout {
        gap: 20px;
    }
    
    .profile-photo {
        width: clamp(120px, 45vw, 180px);
        height: clamp(120px, 45vw, 180px);
        border-width: 3px;
    }
    
    .profile-logo-badge {
        width: clamp(35px, 14vw, 50px);
        height: clamp(35px, 14vw, 50px);
        bottom: 5px;
        right: 5px;
        padding: 5px;
        border-width: 1px;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-description .signature {
        font-size: 1.3rem;
        display: block;
        margin-top: 1rem;
    }

    .cta-section {
        transform: scale(1);
        padding: 20px 5px;
    }
    
    .cta-button {
        padding: 14px 20px;
        font-size: clamp(14px, 2.5vw, 16px);
        gap: 8px;
        white-space: nowrap;
    }

    .cta-button span,
    .cta-button i {
        background: linear-gradient(135deg, 
            #51141B 0%,
            #732D37 100%
        );
        -webkit-background-clip: text;
        background-clip: text;
        filter: drop-shadow(0 1px 1px rgba(244, 238, 222, 0.5));
    }

    .cta-button i {
        font-size: 1.1em;
    }
}

@media (max-width: 360px) {
    .cta-button {
        padding: 12px 16px;
        font-size: 14px;
        gap: 6px;
    }

    .cta-button i {
        font-size: 1em;
    }

    .cta-button span,
    .cta-button i {
        filter: drop-shadow(0 1px 1px rgba(244, 238, 222, 0.4));
    }

}

/* Methodology Section - Compact Timeline Design */
.methodology-section {
    width: 100%;
    padding: 60px 15px;
    margin: 20px 0;
}

.methodology-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.methodology-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    color: var(--primary-dark);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    text-shadow: 
        4px 4px 20px #F4EEDE,
        -4px -4px 20px #F4EEDE,
        0 0 40px #F4EEDE;
    font-weight: 600;
}

.methodology-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    color: var(--primary-dark);
    margin-bottom: 60px;
    font-weight: 500;
    opacity: 0.8;
    font-style: italic;
}

/* Timeline Container */
.timeline-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

/* Horizontal connector for desktop */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(
        to right,
        #C8B058 0%,
        rgba(200, 176, 88, 0.6) 50%,
        #C8B058 100%
    );
    z-index: 1;
}

/* Timeline Step */
.timeline-step {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

/* Step Card - Compact Design */
.step-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(244, 238, 222, 0.25);
    border-radius: 20px;
    padding: 25px 20px;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 
        0 12px 25px -10px rgba(81, 20, 27, 0.25),
        0 6px 12px -6px rgba(81, 20, 27, 0.15);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 35px -10px rgba(81, 20, 27, 0.3),
        0 10px 18px -6px rgba(81, 20, 27, 0.2);
    border-color: rgba(200, 176, 88, 0.4);
}

/* Step Header - With Simple Icons */
.step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 15px 0;
}

.step-icon-simple {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 12px rgba(200, 176, 88, 0.3),
        0 2px 6px rgba(200, 176, 88, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.step-icon-simple:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 8px 16px rgba(200, 176, 88, 0.4),
        0 3px 8px rgba(200, 176, 88, 0.25);
}

.step-icon-simple i {
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.step-badge {
    background: #51141B;
    color: var(--primary-light);
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
    box-shadow: 0 4px 8px rgba(81, 20, 27, 0.2);
}

/* Step Content - Simplified */
.step-content-modern {
    text-align: center;
}

.step-description-modern {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.5;
    color: var(--primary-dark);
    margin-bottom: 15px;
    opacity: 0.85;
    font-weight: 600;
}

.step-features {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(200, 176, 88, 0.15);
    color: var(--primary-dark);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(200, 176, 88, 0.25);
}

/* Guarantee Floating Badge - Image Style */
.guarantee-card {
    position: relative;
}

.guarantee-floating-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    z-index: 50;
    transform: translateY(0) scale(1) rotate(-10deg);
    transition: all 0.3s ease;
    filter: drop-shadow(0 8px 25px rgba(218, 165, 32, 0.4));
}

.guarantee-floating-badge:hover {
    transform: translateY(-3px) scale(1.05) rotate(-5deg);
    filter: drop-shadow(0 12px 30px rgba(218, 165, 32, 0.6));
}


/* Testimonials Section - Carousel */
.testimonials-section {
    width: 100%;
    padding: 60px 15px;
    margin: 20px 0;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-dark);
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    text-shadow: 
        3px 3px 15px #F4EEDE,
        -3px -3px 15px #F4EEDE,
        0 0 25px #F4EEDE;
}

/* Testimonials Carousel - Simple */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 80px;
}

.testimonials-track {
    display: flex;
    transition: transform 1s ease;
    width: 500%; /* 5 testimonios */
    gap: 0;
}

.testimonial-card {
    width: 20%; /* Cada card ocupa 20% para mostrar 1 a la vez */
    padding: 40px 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--gradient-primary) 100%);
    border-radius: 20px;
    border: 1px solid rgba(200, 176, 88, 0.3);
    box-shadow: 
        0 15px 30px -10px rgba(81, 20, 27, 0.4),
        0 8px 16px rgba(81, 20, 27, 0.2);
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 
        0 20px 40px -10px rgba(81, 20, 27, 0.5),
        0 12px 20px rgba(81, 20, 27, 0.3);
    border-color: rgba(200, 176, 88, 0.5);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
    justify-content: center;
    text-align: center;
    min-height: 220px;
}

.testimonial-text {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    line-height: 1.65;
    color: var(--primary-light);
    font-weight: 500;
    font-style: italic;
    margin: 0;
    position: relative;
    padding: 0 10px;
}

.testimonial-text::before {
    content: '"';
    font-size: 2.5rem;
    color: var(--primary-gold);
    position: absolute;
    left: -5px;
    top: -12px;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.7;
}

.testimonial-text::after {
    content: '"';
    font-size: 2.5rem;
    color: var(--primary-gold);
    position: absolute;
    right: -5px;
    bottom: -18px;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.7;
}

.testimonial-info {
    text-align: center;
    border-top: 1px solid rgba(200, 176, 88, 0.3);
    padding-top: 15px;
}

.client-name {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.client-product {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    font-weight: 600;
    color: #e2ca74;
    opacity: 1;
    letter-spacing: 0.3px;
}

/* Testimonials Controls */
.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px 0 0 0;
    background: transparent;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--primary-beige);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-light);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(200, 176, 88, 0.7);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(200, 176, 88, 0.9);
    color: var(--primary-dark);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 15;
    box-shadow: 
        0 8px 20px rgba(81, 20, 27, 0.3),
        0 4px 10px rgba(81, 20, 27, 0.2);
}

.testimonial-nav:hover {
    background: var(--primary-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 12px 25px rgba(81, 20, 27, 0.4),
        0 6px 15px rgba(81, 20, 27, 0.3);
}

.testimonial-nav.prev {
    left: 20px;
}

.testimonial-nav.next {
    right: 20px;
}

/* Social Contribution Section */
.social-contribution-section {
    width: 100%;
    padding: 60px 15px;
    margin: 20px 0;
}

.contribution-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.social-contribution {
    background: var(--gradient-gold);
    border-radius: 24px;
    padding: 40px 30px;
    margin-bottom: 40px;
    box-shadow: 
        0 15px 30px -10px rgba(81, 20, 27, 0.4),
        0 8px 16px rgba(81, 20, 27, 0.2);
}

.contribution-title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.contribution-text,
.participation-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: var(--primary-dark);
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.participation-link {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: var(--primary-dark);
    color: var(--primary-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 20px rgba(81, 20, 27, 0.4),
        0 4px 10px rgba(81, 20, 27, 0.3);
    border: 2px solid var(--primary-dark);
}

.participation-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 25px rgba(81, 20, 27, 0.5),
        0 6px 15px rgba(81, 20, 27, 0.4);
    background: var(--gradient-primary);
}

.warranty-badge {
    margin: 20px 0;
}

.badge-container {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 20px;
    padding: 25px 40px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    box-shadow: 
        0 12px 25px rgba(200, 176, 88, 0.4),
        0 4px 8px rgba(200, 176, 88, 0.2);
    border: 2px solid rgba(244, 238, 222, 0.3);
}

.badge-container i {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.badge-main {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

.badge-sub {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    opacity: 0.8;
}

.cta-section-2 {
    margin-top: 70px;
    text-align: center;
}

.cta-text-2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    line-height: 1.4;
    color: var(--primary-light);
    margin-bottom: 25px;
    font-weight: 600;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta-button-2 {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-green-dark) 100%);
    color: #FFF;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    max-width: 300px;
    text-align: center;
    justify-content: center;
}

.cta-button-2:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, var(--whatsapp-green-dark) 0%, var(--whatsapp-green) 100%);
}

.cta-button-2 i {
    font-size: 1.5em;
    flex-shrink: 0;
}

/* Brands Section - Horizontal Strip */
.brands-section {
    width: 100%;
    padding: 40px 15px;
    margin: 20px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--gradient-primary) 100%);
    border-radius: 20px;
    box-shadow: 
        0 15px 30px -10px rgba(81, 20, 27, 0.4),
        0 8px 16px rgba(81, 20, 27, 0.2);
}

.brands-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.brands-title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    color: var(--primary-light);
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.brands-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    transition: all 0.3s ease;
    flex: 0 1 auto;
}

.brand-item:hover {
    transform: translateY(-3px) scale(1.05);
}

.brand-logo {
    width: auto;
    height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.9);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.1);
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .methodology-section {
        padding: 40px 15px;
        margin: 15px 0;
    }

    /* Switch to vertical layout on mobile */
    .timeline-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    /* Hide horizontal connector, show vertical ones */
    .timeline-container::before {
        display: none;
    }

    .timeline-step:not(:last-child) .step-connector {
        position: absolute;
        left: 50%;
        bottom: -25px;
        transform: translateX(-50%);
        width: 2px;
        height: 25px;
        background: linear-gradient(
            to bottom,
            #C8B058 0%,
            rgba(200, 176, 88, 0.3) 100%
        );
        z-index: 1;
    }

    .step-card {
        padding: 25px 20px;
        max-width: 100%;
    }

    .testimonials-section,
    .social-contribution-section,
    .brands-section {
        padding: 30px 10px;
        margin: 15px 0;
    }

    .brands-grid {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .brand-item {
        padding: 10px 15px;
        flex: 0 1 auto;
    }

    .brand-logo {
        height: 40px;
        max-width: 100px;
    }

    .testimonials-carousel {
        padding: 15px 50px;
        overflow: hidden;
    }
    
    .testimonials-container {
        max-width: 100%;
        padding: 0 10px;
    }

    .testimonials-track {
        display: flex;
        transition: transform 1s ease;
        width: 500%;
        gap: 0;
    }

    .testimonial-card {
        width: 20%;
        padding: 25px 15px;
        margin-bottom: 0;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .testimonial-card:hover {
        transform: scale(1.03);
    }

    .testimonial-text {
        padding: 0 5px;
        font-size: clamp(1rem, 2vw, 1.2rem);
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonial-nav.prev {
        left: 10px;
    }

    .testimonial-nav.next {
        right: 10px;
    }

    .testimonials-indicators {
        padding: 15px 0;
    }

    .testimonials-indicators {
        padding: 20px 0;
    }

    .social-contribution {
        padding: 30px 20px;
    }

    .badge-container {
        padding: 20px 25px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }

    .badge-container i {
        font-size: 2rem;
    }

    .badge-text {
        text-align: center;
    }

    .cta-text-2 {
        font-size: clamp(1.2rem, 2.6vw, 1.4rem);
        margin-bottom: 20px;
        padding: 0 10px;
        letter-spacing: 0.3px;
    }

    .cta-button-2 {
        padding: 16px 30px;
        gap: 12px;
        max-width: 250px;
        font-size: clamp(1rem, 2.2vw, 1.1rem);
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 3px;
    }

    .brand-item {
        padding: 15px 10px;
    }

    .brand-logo {
        height: 80px;
        max-width: 170px;
    }
}

@media (max-width: 480px) {
    .methodology-section {
        padding: 30px 10px;
    }

    .methodology-title,
    .testimonials-title,
    .brands-title {
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    }

    .step-card {
        padding: 20px 15px;
    }


    .step-icon-simple {
        width: 38px;
        height: 38px;
    }

    .step-icon-simple i {
        font-size: 1rem;
    }

    .step-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }

    .feature-tag {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    /* Mobile guarantee badge adjustments */
    .guarantee-floating-badge {
        width: 100px;
        height: 100px;
        top: -25px;
        right: -25px;
        transform: translateY(0) scale(1) rotate(-8deg);
        filter: drop-shadow(0 6px 20px rgba(218, 165, 32, 0.3));
    }

    .social-contribution {
        padding: 25px 15px;
    }

    /* Testimonials for small mobile - Keep carousel */
    .testimonials-section {
        padding: 30px 5px;
    }

    .testimonials-carousel {
        padding: 10px 30px;
    }

    .testimonial-card {
        padding: 20px 10px;
        min-height: 200px;
        transition: all 0.3s ease;
    }

    .testimonial-card:hover {
        transform: scale(1.02);
    }

    .testimonial-content {
        min-height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .testimonial-text {
        font-size: clamp(0.95rem, 1.8vw, 1.1rem);
        padding: 0 5px;
        line-height: 1.5;
    }

    .client-name {
        font-size: clamp(0.9rem, 1.6vw, 1rem);
    }

    .client-product {
        font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    }

    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 1.8rem;
    }
    
    .testimonial-text::before {
        left: -2px;
        top: -8px;
    }
    
    .testimonial-text::after {
        right: -2px;
        bottom: -12px;
    }

    .testimonial-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .testimonial-nav.prev {
        left: 5px;
    }

    .testimonial-nav.next {
        right: 5px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .badge-container {
        padding: 15px 20px;
    }

    .cta-text-2 {
        font-size: clamp(1.1rem, 2.4vw, 1.3rem);
        margin-bottom: 18px;
        padding: 0 5px;
        letter-spacing: 0.2px;
    }

    .cta-button-2 {
        padding: 15px 25px;
        gap: 10px;
        max-width: 220px;
        font-size: clamp(0.95rem, 2vw, 1rem);
    }

    .brands-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        justify-items: center;
        align-items: center;
    }

    .brand-item {
        padding: 10px 15px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .brand-logo {
        height: 35px;
        max-width: 90px;
    }
}