:root{
  --bg:#081226;
  --card:#0f2233;
  --muted:#9aa6b2;
  --accent:#18d39f;
  --highlight:#ffe07a;
  --glass: rgba(255,255,255,0.05);
  --glass-2: rgba(255,255,255,0.03);
  --whatsapp:#25d366;
  --max-width:1200px;
}


*{
  box-sizing:border-box
}

html,body{
  height:100%
}

body {
  margin: 0;
  font-family: Inter, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(22,42,70,0.25), transparent),
    url("img/mapa.png") no-repeat center center fixed;
  background-size: cover;
  color: #e6eef6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 0;
}

/* ===== TOP BAR ===== */
.topbar {
    background: #ffffff;
    color: #0a0a23;
    width: 100%;
    padding: 8px 0;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    z-index: 1000;
    border-radius: 0 0 20px 20px;
    margin: 0;
    position: relative;
    z-index: 10;
}

.topbar-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: nowrap; /* impede quebra */
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f1f40;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
    cursor: pointer;
    white-space: nowrap; /* impede quebrar o texto */
}

.topbar-item i {
    font-size: 20px;
    color: #0066FF;
}

.topbar-item:hover {
    color: #0066FF;
}

.topbar-item:hover i {
    color: #0066FF;
}

.topbar-lang {
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.topbar-social a {
    color: #0066FF;
    font-size: 20px;
    margin-left: 15px;
    transition: 0.2s;
}

.topbar-social a:hover {
    opacity: 0.7;
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}


.map-silhouette{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:0.14;
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1600" height="900"><rect width="100%" height="100%" fill="%23081226"/><g fill="%23162539" opacity="0.6"><path d="M0 200h1600v600H0z"/></g></svg>');
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  mix-blend-mode:soft-light;
  filter:blur(8px);
  z-index: 0;
}


header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:28px 48px;
  position:relative;
  z-index: 8000; 
  transition: opacity .2s ease;
}


.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  font-size:20px;
  letter-spacing:1px;
  color:var(--highlight);
  transition: opacity .25s ease;
}
.brand img.logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  display:block;
}


nav{
  display:flex;
  gap:28px;
  align-items:center;
  transition: opacity .25s ease;
}
nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
}
nav a:hover{
  color:#fff;
}

.menu-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.side-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-icon img {
    width: 22px;
}

.menu-icon {
    width: 32px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 15000; 
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 4px;
    background: #ffffff;
    border-radius: 8px;
    transition: .3s ease;
}


main{
  padding:24px 48px 80px;
  max-width:var(--max-width);
  margin:0 auto;
  position: relative;
  z-index: 1;
}

.side-newsletter {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.side-newsletter h4 {
    font-size: 16px;
    color: #ffe07a;
    margin-bottom: 8px;
}

.side-newsletter p {
    font-size: 14px;
    color: #c1c1c1;
    margin-bottom: 10px;
}

.side-newsletter form {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.side-newsletter input[type="email"] {
    flex: 1;
    max-width: 200px;
    padding: 8px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
}

.side-newsletter button {
    padding: 8px 12px;
    background-color: #ffe07a;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    color: #060b27;
}

.side-newsletter button:hover {
    background-color: #ffd148;
}

.side-newsletter-success {
    color: #18d39f;
    font-size: 13px;
    margin-top: 8px;
}


.hero{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-radius:14px;
  padding:36px;
  display:flex;
  gap:28px;
  align-items:center;
  backdrop-filter:blur(6px);
  box-shadow:0 8px 30px rgba(3,10,20,0.6);
  overflow:hidden;
  position:relative;
}

.hero-left{ 
  flex:1;
}

kicker{
  font-size:13px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:1.4px;
  margin-bottom:8px
}
.hero h1{
  font-size:44px;
  line-height:1.02;
  margin:0 0 16px;
  color:var(--highlight);
  text-shadow:0 6px 18px rgba(0,0,0,0.5)
}
.hero p{
  color:var(--muted);
  margin:0 0 22px;
  font-size:15px
}


.window-wrapper { 
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative; 
  display: flex; 
  justify-content: center; 
}

.window-frame { 
  width: 100%;
  display: block;
  position: relative; 
  z-index: 2; 
}

/* Conteúdo que aparece dentro da janela */
.window-view {
  width: 55%;               /* ajusta automaticamente */
  aspect-ratio: 3 / 4;      /* mantém proporção bonita */
  overflow: hidden;
  border-radius: 40px;
  position: absolute;
  top: 15%;                 /* posiciona dentro da moldura */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.window-view img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}






.section-title{ 
  margin:44px 0 18px; 
  font-weight:700; 
  color:#dbeaf4 
}

.cards{ 
  display:grid; 
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); 
  gap:22px;
   align-items: stretch;
}

 .card {
            position: relative;
            background: linear-gradient(160deg,
                    rgba(255, 255, 255, 0.08),
                    rgba(255, 255, 255, 0.02));
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 22px;
            padding: 10px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.25);
            transition: all 0.45s ease;
            overflow: hidden;   
            
        }


