/* ===========================
   Paleta ajustável em :root
   =========================== */
:root {
    --bg: #06296f;
    --bg-soft: #002c94;
    --card: #0b1220;
    --primary: #f48200;
    /* azul principal */
    --primary-600: #1d4ed8;
    --accent: #22d3ee;
    --text: #000000;
    --muted: #94a3b8;
    --border: #1f2937;
    --ok: #e86400;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #0420c3 0%, #0d0060);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Utilities */
.container {
    width: min(1140px, 92%);
    margin-inline: auto;
}

.section-head {
    text-align: center;
    margin: 64px 0 28px
}

.section-head h2 {
    font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
    margin: 0 0 10px;
    margin-top: 20px;
    color: #ffffff;
}

.section-head p {
color: white;    margin: 0
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(140%) blur(8px);
    background: rgb(255, 255, 255);
    box-shadow: none !important; /* garante que não haja sombra fina */
    background-clip: padding-box; /* evita artefatos de borda com backdrop-filter */
 
    transform: translateZ(0); /* força camada composta, reduz subpixel hairline */
    will-change: transform;
}



.header.scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .28)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;               /* permite controlar altura via padding/min-height */
    min-height: 120px;          /* aumenta a altura da faixa branca do header */
    gap: 16px;
    color: #ffffff;
    padding: 20px 30px;
    padding-bottom: 0; /* evita espaço excessivo e possíveis linhas de separação */
}

/* LOGO */
.logo-img {
    height: auto;
    max-height: 126px; /* limita altura da logo dentro da faixa */
    width: 190PX;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.menu {
    display: flex;
    align-items: center;
    gap: 22px
}

.menu a {
    color: #0d0d0d;
    text-decoration: none;
    opacity: .9;
    font-weight: 500;
}

.menu a:hover {
    opacity: 1
}

.menu .cta {
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 10px 20px rgba(37, 99, 235, .25);
}

.menu .cta:hover {
    background: var(--primary-600)
}

/* ===== Família / Hero ===== */
/* ===== Família Hero Full Width ===== */
.family-hero {
    position: relative;
    width: 100vw;
    /* ocupa toda a largura da tela */
    min-height: 80vh;
    /* altura mínima */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    margin-top: -80px;
    /* remove margem extra */
}

/* Faz a seção romper o container e ocupar 100% do viewport */
.full-bleed {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
}

/* Evita barra horizontal por conta do 100vw em alguns navegadores */
html,

body {
    overflow-x: hidden;
}


.family-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* cobre toda a largura */
    height: 100%;
    /* cobre toda a altura */
    object-fit: cover;
    /* garante que a imagem preencha */
    z-index: 1;
}

.family-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.129), rgba(0, 0, 0, 0.205));
    z-index: 2;
    margin-top: -250px;
}

.family-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 0 16px;
    max-width: 800px;
}

.family-content h2 {
    font-family: "Anton", sans-serif;
    font-size: clamp(2rem, 1rem + 4vw, 3.5rem);
    margin-bottom: 16px;
}

.family-content .accent {
    color: #ffce0a
}

.family-content p {
    font-size: clamp(1rem, .9rem + .4vw, 1.2rem);
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, .6);
    margin-top: -20PX;
}

.family-cta {
    background: #22c55e;
    color: #07121f;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(34, 197, 94, .35);
}

.family-cta:hover {
    filter: brightness(1.1);
}

