/* =========================================== GLOBAL ================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

.btn-primary { 
    display: inline-block; 
    background: #0aa5ff; 
    color: white; 
    padding: 15px 40px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 1.1em; 
    transition: transform 0.3s, box-shadow 0.3s; 
} 

.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3); 
}

/* =========================================== MODAL DE SELEÇÃO DE CIDADE ==================================================== */
.city-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.city-modal.active {
    opacity: 1;
    visibility: visible;
}

.city-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.city-modal.active .city-modal-content {
    transform: scale(1);
}

.modal-city-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-city-header svg {
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.modal-city-header h2 {
    color: #0032ac;
    font-size: 2em;
    margin-bottom: 10px;
}

.modal-city-header p {
    color: #666;
    font-size: 1.1em;
}

.cities-grid-modal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.city-option {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 18px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95em;
    font-weight: 500;
    color: #333;
}

.city-option:hover {
    background: linear-gradient(135deg, #0aa5ff 0%, #0032ac 100%);
    color: white;
    border-color: #0aa5ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 165, 255, 0.3);
}

.city-option svg {
    flex-shrink: 0;
    stroke: #0032ac;
    transition: stroke 0.3s;
}

.city-option:hover svg {
    stroke: white;
}

/* ================= RESPONSIVIDADE MOBILE =========================== */
@media (max-width: 768px) {
    .cities-grid-modal {
        grid-template-columns: 1fr;
    }

    .city-modal-content {
        padding: 30px 20px;
    }

    .modal-header h2 {
        font-size: 1.6em;
    } 
}


/* ============================================== CABEÇALHO ============================================================ */
header {
    background: #0032ac;
    position: relative; /* cabeçalho fixo*/ 
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    background: #0032ac;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* Logo - tamanho fixo */
.header-top-container svg {
    flex-shrink: 0;
}

/* ============== SELETOR DE CIDADE NO HEADER ================== */
.city-selector {
    position: relative;
}

.city-selector-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.city-selector-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.city-selector-button svg {
    color: white;
    flex-shrink: 0;
}

.city-selector-button span {
    color: white;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.city-selector.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.city-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.city-selector.active .city-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-search {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-search svg {
    color: #666;
    flex-shrink: 0;
}

.dropdown-search input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #333;
}

.dropdown-search input::placeholder {
    color: #999;
}

.dropdown-options {
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-option {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
    font-size: 14px;
}

.dropdown-option:hover {
    background: linear-gradient(90deg, #0aa5ff 0%, #0032ac 100%);
    color: white;
}

.dropdown-option svg {
    flex-shrink: 0;
    stroke: #0032ac;
    transition: stroke 0.2s;
}

.dropdown-option:hover svg {
    stroke: white;
}

.dropdown-option.selected {
    background: #f0f8ff;
    color: #0032ac;
    font-weight: 600;
}

/* Scrollbar personalizada */
.dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dropdown-options::-webkit-scrollbar-thumb {
    background: #0aa5ff;
    border-radius: 3px;
}

.header-bottom {
    background: #f1f1f1;
    padding: 0 20px;
}

.header-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Menu Desktop */
nav {
    display: flex;
    gap: 30px;
    padding: 15px 0;
}

nav a {
    color: #002a8f;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    padding: 8px 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0aa5ff;
    transition: width 0.3s;
}

nav a:hover {
    color: #0aa5ff;
}

nav a:hover::after {
    width: 100%;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent; /* remove o highlight no iOS/Android */
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #002a8f;
    border-radius: 3px;
    transition: 0.3s;
}


/* ================= RESPONSIVIDADE MOBILE =========================== */
@media (max-width: 768px) {
    .header-top {
        padding: 12px 20px;
    }

    .header-top-container {
        gap: 10px;
    }

    .logo {
        height: 40px;
    }
    
    .city-selector {
        padding: 6px 12px;
    }

    .city-selector-button {
        padding: 8px 12px;
        gap: 6px;
    }

    .city-selector-button span {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 12px;
    }

    .dropdown-arrow {
        width: 14px;
        height: 14px;
    }

    .city-dropdown {
        min-width: 260px;
        right: 0;
        left: auto;
    }

    /* Header bottom com menu toggle visível */
    .header-bottom {
        padding: 0 15px;
    }

    .header-bottom-container {
        justify-content: space-between;
        padding: 12px 0;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 64px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 64px);
        background: #0032ac;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: right 0.3s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    nav.active {
        right: 0;
    }

    /* Links do menu mobile */
    nav a {
        color: white;
        font-size: 16px;
        padding: 15px 20px;
        border-radius: 10px;
        transition: all 0.3s;
    }

    nav a:hover {
        background: rgba(10, 165, 255, 0.1);
        color: #ffffff;
        transform: translateX(5px);
    }

    nav a::after {
        display: none;
    }

   /* Overlay quando menu está aberto */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        animation: fadeIn 0.3s;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

@media (max-width: 480px) {

    .header-top {
        padding: 10px 12px;
    }

    .header-top-container {
        gap: 8px;
    }

    .header-logo{
        width: 160px;
        height: 39px;
        margin-left: -1%;
    }

    /* seletor de cidade mais compacto */
    .city-selector-button {
        padding: 6px 10px;
        gap: 5px;
        border-radius: 20px;
    }

    .city-selector-button svg:first-child {
        width: 14px;
        height: 14px;
    }

    .city-selector-button span {
        font-size: 11px;
        max-width: 90px;
    }
    /* --------------------------------- */

    .dropdown-arrow {
        width: 12px;
        height: 12px;
    }

    .city-dropdown {
        min-width: 240px;
        border-radius: 12px;
    }

    .dropdown-search {
        padding: 12px;
    }

    .dropdown-search input {
        font-size: 13px;
    }

    .dropdown-option {
        padding: 10px 12px;
        font-size: 13px;
    }

    .dropdown-option svg {
        width: 16px;
        height: 16px;
    }

    .header-bottom {
        padding: 0 12px;
    }

    .header-bottom-container {
        padding: 10px 0;
    }

    .menu-toggle span {
        width: 26px;
        height: 2.5px;
    }

    nav {
        width: 260px;
        padding: 70px 25px 25px;
    }

    nav a {
        font-size: 15px;
        padding: 12px 15px;
    }
}


/* ======================================================== BANNER PRINCIPAL ============================================== */

.carousel {
    position: relative;
    height: 100%;
    aspect-ratio: 2560 / 932; /* mantém a proporção exata das imagens do banner*/
    overflow: hidden;
}

.slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 1s ease-in-out;
}

.slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}


/* Controles */
.prevBanner, 
.nextBanner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 50, 172, 0.7);
    color: white;
    border: none;
    font-size: 1.8em;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.prevBanner:hover, 
.nextBanner:hover {
    background: rgba(10, 165, 255, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.prevBanner:active,
.nextBanner:active {
    transform: translateY(-50%) scale(0.95);
}

.prevBanner { 
    left: 20px; 
}

.nextBanner { 
    right: 20px; 
}

/* Indicadores (dots) */
.dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dots span:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dots span.active {
    background: #0aa5ff;
    border-color: white;
    transform: scale(1.3);
}

/* ========================================================== 
   RESPONSIVIDADE 
========================================================== */

@media (max-width: 768px) {
    .carousel {
        aspect-ratio: 1440 / 904; /* Ajuste conforme suas imagens mobile */
    }

    .prevBanner,
    .nextBanner {
        width: 40px;
        height: 40px;
        font-size: 1.4em;
        display: none; /* ✅ esconde setas no mobile */
    }

    .prevBanner { left: 10px; }
    .nextBanner { right: 10px; }

    .dots {
        bottom: 15px;
    }

    .dots span {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .prevBanner,
    .nextBanner {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
        display: none; /* ✅ esconde setas no mobile */
    }

    .dots span {
        width: 8px;
        height: 8px;
    }
}

/* Landscape em mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .carousel {
        /* Proporção ideal para landscape */
        padding-bottom: 38%;
    }

    .banner-content {
        padding: 20px 30px;
    }

    .banner-content h1 {
        font-size: 1.8em;
    }

    .banner-content p {
        font-size: 0.95em;
    }

    .dots {
        bottom: 12px;
    }
}

/*
Aspect Ratio Technique

Exemplos comuns:

1920x1080 → 56.25% (16:9 - padrão)
1920x600 → 31.25% (banner largo)
1920x800 → 41.67% (banner médio)
1920x1200 → 62.5% (4:3) 

   DICA IMPORTANTE: Para descobrir o aspect ratio ideal das suas imagens:
   1. Abra a imagem e veja as dimensões (ex: 1920x600)
   2. Calcule: (altura / largura) * 100
   3. Exemplo: (600 / 1920) * 100 = 31.25%
   4. Use esse valor no padding-bottom do .carousel
*/


/* ========================================= BANNER PROMOCIONAL PNG ========================================================== */

.promo-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
    from { 
        opacity: 0;
        backdrop-filter: blur(0);
    }
    to { 
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

.promo-banner-container {
    position: relative;
    max-width: 900px;
    width: auto;
    animation: zoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Botão de fechar */
.promo-banner-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ff4757 0%, #e84118 100%);
    border: 3px solid white;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.5);
    transition: all 0.3s ease;
    z-index: 10;
}

.promo-banner-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.7);
}

.promo-banner-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Conteúdo do banner */
.promo-banner-content {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-flex; /* ✅ Ajusta à largura da imagem */
    display: flex;
    flex-direction: column;
}

/* Imagem do banner */
.promo-banner-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* ✅ Mantém proporção sem cortar */
    max-height: 80vh; /* Limita altura máxima */
    background: #f8f9fa; /* Fundo cinza caso haja espaços */
}

/* Ações do banner */
.promo-banner-actions {
    padding: 20px;
    background: linear-gradient(135deg, #0032ac 0%, #001a5c 100%);
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.btn-promo {
    flex: 1;
    max-width: 250px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #0aa5ff 0%, #0066cc 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05em;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 165, 255, 0.4);
}

.btn-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 165, 255, 0.6);
}

.btn-close-text {
    padding: 15px 30px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-text:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Loading/Placeholder */
.promo-banner-img[src=""], 
.promo-banner-img:not([src]) {
    min-height: 400px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badge de cidade (opcional) */
.city-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #0aa5ff 0%, #0032ac 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(10, 165, 255, 0.5);
    z-index: 5;
}

/* ========== RESPONSIVIDADE ========== */

@media (max-width: 1024px) {
    .promo-banner-container {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .promo-banner-overlay {
        padding: 15px;
    }

    .promo-banner-container {
        max-width: 95%;
    }

    .promo-banner-close {
        width: 40px;
        height: 40px;
        top: -12px;
        right: -12px;
    }

    .promo-banner-close svg {
        width: 20px;
        height: 20px;
    }

    .promo-banner-img {
        max-height: 70vh;
    }

    .promo-banner-content {
        border-radius: 16px;
    }

    .promo-banner-actions {
        padding: 15px;
        flex-direction: column;
    }

    .btn-promo {
        width: 100%;
        max-width: none;
    }

    .btn-close-text {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .promo-banner-overlay {
        padding: 10px;
    }

    .promo-banner-close {
        width: 36px;
        height: 36px;
        top: -10px;
        right: -10px;
        border-width: 2px;
    }

    .promo-banner-img {
        max-height: 75vh; /* ✅ Mais espaço em mobile */
    }

    .promo-banner-content {
        border-radius: 12px;
    }

    .promo-banner-actions {
        padding: 12px;
    }

    .btn-promo,
    .btn-close-text {
        padding: 12px 20px;
        font-size: 0.95em;
    }
}

/* Animação de saída */
.promo-banner-overlay.closing {
    animation: fadeOutOverlay 0.3s ease;
}

.promo-banner-overlay.closing .promo-banner-container {
    animation: zoomOut 0.3s ease;
}

@keyframes fadeOutOverlay {
    from { 
        opacity: 1;
    }
    to { 
        opacity: 0;
    }
}

@keyframes zoomOut {
    from { 
        opacity: 1;
        transform: scale(1);
    }
    to { 
        opacity: 0;
        transform: scale(0.8);
    }
}

/* ========================================================== SEÇÕES ========================================================== */
section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #0032ac;
    margin-bottom: 50px;
}

/* ========================================================== PLANOS ========================================================== */

.planos {
  padding: 60px 20px;
}

.planos-carrossel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.planos-carrossel {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 30px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.planos-carrossel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.plano-card {
    background: linear-gradient(135deg, #0032ac 0%, #1f69ce 100%);
    border-radius: 40px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 300px;
    flex-shrink: 0;
    border: 2px solid transparent;
}

.plano-card h3{
    color:white;
    margin-top: -5%;
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(31, 105, 206, 0.5);
    border-color: #1f69ce;
}

.plano-card.gamer {
    background: linear-gradient(135deg, #ff0844 0%, #6d0019 50%, #1a0006 100%);
    border: 3px solid #ff0844;
}

.plano-card.gamer:hover {
    box-shadow: 0 12px 40px rgba(255, 8, 68, 0.6);
}

.btn-gamer {
    background: #ff0844 !important;
    color: white !important;
}

.btn-gamer:hover {
    background: #cc0636 !important;
    transform: translateY(-3px);
}

.plano-beneficios {
    list-style: none;
    margin: 20px 0;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente */
    justify-content: center;
    text-align: center; /* Centraliza o texto */
    padding: 0;
    margin-top: -4%;
}

.plano-beneficios li {
    padding: 4px 0;
    border-bottom: none; 
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: brightness(0) invert(1); /* Torna os ícones brancos */
}

.carousel-btn {
    background: #0032ac;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 50, 172, 0.3);
    transition: all 0.3s;
    z-index: 10;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #005fa3;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 50, 172, 0.5);
}

.carousel-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .carousel-btn {
        display: none; /* Oculta setas no mobile */
    }

    .planos-carrossel {
        scroll-snap-type: x mandatory;
    }

    .plano-card {
        scroll-snap-align: center;
        min-width: 280px;
    }
}

/* ===== Velocidade (número grande + unidade menor embaixo) ===== */
.plano-velocidade {
  display: flex;
  flex-direction: column; /* número em cima, unidade embaixo */
  align-items: center;
  line-height: 1;
  margin: 20px 0;
  color: white;
  /* garante que o bloco não altere a altura do card de forma imprevisível */
}

.plano-velocidade .vel-num {
  font-size: 5em;
  font-weight: bold;
  line-height: 1;
  display: block;
  letter-spacing: -4px;
}

.plano-velocidade .vel-unit {
  font-size: 3em;
  font-weight: bold;
  margin-top: -10px;
}

.plano-preco {
    display: block;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
    font-weight: bold;
    color: white;
}

.plano-preco span {
    display: inline-block;
    vertical-align: middle;
}

.plano-preco .preco-int {
  font-size: 5em;
  line-height: 1;
  font-weight: bold;
  letter-spacing: -5px;
}

.plano-preco .preco-dec {
  font-size: 2em;
  line-height: 1;
  font-weight: bold;
  opacity: 0.95;
  /*margin-left: -2px;*/
}

.plano-preco .preco-currency {
  font-size: 1.5em;
  line-height: 1;
  font-weight: bold;
  margin-right: 4px;
  opacity: 0.95;
}

.plano-preco .preco-period {
  font-size: 1em;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.plano-servicos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0 25px;
    height: 100px;
    width: 280px;
}

.servico-icone {
    background: #f1f1f1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    transition: transform 0.2s, background 0.2s;
}

.servico-icone.hbo {
    background: black;
    width: 60px;
}

.servico-icone.paramount {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    width: 110px;
    align-self: center;
}

.servico-icone.paramount img {
    height: 170px;
}

.servico-icone.worktvplay {
    background: #0032ac;
    width: 130px;
    align-self: center;
}

.servico-icone.worktvplay img {
    height: 220px;
}

.servico-icone.qualifica {
    background: #0032ac;
    width: 130px;
    align-self: center;
}

.servico-icone.qualifica img {
    height: 220px;
}

.servico-icone.exitlag {
    background: black;
    width: 130px;
}

.servico-icone.exitlag img {
    height: 200px;
}

.servico-icone.watch {
    background: #ff4407;
    width: 120px;
    align-self: center;
}

.servico-icone.watch img {
    height: 100px;
}

.servico-icone:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.servico-icone img {
    height: 25px;
    width: auto;
    object-fit: contain;
}

/* ========================= RESPONSIVIDADE MOBILE ========================= */
@media (max-width: 1024px) {
  .plano-card {
    min-width: 260px;
    padding: 25px 20px;
  }
  .vel-num { font-size: 3.5em; }
  .vel-unit { font-size: 1.8em; }
  .plano-preco .preco-int { font-size: 2.5em; }
}

@media (max-width: 768px) {
  .carousel-btn { display: none; }
  .planos-carrossel {
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 40px;
  }
  .plano-card {
    scroll-snap-align: center;
    min-width: 80%;
    max-width: 85%;
  }

  .plano-servicos{
    max-width: 100%
  }

  .servico-icone.worktvplay {
    background: #0032ac;
    width: 125px;
    align-self: center;
}
    .servico-icone.worktvplay img {
        height: 220px;
    }

    .servico-icone.qualifica {
        background: #0032ac;
        width: 125px;
        align-self: center;
    }

    .servico-icone.qualifica img {
        height: 220px;
    }
}

@media (max-width: 480px) {
  .planos { padding: 40px 10px; }
  .plano-card {
    min-width: 90%;
    border-radius: 25px;
    padding: 25px 15px;
  }
  .vel-num { font-size: 2.8em; }
  .vel-unit { font-size: 1.4em; }
  .plano-preco .preco-int { font-size: 5em; }
  .plano-preco .preco-dec,
  .plano-preco .preco-currency { font-size: 1em; }
  .plano-beneficios li { font-size: 0.9rem; }
  .servico-icone img { height: 22px; }
}

/* Quando o dispositivo está em modo paisagem */
@media screen and (orientation: landscape) and (max-height: 500px) {
  .plano-card {
    min-width: 30%;
    max-width: 45%;
    padding: 20px 15px;
  }

  .plano-preco .preco-int { font-size: 5em; }
}

/* ===== Ajuste reforçado para tablets =em modo retrato ==== */
@media screen and (max-width: 1024px) and (min-width: 600px) and (orientation: portrait) {
  .plano-card {
    min-width: 220px !important;
    max-width: 310px !important;
    padding: 15px 15px !important;
    border-radius: 25px;
  }

  .plano-preco .preco-int {
    font-size: 5em !important;
  }

  .plano-preco .preco-dec,
  .plano-preco .preco-currency {
    font-size: 1.6em !important;
  }

  .vel-num {
    font-size: 4.5em !important;
  }

  .vel-unit {
    font-size: 2em !important;
  }
}
/* ========================================================== WATCH BRASIL ========================================================== */

.watch-brasil {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.watch-header {
    text-align: center;
    margin-bottom: 50px;
    height: 130px; /* defina a altura desejada */
    display: flex;
    flex-direction: column;
    justify-content: center; /* centraliza verticalmente */
    align-items: center;
    overflow: hidden; /* evita que a logo estoure os limites */
}

.watch-logo {
    height: 400px; /* a logo se ajusta dentro dessa altura */
    object-fit: contain;
    margin-top: -11%;
}

.watch-subtitle {
   text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-top: -125px;
    margin-bottom: 50px;
}

.watch-plano-card {
    background: white;
    border-radius: 20px;
    padding: 19px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-color: #1f69ce;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
}

.watch-plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}


.watch-plano-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.watch-plano-info h3 {
    font-size: 1.8em;
    color: #0032ac;
    margin-bottom: 8px;
}

.watch-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
}

.watch-plano-preco {
    text-align: right;
}

.watch-badge {
    background: #00c6ff;
    color: white;
}


.watch-preco-destaque {
    font-size: 2em;
    font-weight: bold;
    background: #0032ac;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.watch-preco-valor {
    font-size: 2em;
    font-weight: bold;
    color: #0032ac;
}

.watch-preco-periodo {
    font-size: 0.9em;
    color: #666;
    display: block;
    margin-top: -5px;
}

/* Carrossel de Canais */
.canais-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.canais-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.canais-carousel::-webkit-scrollbar {
    display: none;
}

.canal-logo {
    flex-shrink: 0;
    width: 100px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 10px;
    border: 2px solid #f0f0f0;
}

.canal-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(31, 105, 206, 0.3);
    border-color: #1f69ce;
}

.canal-logo svg,
.canal-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.canal-btn {
    background: linear-gradient(135deg, #1f69ce 0%, #0032ac 100%);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(31, 105, 206, 0.3);
    transition: all 0.3s;
    flex-shrink: 0;
}

.canal-btn:hover {
    background: linear-gradient(135deg, #005fa3 0%, #001f6b 100%);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(31, 105, 206, 0.5);
}

.canal-btn:active {
    transform: scale(0.95);
}

/* ======= RESPONSIVIDADE MOBILE ================*/
@media (max-width: 768px) {
    .watch-plano-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .watch-preco-valor,
    .watch-preco-periodo {
        display: inline;
        text-align: center;
    }

    .watch-preco-periodo {
        margin-left: 4px;
    }

    .watch-plano-preco {
        text-align: center;
        width: 100%;
    }

    .canal-btn {
        display: none;
    }

    .canais-carousel {
        scroll-snap-type: x mandatory;
    }

    .canal-logo {
        scroll-snap-align: center;
        width: 90px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .watch-header {
        height: auto; /* permite que a altura se ajuste automaticamente */
        margin-bottom: 30px;
    }

    .watch-logo {
        height: 290px; /* reduz o tamanho da logo */
        margin-top: -120px; /* remove o deslocamento negativo */
    }

    .watch-plano-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .watch-subtitle {
        font-size: 1em;
        margin-top: -100px;
        
    }

    .watch-plano-info h3 {
        font-size: 1.4em;
        text-align: center;
    }

    .watch-preco-valor,
    .watch-preco-destaque {
        font-size: 1.6em;
    }

    .canal-logo {
        width: 80px;
        height: 50px;
    }

    .watch-preco-valor,
    .watch-preco-periodo {
        display: inline;
        text-align: center;
    }

    .watch-preco-periodo {
        margin-left: 0px;
    }

    .watch-plano-preco {
        text-align: center;
        width: 100%;
    }
}

/* ========================================================= ONDE ESTAMOS =================================================== */

/* ===== SEÇÃO ONDE ESTAMOS ===== */
.onde-estamos {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-top: -30px;
    margin-bottom: 50px;
}

.map-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    
}

/* ===== MAPA DO BRASIL ===== */
.brazil-map {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 50, 172, 0.15));
}

.estados-sem-cobertura path {
    transition: all 0.3s ease;
}

.estados-sem-cobertura path:hover {
    fill: #d0d0d0;
}

/* Estados com cobertura */
.state-active {
    animation: pulse-state 3s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    transform-origin: center;
    transform-box: fill-box;
    vector-effect: non-scaling-stroke;
}

.state-active:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

@keyframes pulse-state {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* Marcadores de cidade */
.city-dot {
    animation: bounce-dot 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s;
}

.city-dot:hover {
    r: 6;
    fill: #ff0844;
    filter: drop-shadow(0 0 8px #ff0844);
}

@keyframes bounce-dot {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.city-label {
    fill: #001a5c;
    font-size: 11px;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.city-dot:hover + .city-label {
    opacity: 1;
}

/* Ondas de sinal */
.wave {
    animation: signal-wave 3s ease-out infinite;
}

.wave-1 {
    animation-delay: 0s;
}

.wave-2 {
    animation-delay: 1s;
}

.wave-3 {
    animation-delay: 2s;
}

@keyframes signal-wave {
    0% {
        r: 8;
        opacity: 0.8;
    }
    100% {
        r: 30;
        opacity: 0;
    }
}

/* ===== INFORMAÇÕES DO MAPA ===== */
.map-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Estatísticas */
.coverage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 50, 172, 0.15);
}

.stat-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.stat-content h3 {
    font-size: 2.5em;
    color: #0032ac;
    margin-bottom: 5px;
    font-weight: bold;
}

.stat-content p {
    color: #666;
    font-size: 0.95em;
}

/* Lista de cidades */
.cities-list {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cities-list h3 {
    color: #0032ac;
    font-size: 1.5em;
    margin-bottom: 20px;
    border-bottom: 2px solid #0aa5ff;
    padding-bottom: 10px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.city-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.state-badge {
    background: #0032ac;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75em;
    font-weight: bold;
    min-width: 35px;
    text-align: center;
}

.state-badge.es {
    background: #0aa5ff;
}

.state-badge.rj {
    background: #0032ac;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brazil-map {
        max-width: 500px;
        margin: 0 auto;
    }

    .coverage-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .onde-estamos {
        padding: 60px 20px;
    }

    .coverage-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-content h3 {
        font-size: 2em;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .brazil-map {
        max-width: 400px;
    }

    .city-label {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 1em;
    }

    .stat-icon {
        font-size: 2.5em;
    }

    .stat-content h3 {
        font-size: 1.8em;
    }

    .cities-list {
        padding: 20px;
    }

    .cities-list h3 {
        font-size: 1.2em;
    }
}

/* ========================================================= PARA EMPRESAS ================================================== */
.para-empresas {
    background: linear-gradient(135deg, #0032ac 0%, #001a5c 100%);
    color: white;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Efeito de fundo decorativo */
.para-empresas::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 165, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.para-empresas::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 165, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.para-empresas .section-title {
    color: white;
    position: relative;
    z-index: 1;
}

.section-subtitle-white {
    text-align: center;
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.85);
    margin-top: -30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Grid de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Card de Serviço */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0aa5ff, #0032ac);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(10, 165, 255, 0.5);
    box-shadow: 0 15px 40px rgba(10, 165, 255, 0.2);
}

/* Ícone do Serviço */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0aa5ff 0%, #0066cc 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(10, 165, 255, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(10, 165, 255, 0.5);
}

/* Título do Serviço */
.service-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

/* Descrição */
.service-description {
    font-size: 1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Lista de Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.9);
}

.service-features li svg {
    color: #0aa5ff;
    flex-shrink: 0;
}

/* Botão do Serviço */
.btn-service {
    background: linear-gradient(135deg, #0aa5ff 0%, #0066cc 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-service:hover {
    background: white;
    color: #0032ac;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Banner de Destaque */
.enterprise-banner {
    margin-top: 3%;
    background: linear-gradient(135deg, rgba(10, 165, 255, 0.15) 0%, rgba(0, 50, 172, 0.15) 100%);
    border: 2px solid rgba(10, 165, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.banner-content-empresa {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
}

.banner-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0aa5ff 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-text h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: white;
}

.banner-text p {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.btn-banner {
    background: white;
    color: #0032ac;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-banner:hover {
    background: #0aa5ff;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(10, 165, 255, 0.4);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-content-empresa {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }

    .btn-banner {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .para-empresas {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .banner-content-empresa {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-icon {
        margin: 0 auto;
    }

    .btn-banner {
        width: 100%;
    }

    .section-subtitle-white {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .service-card h3 {
        font-size: 1.4em;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon svg {
        width: 40px;
        height: 40px;
    }

    .banner-text h3 {
        font-size: 1.4em;
    }

    .banner-text p {
        font-size: 1em;
    }

    .enterprise-banner {
        padding: 30px 20px;
    }
}

/* ================== MAPA EMPRESAS COM CARDS ==================== */
.mapa-empresas-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.mapa-title {
    font-size: 2em;
    color: white;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.mapa-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.mapa-empresas {
    position: relative;
    min-height: 600px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Efeito de grid de fundo */
.mapa-empresas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(10, 165, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 165, 255, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.6;
}

/* Efeito de brilho sutil */
.mapa-empresas::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 165, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Container do SVG */
.mapa-svg-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: visible; /* permite que o mapa cresça além do container */
}

.mapa-svg {
    width: 115%; /* aumenta 30% em relação ao espaço disponível */
    height: auto; /* mantém proporção original */
    max-width: none; /* remove o limite máximo */
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
    transform: scale(1.1); /* leve aumento sem distorcer */
    transform-origin: center; /* centraliza o zoom */
    transition: transform 0.3s ease;
    margin-left: -11%;
}

/* Overlay dos Cards */
.info-cards-overlay {
    margin-top: 25px; /* para diagramar com o container do mapa, basta apagar essa linha */
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    z-index: 2;
}

/* Card Informativo */
.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.12) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(30px);
}

.info-card[data-animate="fade-in-up"] {
    opacity: 1;
    transform: none;
}

.info-card:hover {
    transform: translateX(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.18) 100%);
    box-shadow: 
        0 15px 40px rgba(10, 165, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(10, 165, 255, 0.6);
}

/* Decoração do Card */
.card-decoration {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(10, 165, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Ícone do Card */
.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0aa5ff 0%, #0032ac 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 4px 15px rgba(10, 165, 255, 0.5);
    transition: all 0.3s ease;
}

.info-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(10, 165, 255, 0.7);
}

/* Conteúdo do Card - TEXTO BRANCO */
.card-content {
    flex: 1;
}

.card-value {
    font-size: 1.8em;
    font-weight: 800;
    color: white; 
    margin: 0 0 5px 0;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.9); 
    margin: 0;
    font-weight: 500;
}


/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
    .mapa-empresas {
        padding: 30px;
        gap: 30px;
    }

    .info-card {
        padding: 20px 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-value {
        font-size: 1.6em;
    }
}

@media (max-width: 1024px) {
    .mapa-empresas {
        grid-template-columns: 1fr;
        padding: 30px 25px;
        min-height: auto;
    }

    .info-cards-overlay {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .mapa-svg {
        width: 100%;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .mapa-empresas {
        padding: 20px 15px;
    }

    .mapa-title {
        font-size: 1.6em;
    }

    .mapa-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .info-cards-overlay {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-card {
        padding: 18px 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon svg {
        width: 28px;
        height: 28px;
    }

    .card-value {
        font-size: 1.5em;
    }

    .card-label {
        font-size: 0.85em;
    }

    .mapa-svg {
        width: 130%;
        height: 110%;
        transform: scale(1);
        /*margin: 0; /*alinha a margem com os cards */
        margin-left: -16%;
    }
}

@media (max-width: 480px) {
    .mapa-empresas {
        padding: 15px 10px;
        border-radius: 15px;
    }

    .mapa-empresas::before {
        background-size: 30px 30px;
    }

    .mapa-title {
        font-size: 1.4em;
    }

    .mapa-subtitle {
        font-size: 0.9em;
        margin-bottom: 25px;
    }

    .info-card {
        padding: 15px 12px;
        gap: 12px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
    }

    .card-icon svg {
        width: 24px;
        height: 24px;
    }

    .card-value {
        font-size: 1.4em;
    }

    .card-label {
        font-size: 0.8em;
    }

    .legend-item {
        font-size: 0.8em;
    }

    .legend-dot {
        width: 10px;
        height: 10px;
    }
}

/* ================================================= CONTRATE APENAS INTERNET ================================================ */
/* ========== MODAL OVERLAY ========== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== MODAL CONTAINER ========== */
.modal-container {
    background: white;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========== CABEÇALHO DO MODAL ========== */
.modal-header {
    background: linear-gradient(135deg, #0032ac 0%, #1f69ce 100%);
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.modal-header h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: white;
    text-align: center;
}

.modal-header p {
    opacity: 0.9;
    font-size: 1.1em;
    color: white;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* ========== CORPO DO MODAL ========== */
.modal-body {
    padding: 10px 20px;
}

/* ================================================= POLÍTICA DE PRIVACIDADE ================================================= */
/* ========== MODAL OVERLAY ========== */
.modal-overlay-privacidade {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal-overlay-privacidade.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== MODAL CONTAINER ========== */
.modal-container-privacidade {
    background: white;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========== CABEÇALHO DO MODAL ========== */
.modal-header-privacidade {
    background: linear-gradient(135deg, #0032ac 0%, #1f69ce 100%);
    color: white;
    padding: 35px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.modal-header-privacidade h2 {
    font-size: 2em;
    margin-bottom: 8px;
}

.modal-header-privacidade .ultima-atualizacao {
    opacity: 0.9;
    font-size: 0.95em;
    font-weight: 400;
}

.modal-close-privacidade {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close-privacidade:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* ========== CORPO DO MODAL ========== */
.modal-body-privacidade {
    padding: 40px 45px 50px;
    line-height: 1.8;
    color: #333;
}

.politica-secao {
    margin-bottom: 35px;
}

.politica-secao h3 {
    color: #0032ac;
    font-size: 1.5em;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #1f69ce;
}

.politica-secao p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1.05em;
}

.politica-secao ul {
    margin: 15px 0 15px 25px;
    list-style-type: none;
}

.politica-secao ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05em;
}

.politica-secao ul li::before {
    content: "●";
    color: #0032ac;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: -2px;
}

.politica-secao strong {
    color: #0032ac;
    font-weight: 600;
}

.destaque-box {
    background: linear-gradient(135deg, rgba(0, 50, 172, 0.05), rgba(31, 105, 206, 0.05));
    border-left: 4px solid #0032ac;
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 8px;
}

.destaque-box p {
    margin-bottom: 0;
}

/* Scroll suave */
.modal-container-privacidade {
    scroll-behavior: smooth;
}

/* Customização da scrollbar */
.modal-container-privacidade::-webkit-scrollbar {
    width: 10px;
}

.modal-container-privacidade::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-container-privacidade::-webkit-scrollbar-thumb {
    background: #0032ac;
    border-radius: 5px;
}

.modal-container-privacidade::-webkit-scrollbar-thumb:hover {
    background: #1f69ce;
}

/* ========== BOTÃO DE DEMONSTRAÇÃO ========== */
.demo-btn {
    background: #0032ac;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 50, 172, 0.3);
}

.demo-btn:hover {
    background: #1f69ce;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 50, 172, 0.4);
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
    .modal-container-privacidade {
        margin: 10px;
        max-height: 95vh;
        border-radius: 15px;
    }

    .modal-header-privacidade {
        padding: 25px 20px;
        border-radius: 15px 15px 0 0;
    }

    .modal-header-privacidade h2 {
        font-size: 1.5em;
        padding-right: 45px;
    }

    .modal-body-privacidade {
        padding: 30px 20px 40px;
    }

    .politica-secao h3 {
        font-size: 1.3em;
    }

    .politica-secao p,
    .politica-secao ul li {
        font-size: 1em;
        text-align: left;
    }

    .destaque-box {
        padding: 15px 18px;
    }
}

@media (max-width: 480px) {
    .modal-header-privacidade {
        padding: 20px 15px;
    }

    .modal-header-privacidade h2 {
        font-size: 1.3em;
    }

    .modal-body-privacidade {
        padding: 25px 15px 35px;
    }

    .politica-secao {
        margin-bottom: 25px;
    }

    .politica-secao h3 {
        font-size: 1.2em;
    }

    .politica-secao ul {
        margin-left: 15px;
    }
}


.lista-justificada li {
  text-align: justify;
  text-justify: inter-word;
}





/* ==================================================== TERMOS DE USO ========================================================*/

/* ========== MODAL OVERLAY ========== */
.modal-overlay-termos {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal-overlay-termos.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== MODAL CONTAINER ========== */
.modal-container-termos {
    background: white;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========== CABEÇALHO DO MODAL ========== */
.modal-header-termos {
    background: linear-gradient(135deg, #0032ac 0%, #1f69ce 100%);
    color: white;
    padding: 35px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.modal-header-termos h2 {
    font-size: 2em;
    margin-bottom: 8px;
}

.modal-header-termos .ultima-atualizacao {
    opacity: 0.9;
    font-size: 0.95em;
    font-weight: 400;
}

.modal-close-termos {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close-termos:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* ========== CORPO DO MODAL ========== */
.modal-body-termos {
    padding: 40px 45px 50px;
    line-height: 1.8;
    color: #333;
}

.termos-secao {
    margin-bottom: 35px;
}

.termos-secao h3 {
    color: #0032ac;
    font-size: 1.5em;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #1f69ce;
}

.termos-secao p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1.05em;
}

.termos-secao ul {
    margin: 15px 0 15px 25px;
    list-style-type: none;
}

.termos-secao ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05em;
}

.termos-secao ul li::before {
    content: "●";
    color: #0032ac;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: -2px;
}

.termos-secao strong {
    color: #0032ac;
    font-weight: 600;
}

.destaque-box {
    background: linear-gradient(135deg, rgba(0, 50, 172, 0.05), rgba(31, 105, 206, 0.05));
    border-left: 4px solid #0032ac;
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 8px;
}

.destaque-box p {
    margin-bottom: 0;
}

.alerta-box {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.05), rgba(255, 100, 100, 0.05));
    border-left: 4px solid #ff4444;
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 8px;
}

.alerta-box p {
    margin-bottom: 0;
    color: #c43030;
}

/* Scroll suave */
.modal-container-termos {
    scroll-behavior: smooth;
}

/* Customização da scrollbar */
.modal-container-termos::-webkit-scrollbar {
    width: 10px;
}

.modal-container-termos::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-container-termos::-webkit-scrollbar-thumb {
    background: #0032ac;
    border-radius: 5px;
}

.modal-container-termos::-webkit-scrollbar-thumb:hover {
    background: #1f69ce;
}

/* ========== BOTÃO DE DEMONSTRAÇÃO ========== */
.demo-btn {
    background: #0032ac;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 50, 172, 0.3);
}

.demo-btn:hover {
    background: #1f69ce;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 50, 172, 0.4);
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
    .modal-container-termos {
        margin: 10px;
        max-height: 95vh;
        border-radius: 15px;
    }

    .modal-header-termos {
        padding: 25px 20px;
        border-radius: 15px 15px 0 0;
    }

    .modal-header-termos h2 {
        font-size: 1.5em;
        padding-right: 45px;
    }

    .modal-body-termos {
        padding: 30px 20px 40px;
    }

    .termos-secao h3 {
        font-size: 1.3em;
    }

    .termos-secao p,
    .termos-secao ul li {
        font-size: 1em;
        text-align: left;
    }

    .destaque-box,
    .alerta-box {
        padding: 15px 18px;
    }
}

@media (max-width: 480px) {
    .modal-header-termos {
        padding: 20px 15px;
    }

    .modal-header-termos h2 {
        font-size: 1.3em;
    }

    .modal-body-termos {
        padding: 25px 15px 35px;
    }

    .termos-secao {
        margin-bottom: 25px;
    }

    .termos-secao h3 {
        font-size: 1.2em;
    }

    .termos-secao ul {
        margin-left: 15px;
    }
}

/* ============================================================== FOOTER ======================================================= */
footer {
    background: linear-gradient(135deg, #002a8f 0%, #001a5c 100%);
    color: white;
    padding: 60px 20px 0;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand p {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-cnpj {
    font-size: 0.85em !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #0aa5ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 165, 255, 0.3);
}

.app-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff; /* Ajuste conforme o fundo */
}

.app-download-gplay {
    margin-top: -12px;
}

.app-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 158px; /* 🔹 mesma largura para todos */
    white-space: nowrap; /* 🔹 evita quebra entre “Google” e “Play” */
    width: auto;          /* 🔹 permite ajuste natural */
    min-width: 158px;     /* 🔹 mantém equilíbrio com o outro botão */
}

.app-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.app-button svg {
    width: 20px;
    height: 20px;
}

.contract-link {
    margin-top: -12px;
}

.contract-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 158px; /* 🔹 mesma largura para todos */
    white-space: nowrap; /* 🔹 evita quebra entre palavras */
    width: auto;          /* 🔹 permite ajuste natural */
    min-width: 158px;     /* 🔹 mantém equilíbrio com o outro botão */
}

.contract-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contract-button svg {
    width: 20px;
    height: 20px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: 600;
    border-bottom: 2px solid rgba(10, 165, 255, 0.5);
    padding-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.95em;
}

.footer-section ul li a:hover {
    color: #0aa5ff;
    padding-left: 3px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95em;
}

.contact-list li svg {
    flex-shrink: 0;
    color: #0aa5ff;
}

.hours-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-title {
    font-size: 0.9em;
    font-weight: 600;
    color: #0aa5ff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-locations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-item {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #0aa5ff;
}

.location-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #0aa5ff;
}

.location-item strong {
    display: block;
    margin-bottom: 5px;
    color: white;
    font-size: 0.95em;
}

.location-item p {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

/* ===== CARROSSEL DE ENDEREÇOS ===== */
.footer-locations {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
}

.locations-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.locations-carousel {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 15px;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.locations-carousel::-webkit-scrollbar {
    display: none;
}

.locations-carousel .location-item {
    min-width: calc(100% - 0px);
    max-width: calc(100% - 0px);
    flex-shrink: 0;
    display: flex;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #0aa5ff;
    box-sizing: border-box;
}

.location-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #0aa5ff;
}

.location-item strong {
    display: block;
    margin-bottom: 5px;
    color: white;
    font-size: 0.95em;
}

.location-item p {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

/* Botões de Navegação */
.location-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 10;
    margin: 1%;
}

.location-nav-btn:hover {
    background: #0aa5ff;
    border-color: #0aa5ff;
    transform: scale(1.1);
}

.location-nav-btn:active {
    transform: scale(0.95);
}

/* Indicadores */
.location-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.location-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.location-indicator.active {
    background: #0aa5ff;
    width: 24px;
    border-radius: 4px;
}

.location-indicator:hover {
    background: rgba(10, 165, 255, 0.6);
}

/* ===== RESPONSIVIDADE DO FOOTER ===== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 20px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        height: 50px;
    }

    .social-links {
        justify-content: center;
    }

    .app-download {
        display: flex;
        justify-content: center;
    }

    .footer-section h3 {
        text-align: center;
    }

    .footer-section ul {
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .location-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .hours-title{
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        height: 40px;
    }

    .footer-section h3 {
        font-size: 1.1em;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .app-button {
        font-size: 0.85em;
        padding: 8px 16px;
    }

    .location-item {
        padding: 12px;
    }
    .hours-title{
        text-align: center;
    }
}

/* ===== RESPONSIVIDADE DO CARROSSEL ===== */
@media (max-width: 768px) {
    .location-nav-btn {
        width: 28px;
        height: 28px;
    }

    .location-nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .locations-carousel {
        scroll-snap-type: none;
    }

    .locations-carousel .location-item {
        scroll-snap-align: center;
    }
}

@media (max-width: 480px) {
    .locations-carousel-wrapper {
        gap: 5px;
    }

    .location-nav-btn {
        width: 24px;
        height: 24px;
    }

    .locations-carousel .location-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}


/* =============================================== BOTÃO FLUTUANTE WHATSAPP ================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Animação de Pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 
                    0 0 0 10px rgba(37, 211, 102, 0.1),
                    0 0 0 20px rgba(37, 211, 102, 0.05);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }

    .whatsapp-tooltip {
        display: none; /* Oculta tooltip no mobile */
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}