.card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top left,
                    rgba(255, 255, 255, 0.15),
                    transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }



.card:hover::before {
            opacity: 1;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.35);
        }

.card .img {
  width: 100%;
  height: 120px;
  flex: 0 0 auto;
  border-radius: 8px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 12px;
}

.card .tag{
  position:absolute;
  left:12px;
  top:12px;
  background:rgba(255,255,255,0.04);
  padding:6px 10px;
  border-radius:6px;
  font-size:12px;
  color:var(--muted)
}

.card h3{ 
  margin:6px 0 6px; 
  font-size:13px; 
  
}

.card p{ 
  margin:0; 
  font-size:13px; 
  color:var(--muted) 
}

.card .btn{
  display:inline-block;
  margin-top:12px;
  padding:8px 12px;
  border-radius:999px;
  background:#0050FF;
  color:#ffffff;
  text-decoration:none;
  font-weight:700;
  justify-self: start; /* esquerda */
  margin-top: 12px;
}

@media (prefers-reduced-motion: reduce) {

            .card,
            .card::before,
            .card .btn {
                transition: none !important;
            }

            .card:hover {
                transform: none;
            }

            .card .btn:hover {
                transform: none;
            }
        }

.btn-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  z-index: 11000;
}

.btn-whatsapp img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--whatsapp);
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.btn-whatsapp img:hover { 
  transform: scale(1.1); 
}


.sparkle{
  position:fixed;
  right:96px;
  bottom:18px;
  width:16px;
  height:16px;
  background:linear-gradient(180deg,#ffffff66,#ffffff22);
  transform:rotate(25deg);
  border-radius:3px;
  filter:blur(.2px);
  opacity:.6;
  z-index:11000;
}


.fade-up{ 
  opacity:0; 
  transform:translateY(12px); 
  animation:fadeUp .9s forwards 
}

.fade-up.delay-1{ animation-delay:.15s }
.fade-up.delay-2{ animation-delay:.3s }
.fade-up.delay-3{ animation-delay:.45s }
@keyframes fadeUp{ to{ opacity:1; transform:none } }


#infoModal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 14000;
}
#infoModal.active { 
  opacity: 1; 
  pointer-events: all; 
}

.modal-content {
  background: var(--card);
  padding: 28px;
  width: 90%;
  max-width: 380px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  transform: translateY(20px);
  transition: 0.3s ease;
  position: relative;
}


#infoModal.active .modal-content { 
  transform: translateY(0); 
}

.close-modal { 
  position: absolute; 
  top: 12px; 
  right: 14px; 
  font-size: 22px; 
  cursor: pointer; 
  color: var(--muted); 
  transition: 0.2s ease; 
}

.close-modal:hover { 
  color: #fff; 
}

.modal-content h2 { 
  margin: 0 0 10px; 
  color:var(--highlight); 
}

.modal-content p { 
  margin: 6px 0; 
  color: var(--muted); 
}

.contact-item { 
  margin-top: 14px; 
  padding: 12px; 
  background: var(--glass); 
  border-radius: 8px; 
}

.modal-whatsapp-btn { 
  display: block; 
  width: 100%; 
  margin-top: 18px; 
  padding: 12px; 
  text-align: center; 
  font-weight: 700; 
  background: var(--whatsapp); 
  border-radius: 10px; 
  color: #fff; 
  text-decoration: none; 
  transition: 0.2s ease; 
}

