* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: #000; color: white; scroll-behavior: smooth; }

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  border-bottom: 2px solid #FFD700;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
}

.logo {
  height: 55px;
}

/* ============================= */
/* NAVBAR PADRÃO (ESCONDIDA) */
/* ============================= */

nav {
  display: none; /* ESCONDIDO em todas as telas */
  flex-direction: column;
  position: absolute;
  top: 85px;
  right: 0;
  width: 250px;
  background: rgba(0,0,0,0.98);
  padding: 20px;
  border-left: 2px solid #FFD700;
  border-bottom: 2px solid #FFD700;
}

nav a {
  display: block;
  padding: 12px 0;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #FFD700;
}

nav.show {
  display: flex;
}

/* ============================= */
/* BOTÃO MENU */
/* ============================= */

.menu-toggle {
  display: block; /* AGORA aparece em todas as telas */
  font-size: 1.5rem;
  background: none;
  border: 2px solid #FFD700;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

/* ===== MENU MOBILE ===== */
@media (max-width: 768px) {
  .header-content {
    padding: 15px 20px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav.show {
    display: flex;
  }

  nav a {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  nav a:last-child {
    border-bottom: none;
  }
}


/* HERO */
.hero {
  height: 100vh; background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6)),
  url('https://images.unsplash.com/photo-1558611848-73f7eb4001a1') center/cover;
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px;
}
.hero-content { max-width: 700px; animation: fadeIn 1.5s ease; }
.hero h1 { font-size: 3rem; margin-bottom: 15px; line-height: 1.3; }
.hero span { color: #FFD700; }
.hero p { color: #ddd; font-size: 1.1rem; margin-bottom: 40px; }

.btn-matricula {
  background: #FFD700; color: white; padding: 15px 35px;
  border-radius: 50px; font-weight: bold; text-decoration: none;
  font-size: 1.1rem; transition: 0.3s; animation: pulse 2s infinite;
}
.btn-matricula:hover { background: #FFC300; transform: scale(1.05); }

/* PLANOS */
.planos { padding: 120px 20px 100px; text-align: center; background: #111; }
.planos h2 { font-size: 2.3rem; margin-bottom: 10px; color: #FFD700; }
.planos p { color: #bbb; margin-bottom: 40px; }

.planos-container {
  display: grid;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Desktop */
@media (min-width: 992px) {
  .planos-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (min-width: 600px) and (max-width: 991px) {
  .planos-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 599px) {
  .planos-container {
    grid-template-columns: 1fr;
    justify-items: center; /* CENTRALIZA o card */
  }

  .plano-card {
    width: 90%; /* não ocupa 100% */
    max-width: 350px;
  }
}

.plano-card {
  background: linear-gradient(180deg, #1a1a1a, #000);
  border: 2px solid #FFD700; border-radius: 15px; width: 280px;
  padding: 30px; transition: all 0.4s; box-shadow: 0 0 10px rgba(255,215,0,0.2);
}
.plano-card:hover { transform: translateY(-10px) scale(1.05); box-shadow: 0 0 25px #FFD700; }

.plano-card h3 { font-size: 1.5rem; color: #FFD700; margin-bottom: 10px; }
.plano-card .preco { font-weight: bold; font-size: 1.3rem; margin-bottom: 15px; }
.plano-card ul { list-style: none; color: #ccc; text-align: left; margin-bottom: 20px; }
.plano-card ul li { margin: 6px 0; }
.btn-escolher {
  background: #FFD700; border: none; color: white; padding: 10px 20px;
  border-radius: 25px; font-weight: bold; cursor: pointer; transition: 0.3s;
}
.btn-escolher:hover { background: #FFC300; transform: scale(1.05); }

.destaque {
  background: linear-gradient(180deg, #2a0000, #000);
  border: 2px solid #FFC300;
}

/* MATRÍCULA */
.matricula {
  background: #000; text-align: center; padding: 100px 20px;
}
.matricula h2 { color: #FFD700; font-size: 2.3rem; margin-bottom: 10px; }
.matricula p { color: #ccc; margin-bottom: 30px; }

form {
  background: rgba(255,255,255,0.05); padding: 40px;
  border-radius: 15px; max-width: 450px; margin: auto;
  border: 1px solid #FFD700; box-shadow: 0 0 20px rgba(255,215,0,0.3);
  display: flex; flex-direction: column; gap: 15px;
}
input, select {
  padding: 12px; border: none; border-radius: 8px; outline: none;
  font-size: 1rem; background: #111; color: white;
}
input:focus, select:focus { border: 2px solid #FFD700; }

.btn-enviar {
  background: #FFD700; border: none; color: white;
  padding: 12px; border-radius: 8px; font-weight: bold; cursor: pointer;
  transition: 0.3s; font-size: 1rem;
}
.btn-enviar:hover { background: #FFC300; transform: scale(1.05); }

.mensagem-sucesso { color: #00ff66; margin-top: 15px; font-weight: bold; display: none; }

/* FOOTER */
footer {
  background: #111; text-align: center; padding: 30px;
  border-top: 2px solid #FFD700;
}
.logo-footer { height: 50px; margin-bottom: 10px; }

/* ANIMAÇÕES */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px #FFD700; }
  50% { transform: scale(1.08); box-shadow: 0 0 25px #FFD700; }
}

/* ===== Contato (novo, limpo e harmônico) ===== */
.contato-section{
  background: linear-gradient(180deg,#070707 0%, #0f0f0f 100%);
  padding: 70px 18px;
  color: #fff;
  border-top: 1px solid rgba(200,30,44,0.06);
}

.contato-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  padding: 0 16px;
}

/* left block: info */
.contato-left h2{
  font-size: 28px;
  color: var(--#FFD700, #c81e2c);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.contato-sub{
  color: #cfcfcf;
  margin-bottom: 20px;
}

/* each info row */
.contato-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-bottom:14px;
}
.contato-item .ci{
  width:36px; height:36px; color: var(--#FFD700, #c81e2c);
  flex-shrink:0;
}
.ci-title{font-weight:700; color:#fff;}
.ci-text{color:#d3d3d3; font-size:0.95rem; margin-top:3px;}
.contact-link{color:var(--#FFD700,#c81e2c); text-decoration:none; font-weight:600;}
.contact-link:hover{text-decoration:underline;}

/* right block: social + map */
.contato-right{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* social card */
.social-card{
  display:flex;
  gap:14px;
  align-items:center;
  background:rgba(255,255,255,0.02);
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(200,30,44,0.06);
}
.social-icon svg{ width:56px; height:56px; color:var(--#FFD700,#c81e2c);}
.social-body{display:flex; flex-direction:column; gap:8px;}
.social-title{font-weight:700; color:#fff;}
.social-handle{color:#fff; font-weight:600; text-decoration:none;}
.social-cta{display:flex; gap:10px; margin-top:6px;}
.btn-outline{
  padding:8px 12px; border-radius:8px; border:1px solid rgba(255,255,255,0.08);
  color:#fff; text-decoration:none; font-weight:700; font-size:0.95rem;
}
.btn-primary{
  background: linear-gradient(90deg,var(--#FFD700,#c81e2c),#a01923);
  color:#fff; padding:8px 12px; border-radius:8px; text-decoration:none; font-weight:700;
  box-shadow:0 6px 18px rgba(200,30,44,0.12);
}

/* map card */
.map-card{
  display:flex; align-items:center; gap:12px; padding:12px; border-radius:12px;
  background:linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
  border:1px solid rgba(200,30,44,0.04);
}
.map-link{display:flex; gap:12px; align-items:center; text-decoration:none; color:#fff;}
.map-ic{width:40px; height:40px; color:var(--#FFD700,#c81e2c);}
.map-title{font-weight:700;}
.map-sub{color:#d1d1d1; font-size:0.95rem;}

/* RESPONSIVO: 2 colunas em telas maiores */
@media(min-width:920px){
  .contato-inner{
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
  }
  .contato-right{align-self:flex-start;}
}

/* ===== GALERIA ===== */
.galeria {
  background-color: #0b0b0b;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid #FFD700;
  border-bottom: 1px solid #FFD700;
}

.galeria h2 {
  font-size: 2.2rem;
  color: #FFD700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.galeria p {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.galeria-item {
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #FFD700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.galeria-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #FFD70060;
}

.galeria-item:hover img {
  transform: scale(1.1);
}

.galeria-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.galeria-item.show {
  opacity: 1;
  transform: translateY(0);
}




/* ===== SIMULADOR DE PLANOS ===== */
.simulador {
  background: #111;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  border-top: 1px solid #FFD700;
  border-bottom: 1px solid #FFD700;
}
.simulador h2 { color: #FFD700; font-size: 2.3rem; margin-bottom: 10px; }
.simulador p { color: #ccc; margin-bottom: 30px; }
.simulador-box {
  max-width: 400px; margin: auto; display: flex; flex-direction: column;
  gap: 15px; background: rgba(255,255,255,0.05); padding: 30px; border-radius: 12px;
  border: 1px solid #FFD700;
}
.simulador-box select, .simulador-box button {
  padding: 12px; border: none; border-radius: 8px; outline: none; font-size: 1rem;
}
.simulador-box select { background: #111; color: #fff; border: 1px solid #333; }
.simulador-box button {
  background: #FFD700; color: white; font-weight: bold; cursor: pointer; transition: 0.3s;
}
.simulador-box button:hover { background: #FFC300; }
.resultado { margin-top: 15px; color: #fff; font-weight: bold; }

/* ===== VÍDEOS ===== */
.videos {
  background: #0b0b0b; color: #fff; text-align: center; padding: 80px 20px;
  border-top: 1px solid #FFD700; border-bottom: 1px solid #FFD700;
}
.videos h2 { color: #FFD700; font-size: 2.2rem; margin-bottom: 10px; }
.videos p { color: #ccc; margin-bottom: 30px; }
.videos-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.videos-grid video {
  width: 100%; border-radius: 10px; border: 2px solid #FFD700;
  box-shadow: 0 0 15px rgba(255,215,0,0.3);
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  background: #111; color: #fff; text-align: center; padding: 100px 20px;
  border-top: 1px solid #FFD700;
}
.depoimentos h2 { color: #FFD700; font-size: 2.3rem; margin-bottom: 40px; }
.depoimentos-container {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 25px;
}
.depo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid #FFD700;
  border-radius: 12px;
  padding: 25px;
  width: 280px;
  box-shadow: 0 0 20px rgba(255,215,0,0.1);
}
.depo-card p { font-style: italic; color: #ccc; margin-bottom: 15px; }
.depo-card h4 { color: #FFD700; font-weight: bold; }


/* ============================= */
/* ====== RESPONSIVIDADE 1.0 ==== */
/* ============================= */

/* RESET DE AJUSTE GERAL */
img, video { max-width: 100%; height: auto; }
section { overflow-x: hidden; }

/* --- Telas até 1024px --- */
@media (max-width: 1024px) {
  header {
    padding: 15px 30px;
  }

  nav a {
    margin: 0 10px;
    font-size: 0.95rem;
  }

  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }

  .planos-container,
  .depoimentos-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .galeria-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* --- Telas até 768px (menu mobile e colunas empilhadas) --- */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  /* botão menu */
  .menu-toggle {
    display: block;
    background: none;
    border: 2px solid #FFD700;
    color: #fff;
    padding: 6px 10px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    margin-left: auto;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0,0,0,0.95);
    margin-top: 10px;
    border-top: 1px solid #FFD700;
  }

  nav.show {
    display: flex;
  }

  nav a {
    display: block;
    padding: 10px 0;
    text-align: center;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  /* hero */
  .hero {
    height: auto;
    padding: 100px 20px 80px;
  }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }

  /* planos */
  .planos {
    padding: 80px 15px;
  }
  .plano-card {
    width: 100%;
    max-width: 340px;
  }

  /* galeria */
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* vídeos */
  .videos-grid {
    grid-template-columns: 1fr;
  }

  /* matrícula */
  form {
    width: 100%;
    padding: 25px;
  }

  /* contato */
  .contato-inner {
    grid-template-columns: 1fr;
  }

  .social-card,
  .map-card {
    width: 100%;
  }

  /* depoimentos */
  .depoimentos-container {
    flex-direction: column;
    align-items: center;
  }

  .depo-card {
    width: 90%;
  }
}

/* --- Telas até 480px --- */
@media (max-width: 480px) {
  header {
    padding: 12px 15px;
  }

  .logo { height: 45px; }

  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 0.9rem; }
  .btn-matricula { padding: 10px 20px; font-size: 0.9rem; }

  .planos h2,
  .matricula h2,
  .depoimentos h2,
  .videos h2,
  .galeria h2 {
    font-size: 1.6rem;
  }

  .plano-card { padding: 20px; }

  input, select {
    font-size: 0.9rem;
    padding: 10px;
  }

  .btn-enviar { font-size: 0.9rem; padding: 10px; }

  .galeria-grid {
    grid-template-columns: 1fr;
  }

  footer p { font-size: 0.8rem; }
}

/* ===== CORREÇÕES FINAIS AMARELO ===== */

/* Botão Matricule-se Agora */
.btn-matricula {
  background: #FFD700 !important;
  color: #000 !important;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6) !important;
}
.btn-matricula:hover {
  background: #FFC300 !important;
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.8) !important;
}

/* Fundo Plano Intermediário */
.plano-card.destaque {
  background: linear-gradient(180deg, #332700, #000) !important;
  border: 2px solid #FFD700 !important;
}

/* Textos "Entre em Contato" */
.contato-left h2,
.contato-left .ci-title,
.contato-left .ci-text,
.contato-sub {
  color: #FFD700 !important;
}

/* Links do contato */
.contact-link {
  color: #FFD700 !important;
}

/* Sombra botão Enviar via WhatsApp */
.btn-enviar {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5) !important;
}
.btn-enviar:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.8) !important;
}

/* Remove qualquer sombra vermelha residual */
.btn-enviar,
.btn-matricula,
.plano-card,
.plano-card:hover {
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4) !important;
}

/* ============================= */
/* VOLTAR EFEITO PISCANDO */
/* ============================= */

@keyframes piscarAmarelo {
  0% { box-shadow: 0 0 5px rgba(255,215,0,0.4); }
  50% { box-shadow: 0 0 25px rgba(255,215,0,1); }
  100% { box-shadow: 0 0 5px rgba(255,215,0,0.4); }
}

.btn-matricula {
  background: #FFD700 !important;
  color: #000 !important;
  animation: piscarAmarelo 1.5s infinite !important;
}

/* ============================= */
/* ENTRE EM CONTATO - TEXTOS */
/* ============================= */

.instagram-card h3,
.instagram-card .titulo,
.instagram-box h3,
.maps-box h3,
.maps-card h3,
.como-chegar h3,
.contact-card h3 {
  color: #FFD700 !important;
}

/* Caso o texto esteja dentro de strong ou span */
.instagram-card strong,
.maps-card strong,
.instagram-card span,
.maps-card span {
  color: #FFD700 !important;
}

/* ===================================== */
/* SOCIAL BODY - TODOS OS TEXTOS AMARELOS */
/* ===================================== */

.social-body,
.social-body div,
.social-body a {
  color: #FFD700 !important;
}

/* Botão Visitar perfil */
.social-body .btn-outline {
  border: 1px solid #FFD700 !important;
  color: #FFD700 !important;
}

/* Botão Abrir WhatsApp */
.social-body .btn-primary {
  background: linear-gradient(90deg, #FFD700, #FFC300) !important;
  color: #000 !important;
  box-shadow: 0 0 20px rgba(255,215,0,0.5) !important;
}

.social-body .btn-primary:hover {
  box-shadow: 0 0 30px rgba(255,215,0,0.8) !important;
}

/* ===================================== */
/* MAP CARD - PADRÃO DOURADO */
/* ===================================== */

.map-card {
  background: #0f0f0f !important;
  border: 1px solid #FFD700 !important;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* Todos os textos */
.map-card,
.map-card div,
.map-card a {
  color: #FFD700 !important;
  text-decoration: none;
}

/* Ícone */
.map-card .map-ic {
  color: #FFD700 !important;
  width: 28px;
  height: 28px;
}

/* Hover mais premium */
.map-card:hover {
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6) !important;
  transform: translateY(-3px);
}

/* Texto menor (sub) levemente mais suave */
.map-card .map-sub {
  opacity: 0.85;
}

/* ===================================== */
/* EFEITO 3D - BOTÕES SOCIAL */
/* ===================================== */

.social-body .btn-outline,
.social-body .btn-primary {
  transition: all 0.25s ease;
  transform: translateY(0) scale(1);
}

/* Efeito ao passar o mouse */
.social-body .btn-outline:hover,
.social-body .btn-primary:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

/* Efeito ao clicar */
.social-body .btn-outline:active,
.social-body .btn-primary:active {
  transform: translateY(-2px) scale(0.98);
}

/* ===================================== */
/* DEPOIMENTOS - FUNDO GRADIENTE PREMIUM */
/* ===================================== */

.depo-card {
  background: linear-gradient(
    145deg,
    #1a1a1a 0%,
    #0f0f0f 40%,
    #000000 70%,
    #141414 100%
  ) !important;

  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s ease;
}

/* Texto branco para contraste */
.depo-card p,
.depo-card h4 {
  color: #ffffff;
}

/* Nome levemente dourado */
.depo-card h4 {
  color: #FFD700;
  margin-top: 12px;
}

/* Efeito ao passar o mouse */
.depo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border: 1px solid #FFD700;
}

/* ===================================== */
/* BOTÃO MATRICULE-SE - PULSO REAL */
/* ===================================== */

.btn-matricula {
  position: relative;
  background: linear-gradient(90deg, #FFD700, #FFC300);
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  padding: 14px 28px;
  text-decoration: none;
  display: inline-block;
  overflow: visible;
  z-index: 1;
}

/* CÍRCULO DE PULSO */
.btn-matricula::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: rgba(255, 215, 0, 0.6);
  z-index: -1;
  animation: pulseReal 1.6s infinite;
}

/* ANIMAÇÃO */
@keyframes pulseReal {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Hover */
.btn-matricula:hover {
  transform: scale(1.08);
  transition: 0.3s ease;
}

.plano-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* distribui o conteúdo */
}

.plano-conteudo {
  flex-grow: 1; /* ocupa o espaço disponível */
}

.btn-plano {
  margin-top: 20px;
  align-self: center;
}

/* =========================================
   CENTRALIZAR "NOSSOS PLANOS" NO DESKTOP
   (cola no final do CSS da página de planos)
========================================= */

/* 1) garante que o layout não estoure/empurre pro lado */
html, body{
  width: 100%;
  overflow-x: hidden;
}

/* 2) wrapper genérico do bloco de planos (pega vários nomes) */
#planos, .planos, .plans, .section-planos, .section-plans, .pricing, .pricing-section{
  width: 100%;
}

/* 3) container interno: centraliza e limita largura */
#planos .container, .planos .container, .plans .container,
.section-planos .container, .section-plans .container,
.pricing .container, .pricing-section .container,
.planos-container, .plans-container, .pricing-container,
.container-planos, .container-plans{
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* 4) grid/flex dos cards: centraliza no desktop */
.planos-grid, .plans-grid, .pricing-grid,
.cards-planos, .cards-plans, .pricing-cards,
.planos-cards, .plans-cards,
.cards, .cards-grid{
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 26px;

  justify-content: center; /* ✅ centraliza o conjunto */
  align-items: stretch;
}

/* 5) card (pega vários nomes comuns) */
.plano-card, .plan-card, .pricing-card, .card-plano, .card-plan{
  width: 100%;
  max-width: 360px;         /* ✅ evita “cards gigantes” e ajuda a centralizar */
  margin-left: auto;
  margin-right: auto;
}

/* 6) responsivo */
@media (max-width: 1100px){
  .planos-grid, .plans-grid, .pricing-grid,
  .cards-planos, .cards-plans, .pricing-cards,
  .planos-cards, .plans-cards,
  .cards, .cards-grid{
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 760px){
  .planos-grid, .plans-grid, .pricing-grid,
  .cards-planos, .cards-plans, .pricing-cards,
  .planos-cards, .plans-cards,
  .cards, .cards-grid{
    grid-template-columns: 1fr;
  }
}

html { scroll-behavior: smooth; }

/* Inputs padrão */
input,
select {
  width: 100%;
  padding: 14px;
  background: #0d0d0d;
  border: 1px solid #1c1c1c;
  border-radius: 8px;
  color: #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

input::placeholder {
  color: #666;
}

/* Campo de data */
input[type="date"] {
  color: #888;
}

/* Ícone do calendário */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  opacity: 0.6;
  cursor: pointer;
}
