/* Reset básico e Fontes */
* {box-sizing: border-box;margin: 0;padding: 0;}
body {
    font-family: 'Poppins', sans-serif; /* Fonte geral */
    line-height: 1.6;
    background-color: #ffffff; /* Fundo Branco */
    color: var(--text-primary); /* Texto Roxo Principal */
    overflow-x: hidden; /* Previne scroll horizontal indesejado */
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- Variáveis de Cor --- */
:root {
    --color-primary: #1d0a5d; /* Roxo/Índigo */
    --color-accent: #ff5d00;  /* Laranja Vibrante */
    --color-accent-hover: #e64a00; /* Laranja mais escuro para hover */
    --bg-primary: #ffffff;
    --bg-secondary: #f4f4f9; /* Fundo claro sutil para cards residenciais */
    --text-primary: #1d0a5d;
    --text-secondary: #555566; /* Texto secundário */
    --border-color: rgba(29, 10, 93, 0.15); /* Borda sutil roxa */
    --shadow-color: rgba(29, 10, 93, 0.1); /* Sombra suave roxa */
    --button-text-on-accent: #ffffff;
    --title-font: 'Orbitron', sans-serif; /* Nova fonte para títulos */
}

/* --- HERO SPLIT SCREEN - ORANGE THEME --- */
.hero-split.hero-orange-theme {
    display: flex;
    min-height: 70vh; /* Ajuste a altura conforme necessário */
    /* Colunas filhas definem a cor ou imagem de suas áreas */
}

/* Coluna Esquerda: Conteúdo Laranja */
.hero-split.hero-orange-theme .hero-split-content {
    flex-basis: 50%;
    padding: 5% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff; /* <<< TEXTO BRANCO */
    background-color: var(--color-accent); /* <<< FUNDO LARANJA AQUI */
    /* Removemos o background-color daqui, pois está no pai (.hero-split.hero-orange-theme) */
}

.hero-split.hero-orange-theme .hero-split-logo {
    max-width: 170px;
    margin-bottom: 35px;
    /* Descomente abaixo se estiver usando logo escura e precisar do filtro */
    /* filter: brightness(0) invert(1); */
}
/* Se estiver usando uma classe para logos que precisam de filtro: */
/* .hero-split.hero-orange-theme .logo-needs-filter {
     filter: brightness(0) invert(1);
} */

.hero-split.hero-orange-theme .hero-split-headline {
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 5em;
    letter-spacing: -0.03em;
    background: linear-gradient(-90deg, #ffffff, #e5d3af);
    background-size: 100%;
    background-position: 0 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.hero-split.hero-orange-theme .hero-split-subheadline {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9); /* <<< Texto ligeiramente off-white */
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.6;
}

/* CTA Button Styling on Orange Background */
.hero-split.hero-orange-theme .hero-cta-on-orange {
    /* Herda estilos base de .cta-button (padding, font, etc.) */
    background-color: transparent;
    border: 2px solid #ffffff; /* Borda branca */
    color: #ffffff; /* Texto branco */
    box-shadow: none; /* Remove sombra padrão se houver */
}
.hero-split.hero-orange-theme .hero-cta-on-orange:hover {
    background-color: rgba(255, 255, 255, 0.15); /* Preenchimento branco sutil no hover */
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px); /* Mantém o lift sutil */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra sutil opcional no hover */
}

/* Coluna Direita: Imagem de Fundo (Agora contém a tag img) */
.hero-split.hero-orange-theme .hero-split-image {
    flex-basis: 50%;
    padding: 40px; /* Espaço ao redor da imagem */
    display: flex; /* Ativa flexbox para centralizar o conteúdo (a imagem) */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    overflow: hidden; /* Garante que a imagem seja cortada com border-radius em mobile */
    background-color: var(--color-accent); /* <<< FUNDO LARANJA AQUI */
}

.hero-split.hero-orange-theme .hero-split-image img {
     max-width: 90%; /* Controla o tamanho máximo da logo dentro do container */
     max-height: 90%; /* Controla a altura máxima */
     height: auto;
     object-fit: contain; /* Redimensiona a imagem para caber sem cortar ou distorcer */
     display: block; /* Garante que a imagem se comporte como bloco */
}


/* --- Botões CTA (Geral) --- */
.cta-button {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--button-text-on-accent);
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95em;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 93, 0, 0.3);
}

