/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #111;
}

h1, h2, h3, h4 {
  font-weight: 600;
}

p {
  font-weight: 400;
  line-height: 1.6;
}

/* CONTAINER PADRÃO */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= HEADER ================= */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-weight: 600;
  font-size: 20px;
}

.menu a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 3;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* BOTÃO */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #0073E6;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
}

/* ================= VIDEO ================= */

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2;
}

.desktop { display: block; }
.mobile { display: none; }

/* ================= MENU MOBILE ================= */

.menu-mobile {
  display: none;
  font-size: 25px;
  cursor: pointer;
}

.menu-lateral {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100%;
  background: #fff;
  padding: 40px 20px;
  transition: 0.4s;
  z-index: 1000;
}

.menu-lateral.ativo {
  right: 0;
}

.menu-lateral a {
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
  color: #333;
}

/* BOTÃO FECHAR */
.fechar-menu {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  transition: 0.3s;
}

.fechar-menu:hover {
  transform: rotate(90deg);
  color: #0073E6;
}

/* ================= RESPONSIVO ================= */

@media(max-width: 768px){

  .menu {
    display: none;
  }

  .menu-mobile {
    display: block;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }
}

/* ================= SEÇÃO PREMIUM ================= */

.premium {
  padding: 10px 0 10px;
  background: linear-gradient(180deg, #f5f7fa, #ffffff);
  text-align: center;
}


/* TÍTULO */
.titulo-secao {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0073E6;
  font-weight: 600;
}

/* DESCRIÇÃO */
.descricao {
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #555;
}

/* GRID CORRIGIDO (AQUI ESTAVA O ERRO) */
.cards-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


/* CARD */
.card-premium {
  position: relative;
  width: 100%;
  padding: 35px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.5s ease;
  text-align: left;
  overflow: hidden;
}

/* BORDA PREMIUM */
.card-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, #0073E6, transparent);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ÍCONE */
.icone {
  font-size: 40px;
  margin-bottom: 15px;
}

/* TÍTULO */
.card-premium h3 {
  color: #0073E6;
  margin-bottom: 10px;
  font-size: 20px;
}

/* TEXTO */
.card-premium p {
  color: #333;
  font-size: 15px;
}

/* DESTAQUE */
.card-premium.destaque {
  transform: scale(1.05);
  background: linear-gradient(135deg, #0073E6, #00AEEF);
}

.card-premium.destaque h3,
.card-premium.destaque p {
  color: #fff;
}

/* HOVER */
.card-premium:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* RESPONSIVO GRID */
@media(max-width: 900px){
  .cards-premium {
    grid-template-columns: 1fr;
  }
}






/* ACCORDION */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}



/* TOPO */
.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  color: #0073E6;
}

/* ÍCONE */
.icone {
  font-size: 22px;
  transition: 0.3s;
}

/* CONTEÚDO */
.conteudo {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: 0.4s ease;
}

.conteudo p {
  margin: 15px 0;
  color: #333;
}

/* ESTRELAS */
.estrelas {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 15px;
}

/* ATIVO */
.item.ativo .conteudo {
  max-height: 200px;
}

.item.ativo .icone {
  transform: rotate(45deg);
}

/* HOVER PREMIUM */
.item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}



