/* =====================================================
   PLANNER DE EXECUÇÃO 90 DIAS - MÉTODO 4P
   Landing Page de Upsell
   Estilo: Profissional, Direto, Estratégico
   ===================================================== */

:root {
    /* Cores principais - Azul escuro com gradiente */
    --bg-primary: #0a1628;
    --bg-secondary: #0f1d35;
    --bg-gradient-start: #0a1628;
    --bg-gradient-end: #1a2744;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    
    /* Cor laranja (CTA) */
    --orange-primary: #ff6b35;
    --orange-hover: #ff8555;
    --orange-dark: #e55525;
    
    /* Cores de texto */
    --text-primary: #ffffff;
    --text-secondary: #b0c4de;
    --text-muted: #7a93b3;
    --text-dark: #0a1628;
    --text-dark-secondary: #4a5568;
    
    /* Cores de borda e cards */
    --border-color: rgba(176, 196, 222, 0.15);
    --card-bg: rgba(26, 39, 68, 0.5);
    --card-hover: rgba(26, 39, 68, 0.8);
    --card-bg-light: #ffffff;
    --border-color-light: rgba(10, 22, 40, 0.1);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* =====================================================
   RESET E BASE
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

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

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    position: relative;
    overflow: hidden;
}

.hero .price-value {
    animation: glow-pulse 0.75s ease-in-out infinite alternate, float 4s ease-in-out infinite;
}
.hero .cta-button {
    animation: glow-pulse 0.75s ease-in-out infinite alternate, float 3s ease-in-out infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.badge-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.badge-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-separator {
    color: var(--text-muted);
    font-weight: 300;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
    max-width: 600px;
}

.hero-title .highlight {
    color: var(--orange-primary);
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

.price-block {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.price-value {
    font-size: 56px;
    font-weight: 900;
    color: var(--orange-primary);
    letter-spacing: -2px;
    line-height: 1;
}

.trust-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
}

.trust-line svg {
    color: var(--orange-primary);
    flex-shrink: 0;
}

/* Hero Image (Mockup) */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planner-mockup {
    position: relative;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

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

.planner-mockup img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

/* =====================================================
   BOTÕES (CTAs)
   ===================================================== */

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--orange-primary);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-large {
    font-size: 18px;
    padding: 20px 48px;
}

/* =====================================================
   SEÇÕES GERAIS
   ===================================================== */

.why-section,
.receive-section,
.for-who-section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: -24px auto 48px;
    line-height: 1.6;
}

/* =====================================================
   POR QUE ESTE PLANNER EXISTE
   ===================================================== */

.why-section {
    background: var(--bg-secondary);
}

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

.why-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: var(--card-hover);
    border-color: var(--orange-primary);
    transform: translateY(-4px);
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
}

.why-icon svg {
    color: var(--orange-primary);
    width: 28px;
    height: 28px;
}

.why-card p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.why-card-highlight {
    border-color: var(--orange-primary);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 107, 53, 0.05) 100%);
}

/* =====================================================
   O QUE VOCÊ RECEBE
   ===================================================== */

.receive-section {
    background: var(--bg-white);
}

.receive-section .section-title {
    color: var(--text-dark);
}

.receive-section .section-intro {
    color: var(--text-dark-secondary);
}

