/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                radial-gradient(circle at center, #1a4d2e 0%, #0d2818 100%);
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ADD608" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ADD608" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ADD608" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(28px, 5vw, 45px);
    font-weight: 800;
    line-height: 1.1;
    color: #ADD608;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23000" width="400" height="300"/><circle cx="200" cy="150" r="50" fill="%23ADD608" opacity="0.9"/><polygon points="185,130 185,170 225,150" fill="%23000"/></svg>') center/cover;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23000" width="400" height="300"/><circle cx="200" cy="150" r="55" fill="%23ADD608" opacity="1"/><polygon points="185,130 185,170 225,150" fill="%23000"/></svg>') center/cover;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ADD608 0%, #8BC34A 100%);
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 700;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(173, 214, 8, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(173, 214, 8, 0.4);
    animation: pulse 2s infinite;
}

.cta-button:hover::before {
    left: 100%;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="hexagon" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,5 50,20 50,40 30,55 10,40 10,20" fill="none" stroke="%23ADD608" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="60" height="60" fill="url(%23hexagon)"/></svg>') repeat;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    border: 3px double #ADD608;
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    background: linear-gradient(135deg, rgba(173, 214, 8, 0.05) 0%, rgba(0,0,0,0.3) 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(173, 214, 8, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(173, 214, 8, 0.2);
    border-color: #8BC34A;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ADD608 0%, #8BC34A 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #000;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(24px, 4vw, 35px);
    font-weight: 800;
    line-height: 1.2;
    color: #ADD608;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                radial-gradient(circle at center, #2d5a3d 0%, #1a3326 100%);
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    text-align: center;
    position: relative;
}

.about-image img {
    width: 70%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(28px, 5vw, 45px);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 500;
    line-height: 1.6;
    color: #ADD608;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.about-text .cta-button {
    margin-top: 30px;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.urgency-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 5vw, 45px);
    font-weight: 800;
    line-height: 1.2;
    color: #d8ff3c;
    margin-bottom: 60px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    position: relative;
}

.urgency-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d8ff3c, transparent);
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.urgency-card {
    background: linear-gradient(135deg, rgba(95, 128, 14, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-radius: 25px;
    padding: 40px 25px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.urgency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ADD608, #8BC34A, #ADD608);
    border-radius: 25px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.urgency-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(173, 214, 8, 0.3);
}

.urgency-card:hover::before {
    opacity: 1;
}

.urgency-card .feature-icon {
    border: 3px solid #ADD608;
    background: rgba(173, 214, 8, 0.1);
    backdrop-filter: blur(10px);
}

.urgency-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(16px, 2.5vw, 20px);
    color: #ADD608;
    border: 2px solid #ADD608;
    border-radius: 50px;
    padding: 15px 20px;
    margin: 25px 0;
    background: rgba(173, 214, 8, 0.1);
    backdrop-filter: blur(5px);
}

.urgency-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }

    .features-section,
    .about-section,
    .urgency-section {
        padding: 60px 0;
    }

    .video-container {
        height: 250px;
    }

    .about-image img {
        width: 80%;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .features-grid,
    .urgency-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .urgency-card {
        padding: 30px 20px;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 16px;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Indicator Styles */
.scroll-indicator {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.arrow-down {
    font-size: 24px;
    color: #ff6b35;
    animation: bounce 2s infinite;
    display: block;
    margin-bottom: 8px;
}

.scroll-text {
    font-size: 12px;
    color: #666;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.05);
}

.faq-question h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(255, 107, 53, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50px;
    padding: 15px 20px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

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

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: wiggle 2s ease-in-out infinite;
}

.whatsapp-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    fill: currentColor;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.loading-overlay.show {
    display: flex;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner p {
    font-size: 18px;
    margin: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Micro-animations for existing elements */
.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.cta-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::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:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.urgency-card {
    transition: all 0.3s ease;
}

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

.testimonial-card {
    transition: all 0.3s ease;
}

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

.before-after-item {
    transition: all 0.3s ease;
}

.before-after-item:hover {
    transform: scale(1.05);
}

.before-after-item:hover .before-after-overlay {
    opacity: 1;
}

.before-after-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

/* Animated CTA Button */
.cta-button-animated {
    animation: ctaPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cta-button-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: ctaShine 3s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    }
}

@keyframes ctaShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .cta-button-animated {
        animation-duration: 1.5s;
    }
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #ADD608 0%, #8BC34A 100%);
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    margin: 20px auto;
    max-width: 300px;
    box-shadow: 0 5px 20px rgba(173, 214, 8, 0.4);
    animation: pulse 2s infinite;
}

.guarantee-icon {
    font-size: 24px;
}

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

.guarantee-text strong {
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.guarantee-text span {
    font-size: 12px;
    opacity: 0.8;
}

/* Before/After Section */
.before-after-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(32px, 5vw, 48px);
    color: #1a4d2e;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.transformation-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.before-after-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.before-image, .after-image {
    position: relative;
    flex: 1;
}

.before-image img, .after-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.arrow {
    font-size: 24px;
    color: #ADD608;
    animation: pulse 2s infinite;
}

.transformation-info h4 {
    font-size: 20px;
    color: #1a4d2e;
    margin-bottom: 10px;
}

.weight-loss {
    font-size: 18px;
    font-weight: bold;
    color: #ADD608;
    margin-bottom: 15px;
}

.transformation-info .testimonial {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a4d2e 0%, #0d2818 100%);
    color: white;
}

.testimonials-section .section-title {
    color: #ADD608;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(173, 214, 8, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-photo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ADD608;
}

.client-info h4 {
    margin: 0;
    font-size: 18px;
    color: #ADD608;
}

.stars {
    font-size: 14px;
    margin-top: 5px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #e9ecef;
}

.testimonial-result {
    background: #ADD608;
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
}

/* Social Proof Section */
.social-proof-section {
    padding: 60px 0;
    background: #ADD608;
    color: #000;
}

.social-proof-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.proof-item {
    padding: 20px;
}

.proof-number {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: bold;
    color: #1a4d2e;
    margin-bottom: 10px;
    animation: pulse 3s infinite;
}

/* Estilo especial para vagas restantes */
#spots-left {
    color: #e74c3c !important;
    animation: alertPulse 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
    font-weight: 900;
}

@keyframes alertPulse {
    0% {
        transform: scale(1);
        opacity: 1;
        text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
        text-shadow: 0 0 20px rgba(231, 76, 60, 0.8);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
    }
}

.proof-item p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #1a4d2e;
}