/* =========================================
   VARIÁVEIS DE COR E TIPOGRAFIA (PALETA)
   ========================================= */
:root {
    --bg-dark: #0B0E14;
    --bg-darker: #06080A;
    --bg-card: #151A22;
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    
    /* Cores de Destaque / Conversão (Verde) */
    --accent-color: #00D084; /* Verde Financeiro */
    --accent-hover: #00B371;
    --highlight: #00D084; /* Substituído de Dourado para Verde */
    --red-bad: #EF4444; /* Vermelho para poupança/comparação ruim */
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
}

/* =========================================
   RESET E BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    /* Fundo com iluminações discretas verdes */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 208, 132, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 60%, rgba(0, 208, 132, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(0, 208, 132, 0.04) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%; /* Força o container a expandir dentro do flexbox */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

.highlight {
    color: var(--highlight);
}

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.bg-darker { background-color: var(--bg-darker); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }

a { text-decoration: none; }

/* =========================================
   BOTÕES E CTAS
   ========================================= */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #00E676 0%, #00994D 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 35px;
    border-radius: 999px; /* Bordas 100% arredondadas (pílula) */
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background: linear-gradient(135deg, #00FF87 0%, #00B359 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 230, 118, 0.5);
    color: #ffffff;
}

.pulse-cta {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 208, 132, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 208, 132, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 208, 132, 0); }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    padding: 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    /* Um gradiente bem suave na esquerda apenas para dar leitura ao texto, sumindo totalmente na foto dela */
    background-image: linear-gradient(to right, #0B0E14 0%, rgba(11, 14, 20, 0.6) 35%, transparent 60%), url('../assets/images/banner maior.jpg');
    background-size: cover; /* Preenche a tela toda */
    background-position: center right; /* Trava a posição dela na direita, evitando que ela seja cortada */
    background-repeat: no-repeat;
    position: relative;
}

.hero .container {
    max-width: 1500px; /* Expande bastante o limite para o texto poder ir bem mais para a esquerda do monitor */
}

.hero-content {
    display: block;
    max-width: 800px; /* Largura expandida para a headline ficar em apenas 3 linhas, aproveitando o novo banner largo */
    margin-left: 0;
}

.hero-logo {
    max-width: 180px; /* Ajuste para não ficar enorme */
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-size: 2.8rem; /* Diminuí um pouco a fonte principal */
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.hero small {
    color: var(--text-main);
    font-weight: 600;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.hero small {
    color: var(--text-main);
    font-weight: 600;
}

.security-badges {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 8px;
    font-weight: 600;
}

.security-badges i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* =========================================
   SEÇÕES GERAIS E TÍTULOS
   ========================================= */
.info-section, .comparison-section, .target-audience, .modules-carousel-section, .bonus-section, .about, .pricing, .faq {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* =========================================
   INFORMAÇÃO (O QUE SÃO DIVIDENDOS)
   ========================================= */
.info-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.highlight-box {
    background-color: rgba(0, 208, 132, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
}

/* =========================================
   COMPARAÇÃO GUARDAR X INVESTIR
   ========================================= */
.comparison-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 50px auto 30px;
    max-width: 900px;
}

@media (max-width: 768px) {
    .comparison-cards {
        flex-direction: column;
    }
}

.comp-vs {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-muted);
    background: var(--bg-card);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.comp-card {
    flex: 1;
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border-top: 5px solid transparent;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    width: 100%;
}

.comp-card.good {
    border-color: var(--accent-color);
    box-shadow: 0 0 40px rgba(0, 208, 132, 0.15);
    transform: scale(1.05); /* Highlight no OPD */
    z-index: 1;
}

.comp-card.bad {
    border-color: var(--red-bad);
    opacity: 0.85;
}

.comp-card:hover {
    transform: scale(1.08);
}
.comp-card.bad:hover {
    transform: scale(1.02);
}

.comp-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}
.comp-card.bad .comp-icon { color: var(--red-bad); }
.comp-card.good .comp-icon { color: var(--accent-color); }

.comp-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.comp-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    min-height: 40px;
    line-height: 1.4;
}

.comp-value {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.comp-card.bad .comp-value { color: var(--red-bad); }
.comp-card.good .comp-value { color: var(--accent-color); }

.comp-footer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.comp-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--bg-darker);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,208,132,0.3);
    white-space: nowrap;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

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