.receive-section .receive-item {
    background: var(--card-bg-light);
    border-color: var(--border-color-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.receive-section .receive-item:hover {
    background: var(--card-bg-light);
    border-color: var(--orange-primary);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.15);
}

.receive-section .receive-icon svg {
    color: var(--orange-primary);
}

.receive-section .receive-item p {
    color: var(--text-dark-secondary);
}

.receive-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.receive-item {
    display: flex;
    align-items: start;
    gap: 18px;
    padding: 22px 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.receive-item:hover {
    background: var(--card-hover);
    border-color: var(--orange-primary);
}

.receive-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.receive-icon svg {
    color: var(--orange-primary);
    width: 20px;
    height: 20px;
}

.receive-item p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =====================================================
   PARA QUEM É
   ===================================================== */

.for-who-section {
    background: var(--bg-secondary);
}

.for-who-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.for-who-item {
    display: flex;
    align-items: start;
    gap: 18px;
    padding: 22px 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.for-who-item:hover {
    background: var(--card-hover);
    border-color: var(--orange-primary);
}

.for-who-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.for-who-icon svg {
    color: var(--orange-primary);
    width: 20px;
    height: 20px;
}

.for-who-item p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =====================================================
   CTA FINAL
   ===================================================== */

.cta-final {
    padding: 100px 0;
    background: var(--bg-white);
}

.cta-final .cta-box {
    background: var(--bg-gradient-start);
}

.cta-box {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    background: var(--card-bg);
    border: 2px solid var(--orange-primary);
    border-radius: 16px;
    padding: 56px 48px;
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.2);
}

.cta-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--orange-primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-description strong {
    color: var(--text-primary);
}

.cta-subtext {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

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

.badge-secure {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.badge-secure svg {
    color: var(--orange-primary);
    flex-shrink: 0;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    padding: 80px 0 60px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-text strong {
    color: var(--text-secondary);
    font-weight: 600;
}

/* =====================================================
   RESPONSIVIDADE - MOBILE
   ===================================================== */

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        max-width: 100%;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .planner-mockup {
        max-width: 320px;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .price-value {
        font-size: 48px;
    }
    
    .badge-line {
        flex-direction: column;
        gap: 4px;
    }
    
    .badge-separator {
        display: none;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-section,
    .receive-section,
    .for-who-section {
        padding: 60px 0;
    }
    
    .cta-final {
        padding: 80px 0;
    }
    
    .cta-box {
        padding: 44px 28px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-button {
        width: 100%;
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .cta-large {
        padding: 18px 32px;
        font-size: 16px;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .footer {
        padding: 60px 0 40px;
    }
    
    .footer-logo {
        max-width: 140px;
    }
    
    .footer-content {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .planner-mockup {
        max-width: 260px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.25;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 16px;
        text-align: center;
    }
    
    .price-label {
        text-align: center;
    }

    .price-value {
        font-size: 42px;
        text-align: center;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-intro {
        font-size: 16px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-box {
        padding: 36px 20px;
    }
    
    .why-card,
    .receive-item,
    .for-who-item {
        padding: 20px 18px;
    }
    
    .why-card h3 {
        font-size: 16px;
    }
    
    .why-card p,
    .receive-item p,
    .for-who-item p {
        font-size: 15px;
    }
    
    .footer-logo {
        max-width: 120px;
    }
    
    .footer {
        padding: 50px 0 36px;
    }
}

/* =====================================================
   AOS (ANIMATE ON SCROLL) - Configurações Personalizadas
   ===================================================== */

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-timing-function: ease-out;
    transition-duration: 800ms;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Fade Down */
[data-aos="fade-down"] {
    transform: translate3d(0, -20px, 0);
}

[data-aos="fade-down"].aos-animate {
    transform: translate3d(0, 0, 0);
}

/* Fade Left */
[data-aos="fade-left"] {
    transform: translate3d(-20px, 0, 0);
}

[data-aos="fade-left"].aos-animate {
    transform: translate3d(0, 0, 0);
}

/* Fade Right */
[data-aos="fade-right"] {
    transform: translate3d(20px, 0, 0);
}

[data-aos="fade-right"].aos-animate {
    transform: translate3d(0, 0, 0);
}

/* Zoom In */
[data-aos="zoom-in"] {
    transform: scale3d(0.95, 0.95, 1);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale3d(1, 1, 1);
}

/* Suportar GPU acceleration */
[data-aos] {
    will-change: transform, opacity;
}

/* =====================================================
   ANIMAÇÃO DE BRILHO PULSANTE (Glow Pulse)
   ===================================================== */

@keyframes glow-pulse {
    from {
        filter: drop-shadow(0 0 6px rgba(255, 107, 53, 0.4));
    }
    to {
        filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.8));
    }
}

/* Aplicar animação de brilho aos elementos destacados */
.highlight,
.cta-primary,
.price-value,
.why-icon,
.for-who-icon,
.cta-title,
.scroll-to-top {
    animation: glow-pulse .75s ease-in-out alternate infinite;
}