/* Hamburger */
.hamb {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.hamb span {
    display: block;
    width: 22px;
    height: 2px;
    background: #000451;
    margin: 5px auto;
    transition: .2s transform, .2s opacity;
}

.hamb.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamb.active span:nth-child(2) {
    opacity: 0
}

.hamb.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* Drawer */
.drawer {
    position: fixed;
    inset: 72px 0 auto 0;
    height: 0;
    overflow: hidden;
    background: rgba(11, 18, 32, .96);
    transition: height .25s ease;
margin-top: 50px;
}

.drawer.open {
    height: 230px
}

.drawer ul {
    list-style: none;
    margin: 0;
    padding: 14px 20px;

}


.drawer a {
    display: block;
    padding: 14px 4px;
    text-decoration: none;
    color: var(--text);
    

}

.drawer .cta {
    margin-top: 6px;
    display: inline-block;
    background: var(--primary);
    padding: 5px 7px;
    border-radius: 10px;
}

/* ===== Drawer: ajuste SOMENTE no mobile ===== */
@media (max-width: 768px){
  /* fecha: usa max-height para animar sem afetar desktop */
  .drawer{
    /* mantém sua posição original */
    inset: 72px 0 auto 0;
    height: 0;                 /* compat c/ seu JS */
    max-height: 0;             /* para animar via max-height */
    overflow: hidden;
    transition: max-height .25s ease; /* anima a abertura */

  }

  .family-hero{
    margin-top: 10px;
  }


  .section-head h2{
    margin-top: -60px;
  }

  /* aberto: cresce pra baixo o necessário, com scroll se passar da tela */
  .drawer.open{
    height: auto;                                  /* deixa o conteúdo ditar a altura */
    max-height: calc(100vh - 72px);                /* não passa da tela (72px = header) */
    overflow-y: auto;                               /* evita cortar itens */
    padding-bottom: 72px;                           /* espaço pro botão flutuante (WhatsApp) */
  }


}


/* modal-planos cidades*/
.sessao-planos {
    text-align: center;
    padding: 80px 20px;
background-image: url('/img/modal.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* deixa com efeito parallax sutil */
    position: relative;
    color: #fff;
    height: 350px;
}

/* Overlay escuro para garantir legibilidade */
.sessao-planos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55); /* escurecimento suave */
    z-index: 0;
}
.sessao-planos p{
    margin-top: -40px;
}

.sessao-planos h2,

.sessao-planos p,

.btn-assinar {
    position: relative;
    z-index: 1; /* garante que fiquem acima do overlay */
}
.planos-title {
    font-size: 50px;
}


.btn-assinar {
    padding: 14px 32px;
    background: #03bc2b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-assinar:hover {
    background: #005bd1;
}

/* Modal overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Modal box */
.modal-content {
    background: #fff;
    width: 90%;
    max-width: 360px;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    animation: fadeInScale 0.25s ease;
}
.modal-content h3 {
    color: #0f0f0f;
}

