/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #F1C40E;
    --primary-black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-light: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Notificações de Entrada no Grupo */
#notifications-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

.notification {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideInLeft 0.5s ease-out, fadeOut 0.5s ease-in 4.5s;
    border-left: 4px solid #25D366;
    position: relative;
    overflow: hidden;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.1), transparent);
    animation: shimmer 2s infinite;
}

.notification-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.notification-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.notification-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.notification-name {
    font-weight: 700;
    color: var(--primary-black);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.notification-message {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.4;
}

.notification-time {
    color: #25D366;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-120%);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%),
        url('imagens/produto2.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

.logo {
    max-width: 320px;
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-title .highlight {
    display: block;
    color: var(--primary-yellow);
    text-shadow: 0 0 30px rgba(241, 196, 14, 0.5);
}

.hero-title .year {
    display: block;
    font-size: 0.5em;
    color: var(--white);
    letter-spacing: 10px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--primary-yellow);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 40px;
    animation: pulse 2s infinite;
}

.badge-icon {
    font-size: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    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.3), transparent);
    transition: left 0.5s;
}

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

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.whatsapp-icon-large {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.cta-button .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

.pulse {
    animation: pulse 2s infinite;
}

.hero-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-yellow);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(241, 196, 14, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), #ffd700);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(241, 196, 14, 0.25);
    border-color: var(--primary-yellow);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.benefit-description {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.benefit-highlight {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-button-secondary::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;
}

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

.cta-button-secondary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 18px 45px rgba(37, 211, 102, 0.6);
}

/* Social Proof Section */
.social-proof {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23F1C40E" opacity="0.05"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.social-proof .section-title {
    color: var(--white);
}

.social-proof .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.proof-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    aspect-ratio: 16/10;
}

.proof-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(241, 196, 14, 0.3);
}

.proof-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.proof-item:hover .proof-image {
    transform: scale(1.1);
}

.proof-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
    padding: 30px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.proof-item:hover .proof-overlay {
    background: linear-gradient(to top, rgba(241, 196, 14, 0.95) 0%, rgba(241, 196, 14, 0.8) 60%, transparent 100%);
}

.proof-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.proof-item:hover .proof-text h3 {
    color: var(--primary-black);
}

.proof-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.proof-item:hover .proof-text p {
    color: var(--primary-black);
    font-weight: 500;
}

@media (max-width: 768px) {
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-description p {
    margin-bottom: 20px;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-icon {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    font-weight: 700;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.grid-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease;
}

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

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(241, 196, 14, 0.15);
    border-color: rgba(241, 196, 14, 0.3);
}

.review-stars {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-text {
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-author strong {
    color: var(--primary-black);
    font-size: 1.1rem;
}

.review-author span {
    color: #888;
    font-size: 0.9rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.trust-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    color: var(--white);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.final-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--white);
    opacity: 0.9;
}

.urgency-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(241, 196, 14, 0.1);
    border: 2px solid var(--primary-yellow);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.urgency-icon {
    font-size: 2rem;
}

.urgency-text {
    text-align: left;
}


.cta-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
}

.cta-button-large::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;
}

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

.cta-button-large:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
}


.guarantees {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.guarantee-icon {
    font-size: 1.5rem;
    color: var(--primary-yellow);
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--primary-yellow);
    font-weight: 500;
}

