/* ========================================
   ADUANA PRIME — RESPONSIVE DESIGN
   ======================================== */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.25rem;
    }
    
    .pillars {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transformation-box {
        flex-direction: column;
        gap: 1rem;
    }
    
    .transformation-box .arrow {
        transform: rotate(90deg);
    }
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 3rem 0 4rem;
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .btn-xl {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
    
    .method-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .offer-value {
        font-size: 1.25rem;
    }
    
    .price-big {
        font-size: 3rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-value {
        font-size: 2rem;
        padding: 0.75rem 1rem;
        min-width: 60px;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .transformation-box {
        padding: 2rem 1rem;
    }
    
    .transformation-box .arrow {
        font-size: 2rem;
    }
}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.5rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .btn {
        width: 100%;
        padding: 1rem;
    }
    
    .pillar-card,
    .benefit-card {
        padding: 1.5rem;
    }
    
    .offer-item {
        padding: 1rem;
    }
    
    .price-box {
        padding: 2rem 1rem;
    }
    
    .price-big {
        font-size: 2.5rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0 3rem;
    }
    
    .hero-headline {
        font-size: 1.5rem;
    }
    
    .hero-video {
        margin-bottom: 2rem;
    }
}

/* Acessibilidade - Reduzir animações */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