/* Animação */
@keyframes fadeInScale {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* Botão X Fechar */
.modal-fechar {
    position: absolute;
    right: 12px;
    top: 12px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Botões do modal */
.modal-btn {
    display: block;
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    background: #0077ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.modal-btn:hover {
    background: #005bd1;
}

/* Botão "Fechar" opcional */
.modal-close-bottom {
    margin-top: 10px;
    padding: 10px;
    border: none;
    background: #ccc;
    border-radius: 6px;
    cursor: pointer;
}

.modal-close-bottom:hover {
    background: #b5b5b5;
}
/* modal-planos cidades*/



/* Hero */
.hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    align-items: center;
    overflow: hidden
}

.slides {
    position: absolute;
    inset: 0;
    z-index: -1
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 4s ease;
    filter: brightness(.6) saturate(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1)
}

.hero-inner {
    padding: 60px 0
}

.hero-content {
    width: min(900px, 92%);
    margin-left: max(4%, 24px);
    animation: fadeUp .7s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.kicker {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .18);
    color: #cfe2ff;
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: .9rem;
    letter-spacing: .3px;
}

.hero h1 {
    font-size: clamp(1.8rem, 1.2rem + 2.2vw, 3rem);
    margin: 14px 0 10px;
    line-height: 1.15;
    color: white;
}

.hero p {
    color: white;
    margin: 0 0 18px;
    max-width: 720px
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

/* modal rural */
.netrural-section {
    width: 100%;
    padding: 3rem 1.5rem;
background-image: url('/img/rural.jpg');
    color: #ffffff;
    display: flex;
    justify-content: center;
    text-align: center;
    height: 300px;
}

.netrural-section__content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.netrural-section h2 {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    margin-bottom: 0.75rem;
    font-weight: 700;
        color: #dbe8ff;

}

.netrural-section p {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Botão */
.netrural-btn-primary {
    padding: 0.85rem 2.6rem;
    border-radius: 999px;
    border: none;
    background: #449a12;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.netrural-btn-primary:hover {
    background: #072566;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.netrural-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.netrural-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 999;
}

.netrural-modal-overlay.netrural-active {
    opacity: 1;
    visibility: visible;
}

.netrural-modal-box {
    position: relative;
    width: 90%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2rem 1.75rem 1.75rem;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.netrural-modal-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #111827;
}

/* Botão X */
.netrural-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
    transition: transform 0.15s ease, color 0.15s ease;
}

.netrural-modal-close:hover {
    color: #111827;
    transform: scale(1.08);
}

/* Botões de cidade */
.netrural-modal-btn {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    margin-bottom: 0.75rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.netrural-modal-btn:hover {
    background: #eef2ff;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.netrural-modal-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
/* modal rural */


/* Container para centralizar a faixa */
.faixa-container {
  width: 100%;
  max-width: 900px;
  padding: 0 16px;
}
.faixa-branca {
    position: relative;
    width: 100%; /* OCUPA 100% DA TELA */
    background: #ffffff;
    overflow: hidden;
    padding: 16px 0;
}

/* Texto que desliza */
.faixa-texto {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    font-weight: 600;
    color: #111827;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    animation: desliza 10s linear infinite;
}

/* Animação */
@keyframes desliza {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* Responsividade extra para telas bem pequenas */
@media (max-width: 600px) {
  .planos-title {
    font-size: 30px;
  }
  .sessao-planos p {
    margin-top: -20px;
  }
}


/* Responsividade extra para telas bem pequenas */
@media (max-width: 480px) {
  .faixa-branca {
    padding: 10px 0;
  }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    background: #ffbb00;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: transform .05s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    border-color: rgb(64, 198, 7)
}

.btn.primary {
    background-color: #000451;
    color: #fff;
    border-color: rgba(255, 255, 255, .12)
}

.btn.primary:hover {
    background: var(--primary-600)
}

.btn.secondary {
    background-color: #000451;
    color: #fff;
}

/* ===== Seção Planos ===== */
.period {
    color: var(--muted)
}

.features {
    list-style: none;
    margin: 14px 0 0;
    padding: 0 22px 0 26px
}

.features li {
    margin: 10px 0;
    color: #b9e5c7
}

.features li::marker {
    content: "✓  "
}

.foot {
    margin-top: auto;
    padding: 18px 22px 22px
}

/* ===== Velocidade / Cobertura ===== */
.sec-velocidade {
    padding: clamp(42px, 6vw, 96px) 0;
    overflow: hidden;
    position: relative;
}

.vel-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(20px, 4vw, 56px);
}

.vel-titulo {
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: .5px;
    line-height: .95;
    font-size: clamp(2.2rem, 1.4rem + 3.2vw, 4rem);
    color: #fe9900;
    margin: 0 0 16px;
    text-transform: uppercase;
    text-wrap: balance;
    margin-top: -100px;
}

.vel-desc {
    color: #eaf3ff;
    font-size: clamp(1rem, .96rem + .3vw, 1.125rem);
    line-height: 1.7;
    max-width: 52ch;
    margin: 0 0 24px;
}

.vel-btn {
    background: #17c42b;
    color: #0b1220;
    font-weight: 800;
    padding: 14px 24px;
    border-radius: 14px;
    border: none;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .2), inset 0 -2px 0 rgba(0, 0, 0, .12);
}

.vel-btn:hover {
    filter: brightness(1.05)
}

.vel-media {
    position: relative;
    margin: 0;
    padding: 0;
    display: grid;
    place-items: center;
    min-height: 340px;
}

.vel-media img {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
    filter: drop-shadow(0 22px 50px rgba(0, 0, 0, .28));
    transform: translateZ(0);
    margin-bottom: -50px;
    margin-top: -100px;

    /* Animação de flutuação */
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}


/* Responsivo */
@media (max-width: 1024px) {
    .vel-grid {
        grid-template-columns: 1fr
    }

    .vel-media {
        order: -1
    }

    /* imagem acima no mobile */
    .speed-echo {
        align-items: flex-start;
        padding-right: 0;
        padding-left: 6px
    }
}

/* ===== Velocidade / Cobertura ===== */

/* ===== BLOCO AUTOATENDIMENTO ===== */
.self-service {
    text-align: center;
    margin-top: clamp(34px, 7vw, 70px);
}

/* Imagem acima do título */
.help-art {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;   /* Espaço entre imagem e título */
}
.help-art img {
    width: 100%;
    max-width: 460px;
    height: auto;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .25));
    margin-bottom: -70px;

    /* Efeito de flutuar */
    animation: float-help 2s ease-in-out infinite;
}

@keyframes float-help {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
    100% {
        transform: translateY(0);
    }
}

.ss-title {
    font-family: "Outfit", Inter, system-ui, sans-serif;
    text-transform: uppercase;
    margin: 0 0 6px;
    font-size: clamp(1.2rem, .9rem + 1.4vw, 1.6rem);
        color: #dbe8ff;

}

/* Subtítulo */
.ss-sub {
    color: #dbe8ff;
    margin: 0 0 20px;
}

.quick-actions {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(14px, 2vw, 26px);
    justify-items: center;
}


/* ===== CARD ===== */

.qa-card {
    width: 100%;
    max-width: 260px;
    background: linear-gradient(180deg, #ff8800, #f89d00);
    color: #101927;
    text-decoration: none;
    border-radius: 18px;
    padding: 18px 16px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
    display: grid;
    gap: 8px;
    place-items: center;
    transition: transform .08s ease, filter .2s ease;
}

/* Ícone */
.qa-ico {
    font-size: 36px;
    line-height: 1;
}

/* Texto */
.qa-card strong {
    font-size: 1rem;
    font-weight: 700;
}

/* Hover */
.qa-card:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}


/* ===== MOBILE ===== */
@media (max-width: 760px) {
    .quick-actions {
        grid-template-columns: 1fr;
    }

    .help-art img {
        max-width: 300px; /* reduz um pouco no celular */
        margin-bottom: -28px;
    }


.vel-media img {
        margin-bottom: 10px;
    }
}

/* atendimento/



/* ===== Perfil de Velocidade (Neon) ===== */
:root {
    --neon1: #22d3ee;
    /* ciano */
    --neon2: #60a5fa;
    /* azul */
    --neon3: #a78bfa;
    /* violeta */
    --card-bg: #0b1220;
    --cta: #22c55e;
    --text: #eaf3ff;
    --muted: #b6c3da;
}

.sec-neon {
    background: radial-grdient(1200px 600px at 20% -10%, rgb(96, 165, 250), transparent 60%),
        radial-gradient(1200px 600px at 90% 120%, rgba(34, 211, 238, .14), transparent 55%),
        linear-gradient(135deg, #0c2b6e, #082d59 60%, #0b2244);
    padding: clamp(36px, 6vw, 72px) 0;
    color: var(--text);
}

.neon-head {
    text-align: center;
    margin-bottom: clamp(22px, 4vw, 34px)
}

.neon-head h2 {
    font-family: "Outfit", Inter, system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: .4px;
    font-size: clamp(1.6rem, 1rem + 2.6vw, 2.2rem);
    margin: 0 0 6px;
    text-shadow: 0 0 18px rgba(96, 165, 250, .25);
    color: white;
}

.neon-head p {
    color: white;
    margin: 0
}

/* grid */
.neon-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 2.4vw, 22px);
}