.modal-whatsapp-btn:hover { 
  transform: scale(1.03); 
}

.side-menu {
  position: fixed;
  top: 0;
  right: -400px; 
  width: 400px;
  height: 100vh;
  background: var(--card);
  box-shadow: -4px 0 24px rgba(0,0,0,0.45);
  padding: 28px 22px;
  transition: right 0.35s ease;
  z-index: 13000; 
  overflow-y: auto;
}
.side-menu.open { right: 0; }


.side-menu-content h2 { 
  margin-top: 0; 
  color: var(--highlight); 
}

.side-menu-content p { 
  color: var(--muted); 
  margin: 10px 0 20px; 
}

.menu-info p { 
  margin: 8px 0; 
  background: var(--glass); 
  padding: 10px; 
  border-radius: 8px; 
  color:var(--muted); 
}

.menu-btn { 
  display: block; 
  margin-top: 20px; 
  padding: 12px; 
  background: var(--whatsapp); 
  text-align: center; color: #fff; 
  font-weight: 700; 
  border-radius: 10px; 
  text-decoration: none; 
  transition: transform .15s ease; 
}

.menu-btn:hover { 
  transform: scale(1.03); 
}



.side-logo { 
  display:flex; 
  justify-content:center; 
  align-items:center; 
  margin:0 0 12px 0; 
}

.side-logo img { 
  height: 72px; 
  width: auto; 
  object-fit: contain; 
  display:block; 
  margin:0; 
}


body.menu-open header .brand,
body.menu-open header nav {
  opacity: 0;
  pointer-events: none;
}


.menu-backdrop {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 12500; 
}


.menu-icon { position: relative; pointer-events: auto; }


@media (max-width:900px){
  .hero{ flex-direction:column; 
    padding:20px 
  }
  .hero h1{ 
    font-size:28px 
  }
  header{ 
    padding:20px 
  }
  main{ 
    padding:16px 
  }
  .window-view { 
    top: 80px;
  }
}

.sr-only { 
  position:absolute !important; 
  width:1px; 
  height:1px; 
  padding:0; 
  margin:-1px; 
  overflow:hidden; 
  clip:rect(0,0,0,0); 
  white-space:nowrap; 
  border:0; 
}


