/* =========================================
   VARIÁVEIS E RESET
   ========================================= */
:root {
    --primary-color: #2B558C; /* Azul Solnet */
    --primary-dark: #1a365c;
    --accent-color: #F2AC29; /* Amarelo Logo */
    --accent-hover: #d99616;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* =========================================
   HEADER & NAVEGAÇÃO
   ========================================= */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container img {
    height: 50px;
    width: auto;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none; /* Escondido no desktop */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* =========================================
   BOTÕES
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(242, 172, 41, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 80px; /* Compensa o header fixo */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 85, 140, 0.95), rgba(26, 54, 92, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
}

.badge-hero {
    background-color: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero .highlight {
    color: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

/* =========================================
   PLANOS SECTION
   ========================================= */
.plans-section {
    padding: 80px 0;
    background-color: var(--white);
}

.plans-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.plan-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 300px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid #eee;
}

.plan-card:hover {
    transform: translateY(-10px);
}

/* Destaque para o plano mais vendido */
.plan-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(43, 85, 140, 0.2);
    z-index: 2;
}

.plan-card.featured:hover {
    transform: scale(1.08);
}

.tag-featured {
    background-color: var(--accent-color);
    color: var(--white);
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px;
    text-transform: uppercase;
}

.plan-header {
    background-color: var(--primary-color);
    padding: 30px 20px;
    color: var(--white);
    text-align: center;
}

.plan-card.featured .plan-header {
    background-color: var(--primary-dark);
}

.plan-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.currency { font-size: 1.2rem; margin-top: 5px; }
.value { font-size: 3.5rem; font-weight: 700; line-height: 1; }
.cents { font-size: 1.2rem; margin-top: 5px; font-weight: 700; }
.period { align-self: flex-end; margin-bottom: 5px; margin-left: 5px; opacity: 0.8; }

.plan-body {
    padding: 30px;
    text-align: center;
}

.speed {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.features {
    text-align: left;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.features li i {
    color: var(--accent-color); /* Checkmark verde seria comum, mas amarelo combina com a marca */
    margin-right: 10px;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #e9ecef;
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
}

.btn-plan:hover {
    background-color: #dee2e6;
}

.plan-card.featured .btn-plan {
    background-color: var(--accent-color);
    color: var(--white);
}

.plan-card.featured .btn-plan:hover {
    background-color: var(--accent-hover);
}

/* =========================================
   SOBRE / FEATURES
   ========================================= */
.features-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.feature-items {
    margin-top: 30px;
}

.feature-items .item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-items .item i {
    font-size: 2rem;
    color: var(--accent-color);
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.feature-items h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.img-responsive {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* =========================================
   CONTATO
   ========================================= */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    padding: 50px;
    background: var(--primary-color);
    color: var(--white);
}

.contact-info h2 {
    color: var(--white);
}

.info-list {
    margin-top: 30px;
}

.info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-list i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-map iframe {
    height: 100%;
    min-height: 400px;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background-color: #222;
    color: #ccc;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid #444;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(100); /* Torna a logo branca se for transparente */
}

.footer-links h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    background-color: #1a1a1a;
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

/* =========================================
   RESPONSIVIDADE (MOBILE)
   ========================================= */
@media (max-width: 992px) {
    .plan-card.featured {
        transform: none;
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    
    .header-content {
        padding: 0 20px;
    }

    .desktop-nav {
        display: none; /* Esconde menu padrão */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    /* Classe para ativar menu via JS */
    .desktop-nav.active {
        display: block;
        animation: slideDown 0.3s ease;
    }

    .desktop-nav ul {
        flex-direction: column;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block; /* Mostra botão hambúrguer */
    }

    .header-actions .btn {
        display: none; /* Esconde botão Área do Cliente no mobile pra ganhar espaço */
    }

    .hero { margin-top: 80px; text-align: center; }
    .hero-btns { justify-content: center; }
    
    .features-content, .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature-image { order: -1; } /* Imagem acima do texto no mobile */
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   PÁGINA DE ERRO (erro.php)
   ========================================= */
.error-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    text-align: center;
}

.error-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
    border-top: 5px solid var(--primary-color);
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.error-code {
    font-size: 5rem;
    line-height: 1;
    color: #ddd;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.error-card h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.error-card p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Ajuste Mobile */
@media (max-width: 480px) {
    .error-code { font-size: 3.5rem; }
    .error-card { padding: 30px 20px; }
}

/* =========================================
   NOVOS ESTILOS (ADD-ON CORRIGIDO)
   ========================================= */

/* Correção de Contraste: Banner Azul com Texto Branco */
.cta-banner { 
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark)); 
    padding: 50px 0; 
    margin: 40px 0; 
}
.cta-text h3 { 
    color: #ffffff !important; /* Força branco */
    margin-bottom: 10px;
}
.cta-text p { 
    color: #f0f0f0 !important; /* Branco levemente off-white */
    font-size: 1.1rem;
}

/* Streaming Bar */
.streaming-bar { background: #1a1a1a; color: #fff; padding: 20px 0; text-align: center; }
.streaming-bar p { margin-bottom: 15px; font-weight: 300; opacity: 0.8; font-size: 0.9rem; }
.app-icons { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.app-icons span { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.95rem; }
.app-icons i { color: var(--accent-color); }

/* Vantagens Grid */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.feat-box { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.feat-box i { font-size: 1.5rem; color: var(--accent-color); margin-bottom: 10px; display: block; }
.feat-box strong { display: block; margin-bottom: 5px; color: var(--primary-color); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px; }
.faq-item { background: var(--bg-light); padding: 25px; border-radius: 10px; border-left: 4px solid var(--accent-color); }
.faq-item h4 { color: var(--primary-color); margin-bottom: 10px; }

/* Mapa */
.contact-map iframe {
    border-radius: 15px;
    box-shadow: var(--shadow);
    background: #eee; /* Cor de fundo enquanto carrega */
}

/* Footer Ajustado */
.footer-top { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 40px; 
    padding-bottom: 40px; 
    border-bottom: 1px solid #333; 
    margin-bottom: 20px; 
}
.footer-col h3 { 
    color: white; 
    margin-bottom: 20px; 
    font-size: 1.1rem; 
}
.credits { 
    margin-top: 10px; 
    font-size: 0.8rem; 
    opacity: 0.8; 
}

/* Mobile */
@media (max-width: 768px) {
    .cta-content { text-align: center; justify-content: center; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
}

/* =========================================
   PLANOS SECTION (V4 - CORREÇÃO DE PROPORÇÃO)
   ========================================= */
.plans-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

/* Grid Ajustado: Cards mais largos e menos altos */
.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    align-items: flex-start; /* Impede que estiquem para ter a mesma altura */
    max-width: 1100px; /* Segura a largura total para não espalhar demais */
    margin: 0 auto;
}

/* Estilo Base do Card */
.plan-card.card-blue, .plan-card.card-dark-blue {
    background: var(--primary-color);
    color: white;
    border-radius: 15px; /* Bordas um pouco menos redondas para economizar espaço */
    overflow: visible; /* Necessário para a faixa flutuar para fora */
    box-shadow: 0 10px 30px rgba(43, 85, 140, 0.25);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px; /* Espaço para a faixa flutuante não cortar */
}

/* Card Empresarial (Dark) */
.plan-card.card-dark-blue {
    background: var(--primary-dark);
}

.plan-card:hover {
    transform: translateY(-5px);
}

/* Header Compacto */
.plan-header {
    padding: 25px 20px 15px; /* Menos padding vertical */
    text-align: center;
}

.plan-header h3 {
    color: white;
    font-size: 1.4rem; /* Fonte levemente menor */
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Badge de Velocidade */
.speed-highlight {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent-color);
}
.speed-turbo { background: var(--accent-color); color: var(--primary-color); }
.speed-biz { color: #fff; }

/* Preço Compacto */
.plan-price {
    text-align: center;
    padding: 15px; /* Reduzido de 20px/35px */
    background: rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.plan-price.price-biz { padding: 25px 15px; }

.plan-price .currency { font-size: 1.2rem; vertical-align: top; opacity: 0.8; }
.plan-price .value { font-size: 3.5rem; /* Reduzido de 4.5rem */ font-weight: 800; line-height: 1; color: var(--accent-color); }
.plan-price.price-biz .value { font-size: 2.2rem; color: white; }
.plan-price .cents { font-size: 1.2rem; font-weight: 700; }
.plan-price .period { display: block; font-size: 0.8rem; opacity: 0.7; margin-top: 2px; text-transform: uppercase; }

/* Lista de Features Compacta */
.plan-features {
    padding: 20px 25px; /* Reduzido */
}
.plan-features ul li {
    margin-bottom: 12px; /* Reduzido de 18px */
    font-size: 0.95rem; /* Fonte mais delicada */
    display: flex;
    align-items: center;
    line-height: 1.3;
    color: rgba(255,255,255,0.9);
}
.plan-features i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-right: 12px;
    min-width: 20px;
    text-align: center;
}

/* Botões */
.plan-action {
    padding: 0 25px 25px;
}
.btn-plan-fill, .btn-plan-outline {
    display: block;
    width: 100%;
    padding: 12px; /* Botão mais fino */
    text-align: center;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.btn-plan-fill {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(242, 172, 41, 0.3);
}
.btn-plan-fill:hover { background: #fff; transform: scale(1.02); }

.btn-plan-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}
.btn-plan-outline:hover { background: var(--accent-color); color: var(--primary-color); }
.btn-biz { color: white; border-color: rgba(255,255,255,0.4); }
.btn-biz:hover { background: white; color: var(--primary-dark); border-color: white; }


/* =========================================
   CORREÇÃO DA FAIXA "MAIS VENDIDO" (FLUTUANTE)
   ========================================= */
.featured-pop {
    transform: scale(1.05); /* Destaque sutil */
    border: 2px solid var(--accent-color);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.ribbon-pop {
    position: absolute;
    top: -15px; /* Flutua para fora do card (Pulo do Gato) */
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 20px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    white-space: nowrap;
    z-index: 10;
    border: 2px solid var(--primary-color); /* Borda para separar do fundo */
}

/* Ajuste Mobile */
@media (max-width: 991px) {
    .grid-3-cols { grid-template-columns: 1fr; max-width: 400px; }
    .featured-pop { transform: none; margin: 30px 0; }
    .plan-card { margin-top: 0; }
}

/* =========================================
   BANNER CENTRAL DO CLIENTE (PREMIUM)
   ========================================= */
.cta-banner {
    /* Gradiente Profundo */
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a365c 100%);
    padding: 60px 0;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--accent-color); /* Detalhe laranja no topo */
    border-bottom: 4px solid var(--accent-color);
}

/* Padrão de fundo sutil (Bolinhas transparentes) */
.cta-bg-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2; /* Fica acima do padrão de fundo */
    gap: 30px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Ícone Grande Translúcido */
.cta-icon-box i {
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.2);
    transform: rotate(-10deg);
}

.cta-text h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0;
}

/* Botão Branco de Alto Contraste */
.btn-white {
    background: #ffffff;
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-white:hover {
    background: var(--accent-color); /* Vira Laranja ao passar o mouse */
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(242, 172, 41, 0.4);
}

/* Animaçãozinha de pulso no botão */
@keyframes pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.pulse-effect {
    animation: pulse-white 2s infinite;
}

/* Responsivo do Banner */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    .cta-left {
        flex-direction: column;
    }
    .cta-icon-box i {
        font-size: 3rem;
        margin-bottom: 10px;
    }
    .cta-text h3 {
        font-size: 1.5rem;
    }
    .btn-white {
        width: 100%;
        justify-content: center;
    }
}