/* card com glow */
.neon-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgb(230, 138, 0), rgb(235, 118, 0));
    border: 1px solid rgba(255, 255, 255, .06);
    transform: translateZ(0);
}

.neon-card::before {
    /* borda neon */
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    filter: blur(18px);
    opacity: .32;
    z-index: 0;
    transition: opacity .2s ease, filter .2s ease;
}

.neon-card:hover::before {
    opacity: .55;
    filter: blur(22px)
}

.neon-media {
    position: relative;
    z-index: 1;
    margin: 0;
}

.neon-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block
}

.neon-body {
    position: relative;
    z-index: 1;
    padding: 16px 14px 18px;
    display: grid;
    gap: 10px;
    place-items: center;
}

.neon-body h3 {
    margin: 0;
    font-weight: 800;
    font-size: clamp(1.05rem, .9rem + .6vw, 1.25rem);
    text-align: center;
    text-shadow: 0 0 12px rgba(235, 238, 34, 0.962);
}

/* botão neon */
.neon-btn {
background-color: #09c13a;   
 color: #06131f;
    font-weight: 900;
    letter-spacing: .2px;
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--glow);
    border: 1px solid rgba(255, 255, 255, .16);
    transition: transform .08s ease, filter .15s ease, box-shadow .15s ease;
}