.secao-texto {
    text-align: center;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;

    /* sombra no conjunto inteiro */
    box-shadow: 0 22px 50px rgba(2, 8, 20, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(4px);

    max-width: 1100px;
    margin: 0 auto;
}


.titulo-logo {
    height: 200px;
    
    margin-right: 20px;
    box-shadow: none;
    text-shadow: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.secao-texto .titulo {
    font-size: 58px;
    color: #ffe07a;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 900px;
    box-shadow: none;
    text-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

.secao-texto .titulo span {
    color: #0050FF;
    box-shadow: none;
}

.secao-texto .subtexto {
    margin-top: 25px;
    color: #6d6d6d;
    font-size: 22px;
    max-width: 1100px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    box-shadow: none;
}

.secao-texto p {
    box-shadow: none;
    text-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.cards-servicos {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.card-servico {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    cursor: pointer;
}



.card-servico:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

.card-servico img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.card-servico h3 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    padding: 5px 0;
    color: #0c1b33; /* azul escuro igual ao site */
}

@media (max-width: 768px) {
    .card-servico img {
        
        height: 180px;
    }

    .card-servico h3 {
        font-size: 18px;
    }
}

.botao-pulsante {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    background: #01941e; /* Laranja */
    color: white;
    text-align: center;
    padding: 28px 20px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 0 0 4px rgba(0, 255, 102, 0.3); /* Borda externa suave */
    transition: transform .2s ease;
    animation: pulse 1.8s infinite;
}

/* Efeito hover opcional */
.botao-pulsante:hover {
    transform: scale(1.02);
}

/* Animação de pulsação */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 153, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0);
    }
}

/* CONTAINER EM GRID */
/* ====== SEÇÃO DESTINOS ====== */

/* ====== SEÇÃO DESTINOS ====== */
.destinos-section {
    width: 100%;
    padding: 40px 0;
}

/* ====== GRID NORMAL (ANTES ERA CARROSSEL) ====== */
.destinos-grid {
    display: grid; /* antes: flex */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* ====== CARDS (MANTIDO) ====== */
.destino-card {
    background: #0f2233;
    border-radius: 26px;
    padding: 14px;
    text-align: center;
    transition: transform 0.3s ease;
}

.destino-card:hover {
    transform: translateY(-6px);
}

/* ====== IMAGENS (MANTIDO) ====== */
.destino-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 140px; /* mantém imagem arredondada */
    display: block;
}

/* ====== NOME (MANTIDO) ====== */
.destino-nome {
    margin-top: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.destino-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.destino-card:hover {
  transform: translateY(-5px);
}


/* ====== RESPONSIVIDADE ====== */
@media (max-width: 600px) {
    .destinos-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards no mobile */
    }
}



.quem-somos {
    padding: 80px 20px;
    border-radius: 25px;
    margin: 60px auto;
    max-width: 1300px;
    backdrop-filter: blur(4px);
}

.qs-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.qs-text h2 {
    font-size: 38px;
    text-align: center;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.qs-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #fefeff;
    margin-bottom: 18px;
}

/* manter destaque */
.qs-text strong {
    color: #ffe07a;
}

.qs-img img {
    width: 500px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* ===== Responsivo ===== */
@media (max-width: 900px) {
    .qs-container {
        flex-direction: column;
        text-align: center;
    }

    .qs-img img {
        width: 100%;
        max-width: 400px;
    }
}

/* ================================
   FAQ – Mantendo seus CARDS
   ================================ */

/* CONTAINER CENTRALIZADO */
.faq-container {
    width: 100%;
    max-width: 850px; /* deixa menor e elegante */
    margin: 60px auto;
    padding: 0 20px;
}

/* CARD */
.faq-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px 22px;
    margin-bottom: 16px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

/* HOVER */
.faq-card:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: #18d39f;
    transform: translateY(-2px);
}

/* PERGUNTA */
.faq-header {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    padding: 0; /* REMOVE A BORDA BRANCA! */
}

/* ÍCONE (+ / -) */
.faq-header::after {
    content: "+";
    font-size: 22px;
    font-weight: bold;
    color: #18d39f;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-header.active::after {
    content: "-";
    color: #ffe07a;
    transform: rotate(180deg);
}

/* RESPOSTA */
.faq-content {
    max-height: 0;
    overflow: hidden;
    color: #cfd7df;
    padding-top: 0;
    line-height: 1.6;
    font-size: 15.5px;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding-left: 4px; /* mais bonito */
}

.faq-content.show {
    padding-top: 12px;
}

/* ================================
   FAQ – Mantendo seus CARDS
   ================================ */

/* CONTAINER CENTRALIZADO */
.faq-container {
    width: 100%;
    max-width: 850px; /* deixa menor e elegante */
    margin: 60px auto;
    padding: 0 20px;
}

/* CARD */
.faq-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px 22px;
    margin-bottom: 16px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

/* HOVER */
.faq-card:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: #18d39f;
    transform: translateY(-2px);
}

/* PERGUNTA */
.faq-header {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    padding: 0; /* REMOVE A BORDA BRANCA! */
}

/* ÍCONE (+ / -) */
.faq-header::after {
    content: "+";
    font-size: 22px;
    font-weight: bold;
    color: #18d39f;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-header.active::after {
    content: "-";
    color: #ffe07a;
    transform: rotate(180deg);
}

/* RESPOSTA */
.faq-content {
    max-height: 0;
    overflow: hidden;
    color: #cfd7df;
    padding-top: 0;
    line-height: 1.6;
    font-size: 15.5px;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding-left: 4px; /* mais bonito */
}