.footer-info h4,
.footer-contact h4 {
    color: var(--primary-yellow);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-info p,
.footer-contact p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(37, 211, 102, 0.8), 0 0 60px rgba(37, 211, 102, 0.5);
    }
}

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

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid,
    .reviews-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: 30px;
    }

    .guarantees {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-info,
    .footer-contact {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .hero {
        background-attachment: scroll;
        min-height: 100vh;
        padding: 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .logo {
        max-width: 240px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 11vw, 3.5rem);
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
        margin-bottom: 15px;
    }
    
    .hero-badge {
        padding: 10px 25px;
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
        gap: 8px;
    }
    
    .cta-button-secondary {
        padding: 16px 35px;
        font-size: 1rem;
    }
    
    .hero-note {
        font-size: 0.85rem;
        margin-top: 15px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .benefits,
    .social-proof,
    .about,
    .reviews,
    .final-cta {
        padding: 60px 0;
    }
    
    .benefit-card,
    .review-card {
        padding: 30px 25px;
    }
    
    .benefit-icon {
        font-size: 3rem;
    }
    
    .benefit-title {
        font-size: 1.3rem;
    }
    
    .benefit-description {
        font-size: 0.95rem;
    }
    
    .about-description p {
        font-size: 1rem;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .trust-number {
        font-size: 2.5rem;
    }
    
    .final-cta-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    
    .final-cta-subtitle {
        font-size: 1rem;
    }
    
    .urgency-box {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .urgency-text {
        text-align: center;
        font-size: 0.95rem;
    }
    
    .urgency-icon {
        font-size: 2.5rem;
    }
    
    .cta-button-large {
        padding: 14px 30px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }
    
    .whatsapp-icon-large {
        width: 20px;
        height: 20px;
    }
    
    .guarantee-item {
        font-size: 0.95rem;
    }
    
    .proof-text h3 {
        font-size: 1.3rem;
    }
    
    .proof-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #notifications-container {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
    }
    
    .notification {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .notification-icon {
        width: 40px;
        height: 40px;
    }
    
    .notification-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .notification-name {
        font-size: 0.9rem;
    }
    
    .notification-message {
        font-size: 0.8rem;
    }
    
    .notification-time {
        font-size: 0.7rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding-top: 50px;
    }
    
    .logo {
        max-width: 220px;
        margin-bottom: 18px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 15px;
    }
    
    .hero-badge {
        padding: 9px 22px;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 0.95rem;
        letter-spacing: 0.3px;
        gap: 8px;
    }
    
    .cta-button-secondary {
        padding: 15px 30px;
        font-size: 0.95rem;
    }
    
    .cta-button-large {
        padding: 15px 30px;
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }
    
    .hero-note {
        font-size: 0.85rem;
        margin-top: 15px;
    }
    
    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }
    
    .whatsapp-icon-large {
        width: 22px;
        height: 22px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .benefits,
    .social-proof,
    .about,
    .reviews,
    .final-cta {
        padding: 50px 0;
    }
    
    .benefits-grid,
    .reviews-grid {
        gap: 25px;
    }
    
    .benefit-card,
    .review-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .benefit-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .benefit-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .benefit-highlight {
        font-size: 0.85rem;
        padding: 6px 15px;
    }
    
    .proof-grid {
        gap: 25px;
    }
    
    .proof-overlay {
        padding: 20px;
    }
    
    .proof-text h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .proof-text p {
        font-size: 0.85rem;
    }
    
    .about-description p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .feature-item {
        font-size: 0.95rem;
        gap: 12px;
    }
    
    .feature-icon {
        font-size: 1.3rem;
    }
    
    .grid-image {
        height: 200px;
    }
    
    .review-stars {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .review-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .review-author strong {
        font-size: 1rem;
    }
    
    .review-author span {
        font-size: 0.85rem;
    }
    
    .trust-badges {
        gap: 25px;
    }
    
    .trust-number {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .trust-label {
        font-size: 0.9rem;
    }
    
    .final-cta-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .final-cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .urgency-box {
        padding: 15px 12px;
        margin-bottom: 35px;
    }
    
    .urgency-icon {
        font-size: 2rem;
    }
    
    .urgency-text {
        font-size: 0.9rem;
    }
    
    .guarantees {
        gap: 15px;
        margin-top: 30px;
    }
    
    .guarantee-item {
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .guarantee-icon {
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        max-width: 120px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-info h4,
    .footer-contact h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .footer-info p,
    .footer-contact p {
        font-size: 0.9rem;
    }
}