.neon-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 0 22px var(--neon2), 0 0 42px var(--neon3)
}

/* responsivo */
@media (max-width: 1100px) {
    .neon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .neon-media img {
        height: 200px
    }
}

@media (max-width: 580px) {
    .neon-grid {
        grid-template-columns: 1fr;
    }

    .neon-media img {
        height: 190px
    }
}

/* ===== Perfil de Velocidade (Neon) ===== */

/* Contact */
#contato {
    padding: 30px 0 60px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
    align-items: start;
}
/* ===== Rodapé ===== */
.footer{
  background: #0b1220;              /* fundo escuro */
  color: #d1d5db;                   /* texto cinza claro */
  padding: 20px 0;
  font-size: 0.95rem;
  text-align: center;
}

.footer .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer p{
  margin: 6px 0;
}

.footer .agencia{
  color: #525252;                   /* azul destaque */
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, text-shadow .2s ease;
}

.footer .agencia:hover{
  color: #60a5fa;
  text-shadow: 0 0 6px rgba(96,165,250,.6);
}

/* ===== Botão/Badge do Instagram ===== */
.instagram{
  margin-top: 14px;                 /* espaço do card acima */
}

.instagram a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;             /* pílula */
    background-color: #000451;
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  transition: transform .08s ease, filter .2s ease, box-shadow .2s ease;
}

.instagram a:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 10px 26px rgba(99,102,241,.28), 0 0 0 3px rgba(255,255,255,.06) inset;
}

.instagram span{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
}

.instagram img{
  width: 22px;
  height: 22px;
  display: block;
}

/* Colocação dentro do aside */
.contact-card .instagram{
  display: flex;
  justify-content: center;
}

/* Mobile: ocupa a largura toda se quiser um CTA maior */
@media (max-width: 560px){
  .contact-card .instagram,
  .instagram a{ width: 100% }
  .instagram a{ justify-content: center;
    margin-left: -70px;
}
}


.form,
.contact-card {
    background: linear-gradient(180deg, #df7802, #c66c06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.form h3,
.contact-card h3 {
    margin: 0 0 14px
}

label {
    display: grid;
    gap: 8px;
    margin: 12px 0
}

input,
textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #d6d6d6;
    color: black;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: var(--primary)
}

.contact-card ul {
    list-style: none;
    margin: 0 0 12px;
    padding: 0
}

.contact-card li {
    color:black;
    margin: 10px 0
}

.contact-card .btn {
    width: 100%
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: #ffffff;
    padding: 22px 0;
    color: #1b1b1b;
    text-align: center;
}

/* Responsive */
@media (max-width: 960px) {
  
    .contact-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 760px) {
    .menu {
        display: none
    }

    .hamb {
        display: block
    }

    .hero {
        min-height: 64vh
    }

    .vel-titulo {
        margin-top: -70px;
    }


}

@media (prefers-reduced-motion: reduce) {
    .slide {
        transition: none
    }

    .btn {
        transition: none
    }
}