.faq-content.show {
    padding-top: 12px;
}
/* REMOVE a barra branca que aparece no topo do card */
.faq-card summary,
.faq-card details,
.faq-card * {
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

/* Remove espaço/borda padrão do summary */
.faq-card summary {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
}















.footer {
    background: #060b27;
    color: #fff;
    font-family: 'Inter', sans-serif;
    padding: 25px 0;
}

.footer-top {
    max-width: 1300px;
    margin: auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    margin: 20px 0;
    line-height: 1.6;
    color: #c9d2e3;
}

.footer-socials a {
    color: #fff;
    font-size: 20px;
    display: inline-block;
    margin-right: 15px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    transition: .3s;
}

.footer-socials a:hover {
    background: #18d39f;
    border-color: #18d39f;
    color: #060b27;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 12px 0;
}

.footer-col ul li a {
    color: #c9d2e3;
    text-decoration: none;
    transition: .3s;
}

.footer-col ul li a:hover {
    color: #18d39f;
}

.newsletter p {
    margin: 10px 0 20px;
    color: #c9d2e3;
}

.newsletter-box {
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-box input {
    flex: 1;
    padding: 14px;
    background: transparent;
    border: none;
    color: white;
    outline: none;
}

.newsletter-box button {
    padding: 14px 18px;
    background: #ff9f1c;
    border: none;
    cursor: pointer;
    outline: none;
}

.footer-check {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 14px;
    color: #c9d2e3;
}

.footer-check a {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding: 20px;
    font-size: 14px;
    text-align: center;
    color: #c9d2e3;
}

.footer-logo {
    width: 180px;
}

.footer-socials {
    display: flex;
    gap: 20px;
    justify-content: left;
}

.footer-socials a {
    font-size: 28px;
    color: #fff;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: #ffe07a; /* ou a cor que quiser */
}


/* ====== TABLET ====== */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        text-align: left;
    }

    .footer-logo {
        margin-bottom: 15px;
    }
}

/* ====== MOBILE ====== */
@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-col ul li a {
        font-size: 16px;
    }

    .footer-socials a {
        margin: 0 6px;
    }

    .newsletter-box {
        flex-direction: column;
    }

    .newsletter-box input {
        width: 100%;
        padding: 14px;
        text-align: center;
    }

    .newsletter-box button {
        width: 100%;
        margin-top: 10px;
        border-radius: 8px;
    }

    .footer-check {
        justify-content: center;
        text-align: center;
        line-height: 1.4;
    }

    .footer-bottom {
        text-align: center;
        font-size: 13px;
    }
}

.footer-contatos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;   /* PERMITE QUEBRE NO MOBILE */
}

/* Cada item */
.footer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-family: 'Inter', sans-serif;
    min-width: 260px;   /* evita esmagar os itens */
}


.footer-logo {
    width: 180px;
}

.footer-icone {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icone img {
    width: 28px;
}

.footer-texto h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.footer-texto p {
    margin: 0;
    font-size: 17px;
    opacity: .9;
}

/* Reduz drasticamente a altura do footer */
.footer {
    padding: 15px 0 !important;
}

/* Bloco dos contatos (topo do footer) – diminuir bastante */
.footer-contatos {
    padding: 15px 20px !important;
    gap: 20px !important;
}

.footer-icone {
    width: 45px !important;
    height: 45px !important;
}

.footer-icone img {
    width: 20px !important;
}

.footer-texto h4 {
    font-size: 15px !important;
}

.footer-texto p {
    font-size: 14px !important;
}

/* Bloco principal do footer */
.footer-top {
    padding: 15px 20px !important;
    gap: 20px !important;
}

.footer-col h4 {
    font-size: 18px !important;
    margin-bottom: 10px !important;
}

.footer-text {
    margin: 10px 0 !important;
    font-size: 14px !important;
}

/* Social icons menores */
.footer-socials a {
    padding: 6px !important;
    font-size: 20px !important;
}

/* Newsletter mais compacta */
.newsletter-box input,
.newsletter-box button {
    padding: 10px !important;
}

.footer-check {
    margin-top: 8px !important;
    font-size: 13px !important;
}

/* Parte final bem fina */
.footer-bottom {
    margin-top: 20px !important;
    padding: 10px !important;
    font-size: 12px !important;
}

@media (max-width: 768px) {
    .footer-contatos {
        justify-content: center;   
        text-align: center;
    }

    .footer-item {
        justify-content: center;   
    }
}