.cta-button-plan { /* Botão nos cards */
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    padding: 10px 24px;
    margin-top: 0; /* Espaço controlado pela margem inferior do preço */
    font-size: 0.9em; /* Um pouco menor que o botão principal */
}

.cta-button-plan:hover {
    background-color: rgba(255, 93, 0, 0.08);
    color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    box-shadow: none;
}

/* --- Seções Padrão (Planos, Localidades, Contato) --- */
.plan-section,
.localidades-section,
.contato-section {
    padding: 70px 0;
    text-align: center;
}
/* Fundo alternado para planos corporativos */
.alt-bg {
    background-color: var(--bg-secondary);
}

/* Títulos das Seções (h2) - Fonte Orbitron e Tamanho Consistente */
.plan-section h2,
.localidades-section h2,
.contato-section h2 {
    font-family: var(--title-font);
    font-size: 2.6em;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Linha Laranja Abaixo dos Títulos */
.plan-section h2::after,
.localidades-section h2::after,
.contato-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: var(--color-accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 45px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid dos Planos */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* --- Cards de Planos --- */
.plan-card {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px var(--shadow-color);
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Fundo padrão (branco) */
.plan-card {
    background-color: var(--bg-primary);
}

/* Fundo APENAS para cards residenciais */
.plan-card.residential {
    background-color: var(--bg-secondary);
}


.plan-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
    box-shadow: 0 6px 18px var(--shadow-color), 0 0 10px rgba(255, 93, 0, 0.15);
}

/* Cabeçalho do Card (Velocidade) */
.plan-card .plan-header {
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

/* Linha laranja abaixo do header do card */
.plan-card .plan-header::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.plan-card .plan-header h3 { /* Número da Velocidade */
    font-size: 4.2em;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: -1px;
}

.plan-card .plan-header .unit { /* "MEGA" */
    font-size: 1em;
    font-weight: 400;
    display: block;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 0px;
    letter-spacing: 0.5px;
}

.plan-card .plan-description { /* Descrição (planos corp) */
    font-size: 0.85em;
    color: var(--text-secondary);
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Lista de Features (Ícones + Texto) */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 25px 0; /* Margem vertical normal */
    text-align: left; /* <<< Garante alinhamento esquerdo */
}

.feature-item {
    display: flex;
    align-items: flex-start; /* Alinha pelo topo */
    font-size: 1em; /* <<< Tamanho aumentado */
    color: var(--text-secondary);
    text-align: left; /* <<< Garante alinhamento esquerdo */
    width: 90%;
    height: 45px;
}

.span.feature-item-none-img {
    margin-left: 45px;
}

.feature-item img {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    
    
     /* <<< Borda sutil na imagem */
     /* <<< Borda arredondada na imagem */
     /* Adiciona um pequeno padding interno se quiser afastar a borda do ícone */
     /* Fundo branco sutil para a borda aparecer em fundos coloridos */
    border-radius: 8px;
    padding: 3px;
    border: none;
}

.feature-item span {
    line-height: 2.4;
}
.feature-item .feature-note {
     font-weight: bold;
     color: var(--color-accent);
     margin: 0 5px;
}


/* Preço no Card - Reestruturado */
.plan-price {
    font-size: 1.1em;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    line-height: 1;
    margin-top: auto;      /* Empurra para baixo */
    margin-bottom: 10px;   /* Espaço antes do botão */
    padding-top: 15px;     /* Espaço acima do preço */
}

.price-value {
    font-size: 2.4em;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 0.85;
    margin-left: 2px;
}

.price-suffix {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 3px;
    line-height: 1.3;
    transform: translateY(-1px);
}

.price-cents {
    font-size: 0.9em;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.price-unit-month {
    font-size: 0.75em;
    font-weight: 400;
    color: var(--text-secondary);
    display: block;
    margin-top: -1px;
}

/* --- Seção Localidades --- */
.localidades-section {
    background-color: var(--bg-primary);
}
.location-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.location-list li {
    background-color: rgba(255, 93, 0, 0.1);
    color: var(--color-accent-hover);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9em;
    font-weight: 500;
    border: 1px solid rgba(255, 93, 0, 0.3);
    transition: background-color 0.3s ease;
}
.location-list li:hover {
    background-color: rgba(255, 93, 0, 0.15);
}
.localidades-section .cta-button { /* Botão nesta seção */
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}
.localidades-section .cta-button:hover {
     background-color: rgba(255, 93, 0, 0.08);
     color: var(--color-accent-hover);
     border-color: var(--color-accent-hover);
}

/* --- Seção Contato --- */
.contato-section {
    background-color: #eef0f6; /* Tom claro distinto */
    padding: 70px 0 60px 0;
    text-align: center;
}
.contato-section h2 {
     text-align: center;
     color: var(--text-primary);
     margin-bottom: 50px;
}
.contato-section h2::after { background-color: var(--color-accent); }

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: left;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.contato-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4em;
    color: var(--color-accent);
    margin-bottom: 12px;
    font-weight: 600;
}
.contato-info p { margin-bottom: 8px; line-height: 1.7; color: var(--text-secondary); }
.contato-info a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 93, 0, 0.5);
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    font-weight: 500;
}
.contato-info a:hover { color: var(--color-accent-hover); border-bottom-color: var(--color-accent-hover); }
.contato-info.addresses strong { color: var(--text-primary); font-weight: 600; }


/* --- Footer --- */
.footer {
    background-color: var(--color-primary); /* Azul/Índigo */
    color: #e0e0e0; /* Texto cinza claro */
    text-align: center;
    padding: 30px 0;
    margin-top: 0; /* Remove espaço acima */
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Borda branca transparente */
    font-size: 0.9em;
}

.footer a {
    color: #ffffff; /* Links brancos */
    text-decoration: underline;
}
.footer a:hover {
    color: var(--color-accent); /* Laranja no hover */
}

/* --- Responsividade --- */
@media (max-width: 1200px) {
     .container { max-width: 960px;}
     .hero-split.hero-orange-theme .hero-split-headline { font-size: 2.8em; } /* Ajuste hero */
     .plan-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
     .plan-card .plan-header h3 { font-size: 4em; }
}
@media (max-width: 992px) {
     .container { max-width: 720px; }

     .hero-split.hero-orange-theme .hero-split-headline { font-size: 2.6em; }
     .hero-split.hero-orange-theme .hero-split-subheadline { font-size: 1.0em; }
     /* Ajusta padding do hero em telas menores */
     .hero-split.hero-orange-theme .hero-split-content { padding: 4% 6%; }
     .hero-split.hero-orange-theme .hero-split-image { padding: 4% 6%; }


     .plan-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px;}
     .plan-card .plan-header h3 { font-size: 3.8em; }
     .plan-section h2, .localidades-section h2, .contato-section h2 { font-size: 2.4em; }
}
@media (max-width: 768px) {
    .container { max-width: 540px; padding: 0 15px;}

    .hero-split.hero-orange-theme {
        flex-direction: column; /* Stack */
        min-height: auto; /* Altura automática quando empilhado */
    }
    .hero-split.hero-orange-theme .hero-split-content {
        flex-basis: auto; /* Não mais 50% */
        padding: 60px 15px; /* Padding ajustado para mobile */
        text-align: center;
        align-items: center;
        order: 1; /* <<< Conteúdo AGORA acima da imagem */
    }
     /* Centraliza logo no modo empilhado */
     .hero-split.hero-orange-theme .hero-split-logo { margin-left: auto; margin-right: auto;}

    .hero-split.hero-orange-theme .hero-split-headline { font-size: 2.2em; }
    .hero-split.hero-orange-theme .hero-split-subheadline { max-width: none; }
    .hero-split.hero-orange-theme .hero-cta-on-orange { font-size: 1em; padding: 12px 25px;} /* Ajusta CTA hero no mobile */

    .plan-card.residential {padding: 15px 55px; min-height: 505px;}


    .hero-split.hero-orange-theme .hero-split-image {
        flex-basis: auto; /* Não mais 50% */
        min-height: 300px; /* Altura mínima para a imagem em mobile */
        order: 2; /* <<< Imagem AGORA abaixo do conteúdo */
        padding: 20px; /* Padding ajustado para mobile */
        margin: 20px; /* Adiciona margin e centraliza o bloco da imagem */
        border-radius: 6px; /* Borda arredondada para a imagem em mobile */
        /* O fundo laranja já está no pai (.hero-split.hero-orange-theme) */
        /* background-color: rgba(255, 255, 255, 0.1); */ /* Adiciona um fundo sutil branco no container da imagem para contraste */
     }
    /* Garante que a imagem dentro do container em mobile respeite o padding e margin */
     .hero-split.hero-orange-theme .hero-split-image img {
         max-width: 100%; /* Permite que a imagem preencha o container menos o padding */
         max-height: 100%;
         margin: 0 auto; /* Centraliza a imagem dentro do div flex */
     }


    /* Outras seções */
    .plan-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .plan-section h2, .localidades-section h2, .contato-section h2 { font-size: 2.2em; }
    .plan-card .plan-header h3 { font-size: 3.5em; }
    /* Removido: Centralização de features e preço nos cards em telas pequenas */
    /*.plan-card .plan-features { text-align: center; }
    .feature-item { justify-content: center; }*/
    .plan-price { justify-content: center;} /* Manter preço centralizado */

    .cta-button { padding: 10px 20px; font-size: 0.9em;}
    .cta-button-plan { font-size: 0.85em; padding: 8px 18px;} /* Botão plano um pouco menor */

    .location-list li { font-size: 0.85em; padding: 6px 15px;}
    .contato-grid { grid-template-columns: 1fr; gap: 25px; } /* Added gap for 1fr grid */
    .contato-info { margin-bottom: 25px; } /* Adjusted bottom margin */
    .contato-info:last-child { margin-bottom: 0;} /* Remove margin from last contact info block */
    .contato-info h3 { text-align: center; }
    .contato-info p, .contato-info.addresses p { text-align: center; } /* Garante texto centralizado */
}
@media (max-width: 576px) {
     /* Ajustes de tamanho de fonte e padding para telas ainda menores */
     .hero-split.hero-orange-theme .hero-split-headline { font-size: 2.5em; }
     .hero-split.hero-orange-theme .hero-split-subheadline { font-size: 0.9em; }
     .hero-split.hero-orange-theme .hero-split-content { padding: 40px 15px; }
     .hero-split.hero-orange-theme .hero-split-image { padding: 15px; min-height: 250px;} /* Ajusta padding e altura mínima da imagem */

     .plan-grid { grid-template-columns: 1fr; max-width: 350px; margin-left: auto; margin-right: auto; }
     .plan-section h2, .localidades-section h2, .contato-section h2 { font-size: 2em; }
     .plan-card .plan-header h3 { font-size: 3.2em; }
     /* FEATURE ITEM - ALINHAMENTO ESQUERDO MANTIDO, NÃO CENTRALIZAR */
     /* .plan-card .plan-features { text-align: center; } Removeu justify-content */
     /* .feature-item { justify-content: center; } Removeu justify-content */

     .cta-button { padding: 10px 20px; font-size: 0.9em;}
     .cta-button-plan { font-size: 0.85em; padding: 8px 18px;} /* Botão plano um pouco menor */

     .location-list li { font-size: 0.85em; padding: 6px 15px;}
     /* Contato grid já ajustado para 1fr em 768px */
     .contato-info { margin-bottom: 20px; } /* Ajuste fino */
     .contato-info:last-child { margin-bottom: 0;}
     .contato-info h3 { font-size: 1.3em;}
}

/* Removido media query específica para features centralizadas que não são mais desejadas */
/*
@media (max-width: 576px) {
    ... (outros estilos) ...
    .plan-card .plan-features { text-align: center; justify-content: center; }
    .feature-item { justify-content: center; }
    ...
}
*/