/* SEÇÃO */
.depoimentos {
  padding: 100px 0;
  background: linear-gradient(180deg, #f5f7fa, #ffffff);
}

/* GRID 2x2 */
.grid-depoimentos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

/* CARD */
.item {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

/* BORDA GRADIENTE */
.item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #0073E6, transparent);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* TOPO */
.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  color: #0073E6;
  z-index: 2;
  position: relative;
}

/* ÍCONE */
.icone {
  font-size: 24px;
  transition: 0.4s;
}

/* CONTEÚDO */
.conteudo {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.5s ease;
}

.conteudo p {
  margin: 15px 0;
  color: #333;
  line-height: 1.5;
}

/* ESTRELAS */
.estrelas {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 20px;
}

/* ATIVO */
.item.ativo .conteudo {
  max-height: 200px;
}

.item.ativo .icone {
  transform: rotate(45deg) scale(1.2);
}

/* HOVER PREMIUM */
.item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* RESPONSIVO */
@media(max-width: 768px){
  .grid-depoimentos {
    grid-template-columns: 1fr;
  }
}



/* FOOTER BASE */
.footer-ultra {
  position: relative;
  background: linear-gradient(135deg, #0050b3, #0073E6, #00AEEF);
  color: #fff;
  padding: 100px 0 40px;
  overflow: hidden;
}

/* ONDAS */
.waves {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  z-index: 1;
}

.waves span {
  position: absolute;
  width: 200%;
  height: 120px;
  background: rgba(255,255,255,0.08);
  border-radius: 40%;
  animation: wave 8s infinite linear;
}

.waves span:nth-child(2) {
  animation-duration: 10s;
  opacity: 0.6;
}

.waves span:nth-child(3) {
  animation-duration: 12s;
  opacity: 0.4;
}

@keyframes wave {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* GRID */
.footer-grid {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* COLUNA */
.footer-col {
  flex: 1;
  min-width: 250px;
}

/* TÍTULOS */
.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

/* TEXTO */
.footer-col p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

/* LINHA ANIMADA */
.footer-col ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: #fff;
  transition: 0.3s;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

/* BOTÃO */
.btn-footer {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.4s;
}

.btn-footer:hover {
  background: #fff;
  color: #0073E6;
  transform: translateY(-4px);
}

/* SOCIAL */
.social {
  margin-top: 20px;
}

.social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.social a:hover {
  transform: translateY(-5px) scale(1.2);
  color: #fff;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  opacity: 0.8;
}

/* RESPONSIVO */
@media(max-width: 768px){
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}


/* ESPAÇO PREMIUM ANTES DO FOOTER */
.premium:last-of-type {
  margin-bottom: 120px;
}

.btn {
  position: relative;
  z-index: 5;
}



.icone-svg {
  margin-bottom: 15px;
  transition: 0.4s;
}

/* EFEITO PREMIUM NO HOVER */
.card-premium:hover .icone-svg {
  transform: scale(1.15) rotate(3deg);
}


.full {
  background: linear-gradient(135deg, #0073E6, #00AEEF);
  color: #fff;
}

.full h3,
.full p {
  color: #fff;
}

/* ================= PADRÃO DOS CARDS ================= */
.card-premium {
  width: 300px;
  max-width: 300px;
}

/* ================= SOMENTE DESIGN GRÁFICO FULL ================= */
.card-premium.full {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

/* GARANTE QUE QUEBRE LINHA */
.cards-premium {
  display: flex;
  flex-wrap: wrap;
}

/* DESTAQUE PREMIUM */
.card-premium.full {
  padding: 50px;
  text-align: center;

  background: linear-gradient(135deg, #0073E6, #00AEEF);
  color: #fff;
}

/* TEXTO BRANCO */
.card-premium.full h3,
.card-premium.full p {
  color: #fff;
}

/* ÍCONE BRANCO */
.card-premium.full svg path,
.card-premium.full svg circle {
  stroke: #fff;
}

/* CENTRALIZA OS CARDS */
.cards-premium {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ESSA LINHA resolve */
  gap: 30px;
}

/* CENTRALIZA CONTEÚDO INTERNO DO CARD */
.card-premium {
  text-align: center;
  align-items: center;
}

/* CENTRALIZA ÍCONE */
.icone-svg {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}


.portfolio-premium {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 60px;
}

.portfolio-item {
  display: flex;
  align-items: center;
  gap: 60px;
  opacity: 0;
  transform: translateX(0);
}

.portfolio-item.esquerda {
  transform: translateX(-80px);
}

.portfolio-item.direita {
  flex-direction: row-reverse;
  transform: translateX(80px);
}

.portfolio-item.ativo {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s ease;
}

.portfolio-text {
  flex: 1;
}

.portfolio-text h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.portfolio-text p {
  margin-bottom: 15px;
  opacity: 0.8;
}

.portfolio-icon {
  margin-bottom: 15px;
}

.portfolio-box {
  flex: 1;
  background: linear-gradient(135deg, #0a1f44, #0f2e66);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  text-align: center;
}

.portfolio-box a {
  margin-top: 15px;
  display: inline-block;
}

/* AJUSTE PREMIUM */
.cards-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card-premium {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 25px;
  min-height: 260px;
}

.card-premium .icone-svg {
  margin-bottom: 15px;
}

.card-premium h3 {
  margin-bottom: 5px;
}

.card-premium p {
  margin-bottom: 20px;
}

.card-premium .btn {
  margin-top: auto;
}


@media (max-width: 768px) {

  .portfolio-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }

  .portfolio-text {
    text-align: center;
    width: 100%;
  }

  .portfolio-box {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .portfolio-icon {
    display: flex;
    justify-content: center;
  }

}

.cards-premium {
  justify-content: center;
  justify-items: center;
}

.card-premium {
  margin: 0 auto;
}

@media(max-width: 768px){
  .cards-premium {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .card-premium {
    width: 100%;
    max-width: 340px; /* deixa bonito no mobile */
    margin: 0 auto;
  }
}

.icone-servico svg {
  width: 44px;
  height: 44px;
  stroke: #0073E6;
  fill: none;
  transition: 0.4s;
}

.icone-beneficio svg {
  width: 44px;
  height: 44px;
  stroke: #00AEEF;
  fill: none;
  transition: 0.4s;
}

.icone-seguranca svg {
  width: 44px;
  height: 44px;
  stroke: #00C853;
  fill: none;
  transition: 0.4s;
}

.icone-premium svg {
  width: 48px;
  height: 48px;
  stroke: #FFD700;
  fill: none;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
  transition: 0.4s;
}

.card-premium:hover svg {
  transform: scale(1.15) rotate(4deg);
}



.card-premium svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke-width: 2;
  transition: 0.4s;
}

/* ================= DEPOIMENTOS CORRIGIDO ================= */

.item {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.4s ease;
}

/* TOPO sempre visível */
.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  color: #0073E6;
}

/* ================= DEPOIMENTOS FECHADO POR PADRÃO ================= */

.item {
  overflow: hidden;
}

/* sempre fechado por padrão */
.item .conteudo {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.4s ease;
}

/* aberto só quando tem ativo */
.item.ativo .conteudo {
  max-height: 300px;
  opacity: 1;
  padding: 15px 20px;
}


.card-premium {
  padding: 20px;        /* antes estava 25/35/50 */
  min-height: auto;     /* remove altura forçada */
}


.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 900px) {
  .grid-cards {
    grid-template-columns: 1fr;
  }
}



.card-premium.full {
  grid-column: 1 / -1; /* ocupa todas as colunas */
  max-width: 600px;    /* controla largura */
  margin: 0 auto;      /* centraliza */
  text-align: center;  /* opcional (fica mais bonito) */
}



.icone-topo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.icone-topo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* garante padrão visual */
.card-premium {
  text-align: center;
}


.btn {
  background: linear-gradient(120deg, #e5e5e5, #dcdcdc);
  color: #111;
  border-radius: 30px;
  padding: 12px 28px;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: botaoGradient 4s ease-in-out infinite;
}

/* animação */
@keyframes botaoGradient {
  0% {
    background: linear-gradient(120deg, #e5e5e5, #dcdcdc);
  }
  50% {
    background: linear-gradient(120deg, #d6ecff, #0073E6);
    color: #fff;
  }
  100% {
    background: linear-gradient(120deg, #e5e5e5, #dcdcdc);
  }
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,115,230,0.3);
}


@keyframes botaoGradient {
  0% {
    background: linear-gradient(120deg, #f0f0f0, #e2e2e2);
  }
  50% {
    background: linear-gradient(120deg, #e0f2ff, #4aa3ff);
  }
  100% {
    background: linear-gradient(120deg, #f0f0f0, #e2e2e2);
  }
}



/* animação base */
@keyframes botaoGradient {
  0% {
    background: linear-gradient(120deg, #e5e5e5, #dcdcdc);
    color: #111;
  }
  50% {
    background: linear-gradient(120deg, #d6ecff, #0073E6);
    color: #fff;
  }
  100% {
    background: linear-gradient(120deg, #e5e5e5, #dcdcdc);
    color: #111;
  }
}

/* BOTÃO PADRÃO */
.btn {
  animation: botaoGradient 4s ease-in-out infinite;
}

/* BOTÃO FOOTER (WHATSAPP) */
.btn-footer {
  animation: botaoGradient 4s ease-in-out infinite;
  border-radius: 30px;
  transition: 0.3s;
}

/* HOVER PREMIUM */
.btn:hover,
.btn-footer:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,115,230,0.3);
}


/* REMOVE ANIMAÇÃO DO BOTÃO DO HEADER */
.header .btn {
  animation: none !important;
  background: #0073E6;
  color: #fff;
}

/* REMOVE ANIMAÇÃO DO BOTÃO DO MENU MOBILE */
.menu-lateral .btn {
  animation: none !important;
  background: #0073E6;
  color: #fff;
}


.hero .btn {
  animation: botaoGradient 4s ease-in-out infinite;
  background: linear-gradient(120deg, #d6ecff, #0073E6);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,115,230,0.4);
}



/* CONTAINER */
.botoes-flutuantes {
  position: fixed;
  bottom: 25px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 9999;
}

/* ================= BOTÃO DIREITA ================= */
.btn-fixo {
  pointer-events: auto;
  margin-left: auto;
  padding: 14px 24px;
  background: linear-gradient(135deg, #0073E6, #00c6ff);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;

  /* 🔥 SOMBRA PREMIUM */
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.25),     /* sombra base */
    0 5px 10px rgba(0, 115, 230, 0.4),   /* glow azul */
    0 0 0 2px rgba(255, 255, 255, 0.15); /* leve contorno */

  transition: all 0.3s ease;
  animation: pulse 3s infinite;
}
.btn-fixo:hover {
  transform: translateY(-5px) scale(1.05);

  background: linear-gradient(135deg, #003d99, #0066cc);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 12px 25px rgba(0, 100, 255, 0.8),
    0 0 0 4px rgba(255, 255, 255, 0.25),
    inset 0 -3px 8px rgba(0,0,0,0.35);
}

/* ================= BOTÃO ESQUERDA ================= */
.btn-topo {
  pointer-events: auto;
  background: #111;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

/* VISÍVEL */
.btn-topo.ativo {
  opacity: 1;
  transform: translateY(0);
}

.btn-topo:hover {
  background: #0073E6;
}

/* ================= ANIMAÇÃO PREMIUM ================= */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0,115,230,0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0,115,230,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0,115,230,0);
  }
}


.hero-interno {
  position: relative;

  /* 🔥 FORÇA LARGURA TOTAL SEM LIMITE */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  
  min-height: 50vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: #fff;

  background-image: url("../img/1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* overlay único */
.hero-interno::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* conteúdo centralizado */
.hero-content {
  position: relative;
  z-index: 2;

  max-width: 900px;
  padding: 0 20px;
}

/* texto */
.hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .hero-interno {
    min-height: 45vh;
    background-image: url("../img/2.jpg");
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }
}


/* ================= FIX GLOBAL MOBILE OVERFLOW ================= */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* garante que tudo respeite tela */
* {
  box-sizing: border-box;
}

/* imagens nunca estouram */
img, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* container mais seguro */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

/* ================= CARDS PREMIUM RESPONSIVO REAL ================= */

.cards-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-items: center;
}

/* REMOVE O PROBLEMA PRINCIPAL */
.card-premium {
  width: 100%;          /* ❌ remove 300px fixo */
  max-width: 360px;     /* controla estética */
  min-height: auto;
  text-align: center;
}

/* ícone nunca estoura */
.icone-topo img {
  max-width: 60px;
  width: 100%;
  height: auto;
}

/* ================= HERO SEGURA ================= */

.hero,
.hero-interno {
  overflow: hidden;
  position: relative;
}

/* vídeo nunca cria scroll horizontal */
.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= RESPONSIVO FORTE ================= */

@media (max-width: 1024px) {
  .cards-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-premium {
    grid-template-columns: 1fr;
  }

  .card-premium {
    max-width: 100%;
  }

  .hero {
    height: auto;
    min-height: 50vh;
  }
}

/* ================= GARANTIA EXTRA ================= */

.menu-lateral {
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
  }

  .hero .container {
    padding-top: 70px; /* evita ficar embaixo do header */
  }
}


@media (max-width: 768px) {

  /* somente páginas internas */
  body.internas .hero {
    height: 70vh;
    min-height: 70vh;
  }

}
