/* Variáveis para cores */
:root {
    /* Cor do botão "Assinar" */
    --green-main: #02b14b;  
    --green-button-hover: #02b14b;
    
    --text-color: #343a40; 
    --gray-light: #f8f9fa;
    --white: #ffffff;
    --blue-point: #02b14b;
    
    /* Variáveis do Tema Claro */
    --body-bg: var(--white);
    --card-bg: var(--white);
    --text-primary: var(--text-color);
    --text-secondary: #6c757d;
    --header-footer-bg: var(--green-main);
    --header-footer-text: var(--white);
    --shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* ------------------- Modo Escuro ------------------- */
.dark-mode {
    --body-bg: #1c1c1c; /* Fundo escuro */
    --card-bg: #2d2d2d; /* Fundo dos cartões escuro */
    --text-primary: #f8f9fa; /* Texto claro */
    --text-secondary: #adb5bd; /* Texto secundário */
    /* Header/Footer mantêm o verde */
    --shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
/* ---------------------------------------------------- */


/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--body-bg); /* Usa variável de tema */
    color: var(--text-primary); /* Usa variável de tema */
    transition: transform 1s ease, box-shadow 0.3s ease;
}
body:hover {
    transform: translateY(-5px); 
    
    /* Efeito de sombra para destacar */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
    
    /* Opcional: Aumentar o brilho/cor do fundo ou borda */
    border-color: #02b14b;
}

/* ------------------- Header ------------------- */

.header {
    /* COR ATUALIZADA: IGUAL AO BOTÃO "ASSINAR" */
    background-color: var(--header-footer-bg); 
    color: var(--header-footer-text);
    padding: 12px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row; /* Garante que os itens fiquem em linha (padrão do flex, mas bom especificar) */
    align-items: center; /* Centraliza verticalmente os itens, se tiverem alturas diferentes */
    justify-content: space-around; /* Opcional: distribui o espaço entre os itens */
    gap: 20px;
    

}
.logo-container {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
}
.icon-net {
    height: 32px;
    width: 32px;
    border-radius: 32px;
    vertical-align: middle;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px; /* Espaço entre o botão de tema e o telefone */
}
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fdfdfd;
}
.menu {
    /* Mude as propriedades de posicionamento fixo para estático ou relativo */
    /* Isso remove ele do canto inferior direito */
    position: static; /* Volta a ser um elemento normal no fluxo do documento */
    bottom: auto; /* Remove a posição inferior */
    right: auto; /* Remove a posição direita */

    /* Mantenha o estilo visual do botão, se desejar */
    background: #02b14b;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    /* Adicione uma margem à esquerda se precisar de mais espaço em relação ao logo */
    /* margin-left: 20px; */ 
}

/* O resto do CSS do hambúrguer pode ser mantido */
.hamburguer {
    position: relative;
    display: block;
    background: #ffffff;
    width: 30px;
    height: 3px;
    border-radius: 20px;
    top: 29px; /* Mantenha para centralizar verticalmente */
    left: 15px; /* Mantenha para centralizar horizontalmente */
    transition: 0.5s ease-in-out;
}

.hamburguer:before,
.hamburguer:after {
    background: #ffffff;
    content: '';
    display: flex;
    width: 30px;
    height: 3px;
    border-radius: 20px;
    position: relative;
    transition: 0.5s ease-in-out;
}

.hamburguer:before {
    top: -10px;
}

.hamburguer:after {
    bottom: -10px;
}
input {
  display: flex;
}
.logo {
    font-weight: 900;
    font-size: 1.50rem;
    letter-spacing: 0.5px;
}

