:root {
    --primary-orange: #FF7300;
    /* Laranja extraído da logo clássica */
    --primary-dark: #0f172a;
    /* Slate 900 moderno */
    --secondary-dark: #1e293b;
    /* Slate 800 */
    --light-bg: #f8fafc;
    /* Slate 50 */
    --white: #ffffff;
    --whatsapp-green: #25D366;
    --whatsapp-hover: #1ebd54;
    --text-dark: #1e293b;
    --text-muted: #64748b;
}


@font-face {
  font-display: swap;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/plus-jakarta-sans-v12-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-display: swap;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/plus-jakarta-sans-v12-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-display: swap;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/plus-jakarta-sans-v12-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-display: swap;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/plus-jakarta-sans-v12-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-display: swap;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/plus-jakarta-sans-v12-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-display: swap;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/plus-jakarta-sans-v12-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-display: swap;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/plus-jakarta-sans-v12-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Utilidades Globais */
.py-section {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
}

.py-section-small {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
}

.fs-7 {
    font-size: 0.9rem;
}

.rounded-xl {
    border-radius: 24px;
}

.rounded-l {
    border-radius: 16px;
}

/* Navbar Moderno com Blur */
.navbar {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.navbar-brand img {
    max-height: 50px;
    object-fit: contain;
}

.nav-link {
    color: var(--primary-dark) !important;
    font-weight: 600;
    padding: 0.5rem 1.4rem !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
}

/* Hero Section com Imagem Lifestyle Real */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #020617 100%);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--light-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: -1;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 400;
    line-height: 1.6;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

/* .hero-image {
            width: 100%; max-width: 500px;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
            border: 8px solid rgba(255,255,255,0.05);
            animation: float 6s ease-in-out infinite;
        } */
.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Botões Customizados UX */
.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: white !important;
    font-weight: 700;
    padding: 1rem 2.2rem;
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.btn-outline-custom {
    border: 2px solid var(--primary-orange);
    color: white;
    font-weight: 700;
    padding: 1rem 2.2rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.btn-outline-custom:hover {
    background-color: var(--primary-orange);
    color: white;
    transform: translateY(-4px);
}

/* Seção "Quem Somos" com Imagem de Infraestrutura Local */
.about-section {
    background-color: var(--white);
}

/* .infra-image {
            width: 100%; border-radius: 24px;
            box-shadow: 0 15px 30px -5px rgba(0,0,0,0.1);
        } */

.infra-image {
    width: 100%;
    height: auto;
    max-height: 780px;
    object-fit: cover;
    border-radius: 1.5rem;
    /* Equivalente ao seu rounded-xl */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Sombra suave */
}

/* Diferenciais/Vantagens UX Expandido */
.feature-card {
    background: var(--light-bg);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 115, 0, 0.08);
    color: var(--primary-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

/* Seção de Tecnologia (com Imagem) */
.tech-section {
    background-color: var(--secondary-dark);
    color: #cbd5e1;
}

.tech-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Planos UX: Imagens + Mais Conteúdo */
.plan-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px -10px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-orange);
}

.plan-card.featured {
    border: 2px solid var(--primary-orange);
    background-color: rgba(255, 115, 0, 0.005);
}

.plan-image-header {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}

.plan-badge {
    position: absolute;
    top: 180px;
    right: 20px;
    background-color: var(--primary-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.plan-price-callout {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-orange);
    background-color: rgba(255, 115, 0, 0.08);
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    display: inline-block;
}

/* Cobertura: Imagem de Mapa Visual UX */
.coverage-section {
    background-color: var(--white);
}

/* .map-container {
            width: 100%; text-align: center; border-radius: 24px; overflow: hidden;
            border: 1px solid #e2e8f0; box-shadow: 0 10px 20px rgba(0,0,0,0.03);
            background-color: var(--light-bg); padding: 20px;
        }
        .map-image { max-width: 100%; height: auto; border-radius: 16px; } */

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.map-image {
    width: 100%;
    max-width: 550px;
    /* Impede que o mapa ocupe espaço excessivo em telas grandes */
    height: auto;
    object-fit: contain;
    border-radius: 1.5rem;
    /* Mantém o padrão rounded-xl das outras seções */
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.06));
    /* Sombra bem leve e suave */
}

.coverage-city-badge {
    background: var(--light-bg);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coverage-city-badge:hover {
    border-color: var(--primary-orange);
    background-color: rgba(255, 115, 0, 0.02);
}

/* Seção FAQ UX */
.faq-section {
    background-color: var(--light-bg);
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: var(--primary-orange);
    box-shadow: 0 8px 15px rgba(255, 115, 0, 0.2);
}

.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 10px;
}

.accordion-collapse {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background-color: var(--white);
}

/* Rodapé Complacência UX */
footer {
    background-color: var(--primary-dark);
    color: #94a3b8;
    font-size: 0.9rem;
    border-top: 4px solid var(--primary-orange);
}

footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--primary-orange);
}

/* WhatsApp Floating Button UX para Mobile */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1) translateY(-5px);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}
