/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.4;
    color: #333;
    overflow-x: hidden;
}

/* Barra de oferta vermelha - MELHORADA */
.offer-bar {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: bold;
    font-size: 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: pulse-red 2s infinite;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}

@keyframes pulse-red {
    0% { background: linear-gradient(135deg, #e74c3c, #c0392b); }
    50% { background: linear-gradient(135deg, #c0392b, #e74c3c); }
    100% { background: linear-gradient(135deg, #e74c3c, #c0392b); }
}

#countdown {
    color: #ffd700;
    font-size: 1.1em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Sistema de notificações profissional */
.notification-container {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    pointer-events: none;
}

.notification {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 300px;
    border-left: 4px solid #ffd700;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    background-color: white;
    color: #2ecc71;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

/* Header profissional */
.header {
    background: linear-gradient(135deg, #fff5e6, #f8f9fa);
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::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="25" cy="25" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e74c3c" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.logo-circle {
    width: 90px;
    height: 90px;
    border: 4px solid #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
    transition: transform 0.3s ease;
}

.logo-circle:hover {
    transform: scale(1.05);
}

.tablet-icon {
    width: 35px;
    height: 25px;
    background-color: #333;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.tablet-icon::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

.slash-icon {
    position: absolute;
    width: 60px;
    height: 5px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    transform: rotate(-45deg);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

/* Título principal profissional */
.main-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #e74c3c;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.main-title .sem {
    color: #ff6b35;
    font-weight: 300;
    font-size: 0.8em;
    vertical-align: middle;
    margin: 0 5px;
}

.subtitle-professional {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    font-weight: 300;
    margin-top: 10px;
    opacity: 0.9;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #fff5e6, #f8f9fa);
    padding: 50px 20px;
    text-align: center;
}

.hero-title {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
}

.orange {
    color: #ff6b35;
    font-weight: 800;
}

.black {
    color: #333;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #555;
}

.cta-button-container {
    margin: 35px 0;
}

/* Botões profissionais com animação pulsante */
.pulse-button {
    animation: pulse-intense 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
}

@keyframes pulse-intense {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.cta-button {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 15px;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
    text-transform: uppercase;
    min-width: 300px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.5);
    border-color: #ffd700;
}

/* Botão profissional com cor laranja */
.cta-button-professional {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.cta-button-professional:hover {
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.5);
}

.cta-button-professional.pulse-button {
    box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7);
}

@keyframes pulse-orange {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(243, 156, 18, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
    }
}

.cta-button-professional.pulse-button {
    animation: pulse-orange 1.5s infinite;
}

.final-cta {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    font-size: 1.5rem;
    padding: 22px 45px;
}

.final-cta:hover {
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.5);
}

.final-cta.pulse-button {
    box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7);
}

@keyframes pulse-orange {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(243, 156, 18, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
    }
}

.final-cta.pulse-button {
    animation: pulse-orange 1.5s infinite;
}

.success-badge {
    background: linear-gradient(135deg, #333, #2c3e50);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    font-weight: 600;
}

/* Children gallery */
.children-gallery {
    background: linear-gradient(135deg, #fff5e6, #f8f9fa);
    padding: 30px 20px;
    text-align: center;
}

.children-collage {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.children-collage:hover {
    transform: scale(1.02);
}

/* Kit section */
.kit-section {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kit-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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    z-index: 1;
}

.kit-section > * {
    position: relative;
    z-index: 2;
}

.kit-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 35px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.kit-description {
    font-size: 1.3rem;
    margin-bottom: 45px;
    line-height: 1.5;
    font-weight: 500;
}

.kit-contents {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin: 45px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.kit-example {
    margin: 45px 0;
}

.example-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.example-image:hover {
    transform: scale(1.02);
}

/* Urgência */
.urgency-text {
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 20px;
    margin: 35px auto;
    max-width: 700px;
    border: 2px solid #ffd700;
    backdrop-filter: blur(10px);
}

.urgency-text p {
    font-size: 1.2rem;
    margin-bottom: 12px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-weight: 600;
}

/* Pricing section */
.pricing {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 70px 20px;
}

.bonus-section {
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #ffd700, #f39c12);
    padding: 30px;
    border-radius: 20px;
    color: #333;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '🎁';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 3rem;
    opacity: 0.3;
}

.bonus-section h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    font-weight: 700;
}

.bonus-section p {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
}

/* Seta indicativa */
.arrow-indicator {
    text-align: center;
    margin: 40px 0;
}

.arrow-down {
    font-size: 3.5rem;
    color: #f39c12;
    animation: bounce-intense 1.5s infinite;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    filter: drop-shadow(0 0 10px rgba(243, 156, 18, 0.5));
}

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

/* Planos detalhados centralizados */
.price-boxes-detailed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 550px;
    margin: 0 auto;
}

.price-box-detailed {
    background-color: white;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.price-box-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.featured-plan {
    transform: scale(1.08);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    border: 4px solid #ffd700;
    animation: glow-intense 2s infinite;
}

@keyframes glow-intense {
    0%, 100% { 
        box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.5); 
    }
    50% { 
        box-shadow: 0 25px 60px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.8); 
    }
}

/* Badges centralizados */
.plan-badge-centered {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #f39c12);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: pulse-badge-intense 2s infinite;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

@keyframes pulse-badge-intense {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }
    50% { 
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    }
}

.premium-badge {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.basic-plan {
    background: linear-gradient(135deg, #6c5ce7, #5a4fcf);
    color: white;
}

.premium-plan {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.plan-features {
    padding: 50px 35px 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.feature-item:hover {
    padding-left: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.check-icon {
    background-color: #ffd700;
    color: #333;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.pricing-section {
    background-color: rgba(0,0,0,0.15);
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.old-price-text {
    font-size: 1.3rem;
    margin-bottom: 18px;
    opacity: 0.9;
    text-decoration: line-through;
    font-weight: 500;
}

.new-price-large {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 18px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    line-height: 1;
}

.savings-text {
    font-size: 1.2rem;
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.access-button {
    background: linear-gradient(135deg, #ffd700, #f39c12);
    color: #333;
    padding: 20px 40px;
    border: none;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    min-width: 300px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    border: 2px solid transparent;
}

.access-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    border-color: white;
}

/* Animação pulsante para botões de acesso */
.access-button.pulse-button {
    animation: pulse-gold-intense 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
}

@keyframes pulse-gold-intense {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Escassez */
.scarcity-section {
    text-align: center;
    margin-top: 50px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.scarcity-section::before {
    content: '⚠️';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 3rem;
    opacity: 0.3;
}

.scarcity-text {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 12px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.timer-text {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-weight: 600;
}

.highlight {
    color: #ffd700;
    font-size: 1.4em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 800;
}

/* Nova seção de prova social Instagram */
.social-proof-instagram {
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: white;
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-proof-instagram::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="instagram" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23instagram)"/></svg>') repeat;
    z-index: 1;
}

.social-proof-instagram > * {
    position: relative;
    z-index: 2;
}

.social-proof-instagram h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.stars {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

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

.instagram-conversation {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.instagram-conversation.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.instagram-conversation:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.instagram-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

/* Estatísticas de prova social */
.social-proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 50px auto;
}

.stat-item {
    background: rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.stat-item.animate-in {
    transform: translateY(0);
    opacity: 1;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* FAQ */
.faq {
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: white;
    padding: 70px 20px;
    text-align: center;
}

.faq h2 {
    font-size: 2.8rem;
    color: #ffd700;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #6c5ce7;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
}

.faq-item:hover {
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.faq-question {
    background: linear-gradient(135deg, #6c5ce7, #5a4fcf);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #5a4fcf, #4834d4);
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: #ffd700;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(108, 92, 231, 0.1);
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 200px;
}

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

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

/* Security section */
.security-section {
    background: linear-gradient(135deg, #2d3436, #636e72);
    padding: 50px 20px;
    text-align: center;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.security-badge {
    height: 80px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.security-badge:hover {
    opacity: 1;
    transform: scale(1.05);
}

.security-text {
    color: #2ecc71;
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Footer */
.piracy-warning {
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.piracy-warning h3 {
    color: #e74c3c;
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.piracy-warning p {
    max-width: 900px;
    margin: 0 auto 35px;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 35px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
}

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

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .subtitle-professional {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .kit-title {
        font-size: 2.2rem;
    }
    
    .price-boxes-detailed {
        max-width: 420px;
    }
    
    .price-box-detailed {
        max-width: 400px;
    }
    
    .featured-plan {
        transform: scale(1.02);
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 18px 30px;
        min-width: 280px;
    }
    
    .social-proof-instagram h2,
    .faq h2 {
        font-size: 2.2rem;
    }
    
    .security-badges {
        gap: 25px;
    }
    
    .new-price-large {
        font-size: 4rem;
    }
    
    .access-button {
        font-size: 1.3rem;
        min-width: 280px;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .social-proof-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .notification-container {
        left: 10px;
        right: 10px;
    }
    
    .notification {
        max-width: calc(100vw - 40px);
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .kit-title {
        font-size: 1.9rem;
    }
    
    .new-price-large {
        font-size: 3.5rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 16px 25px;
        min-width: 250px;
    }
    
    .final-cta {
        font-size: 1.2rem;
        padding: 18px 30px;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .access-button {
        font-size: 1.2rem;
        min-width: 250px;
    }
    
    .price-box-detailed {
        max-width: 350px;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .featured-plan {
        transform: scale(1);
    }
    
    .bonus-section h3 {
        font-size: 1.5rem;
    }
    
    .scarcity-text {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .social-proof-instagram h2 {
        font-size: 1.9rem;
    }
    
    .notification {
        max-width: calc(100vw - 20px);
    }
    
    .notification-text {
        font-size: 13px;
    }
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .price-box-detailed:hover {
        transform: none;
    }
    
    .cta-button:hover {
        transform: none;
    }
    
    .instagram-conversation:hover {
        transform: none;
    }
    
    .stat-item:hover {
        transform: none;
    }
    
    /* Increase touch targets */
    .cta-button {
        min-height: 55px;
        min-width: 250px;
    }
    
    .faq-question {
        min-height: 70px;
    }
    
    .access-button {
        min-height: 55px;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .instagram-image {
        max-width: 100%;
        height: auto;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .arrow-down {
        animation: none;
    }
    
    .pulse-button {
        animation: none;
    }
    
    .featured-plan {
        animation: none;
    }
    
    .notification {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero,
    .kit-section,
    .social-proof-instagram {
        background: #000;
        color: #fff;
    }
    
    .price-box-detailed {
        border: 2px solid #000;
    }
    
    .basic-plan,
    .premium-plan {
        background: #000;
        color: #fff;
    }
}