.phone-link {
    color: var(--header-footer-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

.phone-link i {
    color: var(--header-footer-text);
    margin-right: 5px;
}

/* Botão de Tema */
.btn-theme-toggle {
    background: none;
    border: 1px solid var(--header-footer-text);
    color: var(--header-footer-text);
    padding: 8px;
    border-radius: 38px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.btn-theme-toggle i {
    margin-right: 5px;
}

/* ------------------- Main/Hero ------------------- */

.hero {
    text-align: center;
    padding: 50px 0 50px;
}

.hero h1 {
    font-size: 2.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.hero p {
    font-size: 1rem;
    color: var(--text-secondary); /* Usa variável de tema */
    max-width: 600px;
    margin: 0 auto;
}

/* ------------------- Plans Section ------------------- */

.plans {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 80px;
    position: relative;
    padding: 0 50px;
}

.plan-card {
    background-color: var(--card-bg); /* Usa variável de tema */
    border-radius: 8px;
    box-shadow: var(--shadow); /* Usa variável de tema */
    padding: 20px;
    width: 48%; 
    max-width: 450px;
    text-align: left;
    position: relative;
    transition: background-color 0.3s, box-shadow 0.3s;
    border: 1px solid #ccc; /* Borda inicial cinza ou transparente */
    transition: border-color 0.3s ease;
}
.plan-card:hover {
    border-color: #1E8449;
}
.plan-card h2 {
    font-size: 1.4rem;
    margin: 15px 0 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

/* Badges (Tags de Wi-Fi) */
.badge {
    display: inline-block;
    color: var(--white);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-wifi {
    background-color: var(--green-main);
}

.dual-badge {
    display: flex;
    gap: 8px;
}

.badge-point {
    background-color: var(--blue-point); 
}

/* Lista de Recursos */
.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-card ul li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--text-secondary); /* Usando secundário para a lista */
    font-weight: 500;
}

.plan-card ul li i {
    color: var(--green-main);
    margin-right: 10px;
}

/* Preço */
.price {
    font-size: 1.1rem;
    font-weight: normal; 
    margin-bottom: 15px; 
    color: var(--text-primary);
    line-height: 1;
}

.price span {
    font-size: 2.7rem;
    font-weight: 900; 
    display: inline; 
    line-height: 1.2;
}

/* Botão Assinar */
.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn.primary {
    background-color: var(--green-main);
    color: var(--white);
    border-radius: 16px;
}

.btn.primary:hover {
    background-color: rgb(126, 255, 126); 
}

/* Setas de navegação */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    z-index: 10;
    color: var(--text-secondary);
    font-size: 0.7rem;
    transition: background-color 0.3s, color 0.3s;
}

.nav-arrow.left {
    left: 25px;
}

.nav-arrow.right {
    right: 25px;
}

/* ------------------- Footer ------------------- */

.footer {
    /* COR ATUALIZADA: IGUAL AO BOTÃO "ASSINAR" */
    background-color: var(--header-footer-bg); 
    color: var(--header-footer-text);
    padding: 30px 20px 10px;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Linha clara */
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.footer-section h4 {
    color: var(--header-footer-text);
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-section p {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.8);
}

/* Links Sociais */
.social-links {
    text-align: right;
}
.social-links a {
    color: var(--header-footer-text);
    font-size: 1.4rem;
    margin-left: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: rgb(145, 255, 169);
    font-size: 1.8rem;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    transition: 2s;
}

/* ------------------- Responsividade ------------------- */

@media (max-width: 900px) {
    .plans {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
    }

    .plan-card {
        width: 95%;
        max-width: none;
    }

    .nav-arrow {
        display: none; 
    }
}

@media (max-width: 650px) {
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        width: 100%;
        box-sizing: border-box;
    } 
    
    .header-actions {
        display: flex;
        align-items: center; 
        gap: 15px;
    }

   
    
    .phone-link, .btn-theme-toggle {
        text-decoration: none;
        display: flex;
        align-items: center;
        
}
    .phone-link i {
        margin-right: 5px;
    }
}
@media (max-width: 576px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-section {
        margin-right: 0;
    }
    
    .social-links {
        text-align: center;
    }

    .social-links a {
        margin: 0 8px;
    }
}