.obj-item {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.obj-item h4 {
    color: var(--highlight);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.obj-item p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.obj-item i {
    color: var(--accent-color);
}

/* =========================================
   PARA QUEM É
   ========================================= */
.target-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.target-list li {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--bg-card);
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.target-list i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* =========================================
   CARROSSEL DE MÓDULOS (SWIPER)
   ========================================= */
.swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px;
}

.module-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.module-cover {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.module-header {
    background-color: rgba(251, 191, 36, 0.1);
    color: var(--highlight);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    align-self: flex-start;
}

.module-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.module-card ul {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.module-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.module-card ul li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: -2px;
}

.module-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.swiper-pagination-bullet {
    background: var(--text-muted);
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--accent-color);
}

/* =========================================
   BÔNUS EXCLUSIVO
   ========================================= */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.bonus-item {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px dashed var(--highlight);
    position: relative;
}

.bonus-cover {
    width: 100%;
    max-width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.bonus-icon {
    font-size: 3.5rem;
    color: var(--highlight);
    margin-bottom: 20px;
}

.bonus-item p {
    color: var(--text-main);
    margin-bottom: 20px;
}

.strike {
    text-decoration: line-through;
    color: var(--red-bad);
    display: block;
    font-size: 0.9rem;
}

.free {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 800;
}

/* =========================================
   SOBRE (PROFESSORA)
   ========================================= */
.about-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.stats-list {
    list-style: none;
}

.stats-list li {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-list i {
    color: var(--highlight);
}

/* =========================================
   PRICING / INSCRIÇÃO
   ========================================= */
.pricing {
    background: radial-gradient(circle at center, rgba(0, 208, 132, 0.05), transparent 60%);
}

.pricing-card {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(0, 208, 132, 0.3);
    box-shadow: 0 20px 50px rgba(0, 208, 132, 0.1);
    position: relative;
    overflow: visible;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-color);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.two-col-pricing {
    display: flex;
    flex-direction: row;
}

.pricing-left {
    flex: 1.2;
    padding: 50px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.pricing-right {
    flex: 0.8;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(21, 26, 34, 0.5) 0%, rgba(0, 208, 132, 0.05) 100%);
    border-bottom-right-radius: 16px;
}

.pricing-left h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 30px;
    text-align: left;
}

.modern-list {
    list-style: none;
}

.modern-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.modern-list i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.offer-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 20px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    background: var(--bg-card);
}

.installments-text {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.price-value {
    font-size: 5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
}

.price-value .cents {
    font-size: 2rem;
}

.cash-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .two-col-pricing {
        flex-direction: column;
    }
    .pricing-left, .pricing-right {
        padding: 30px 20px;
        border-right: none;
    }
    .pricing-left {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .price-value {
        font-size: 4rem;
    }
}

/* =========================================
   DIVIDEND FLOW (NOVA SEÇÃO VISUAL)
   ========================================= */
.dividend-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.flow-item {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 12px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.flow-item:hover {
    transform: translateY(-5px);
}

.flow-item.highlight-item {
    border-color: var(--highlight);
    box-shadow: 0 0 25px rgba(0, 208, 132, 0.15);
    background: linear-gradient(145deg, rgba(21, 26, 34, 1) 0%, rgba(0, 208, 132, 0.05) 100%);
}

.flow-icon {
    font-size: 3.5rem;
    color: var(--highlight);
    margin-bottom: 15px;
}

.flow-item h4 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.flow-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
}

.arrow-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.flow-arrow i {
    font-size: 2rem;
    color: var(--highlight);
}

@media (max-width: 768px) {
    .flow-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

/* =========================================
   GARANTIA
   ========================================= */
.guarantee {
    background-color: var(--accent-color);
    color: #000;
    padding: 50px 0;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
}

.guarantee-icon {
    font-size: 5rem;
}

.guarantee-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.guarantee-text p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

/* =========================================
   FAQ
   ========================================= */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    background-color: var(--bg-card);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-muted);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background-color: var(--bg-darker);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* =========================================
   DEPOIMENTOS
   ========================================= */
.testimonials-section {
    padding: 80px 0;
}
.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.testi-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid rgba(0, 208, 132, 0.2);
    transition: transform 0.3s ease;
}
.testi-item:hover {
    transform: translateY(-10px);
    border-color: var(--highlight);
    box-shadow: 0 15px 40px rgba(0, 208, 132, 0.2);
}
.testi-item img {
    width: 100%;
    display: block;
}

/* =========================================
   CERTIFICADO
   ========================================= */
.certificate-section {
    padding: 80px 0;
}
.cert-container {
    display: flex;
    align-items: center;
    gap: 50px;
}
.cert-text {
    flex: 1;
}
.cert-image-wrapper {
    flex: 1;
    perspective: 1000px;
}
.cert-mockup {
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
    box-shadow: -20px 20px 30px rgba(0,0,0,0.6), 0 0 40px rgba(0, 208, 132, 0.2);
    border-radius: 10px;
    border: 5px solid #fff;
    background: #fff;
}
.cert-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}
.cert-mockup img {
    width: 100%;
    display: block;
    border-radius: 5px;
}

/* =========================================
   RESPONSIVIDADE (MOBILE)
   ========================================= */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .text-center-mobile { text-align: center; }
    .justify-center-mobile { justify-content: center; }
    .hero-text { order: 1; }
    .about-content { grid-template-columns: 1fr; text-align: center; }
    .guarantee-content { flex-direction: column; text-align: center; }
    .comp-card.good { transform: scale(1); }
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll !important;
    }
    
    .hero {
        background-position: top center;
        background-image: url('../assets/images/banner mobile.jpg');
        padding: 250px 20px 40px 20px;
        display: block;
        min-height: auto;
    }
    .hero h1 { font-size: 1.6rem; }
    .hero p { font-size: 0.95rem; }
    
    .security-badges {
        flex-wrap: wrap;
        white-space: normal;
        justify-content: center;
        text-align: center;
    }
    
    .hero-logo {
        max-width: 100px;
        margin: 0 auto 20px auto;
    }
    
    .badge-separator { display: inline-block; margin: 0 4px; }
    
    .badge-item { margin: 0; }
    
    .security-badges {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        font-size: 0.65rem;
        gap: 0;
        width: 100%;
    }
    
    .section-title h2 { font-size: 2rem; }
    .pricing-card { padding: 30px 20px; }
    .cta-button { font-size: 0.95rem; padding: 15px 20px; }
    .swiper-slide { width: 280px; }
    
    .cert-container {
        flex-direction: column;
        text-align: center;
    }
    .cert-mockup {
        transform: rotateY(0deg) rotateX(0deg);
        margin-top: 30px;
        box-shadow: none;
    }
    
    .testi-item {
        min-width: 100%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    .dividend-flow {
        flex-direction: column;
    }
    
    .pulse-cta {
        animation: none;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 15px 0;
    }
}
