* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "gravita-hum", sans-serif;
}

body {
  background-color: #f9f9f9;
}

.favicon {
  width: 100%;
  height: auto;
}

/* animação do scrool mais suave */
html {
  scroll-behavior: smooth;
}

.efeito-cursor {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.efeito-cursor:hover {
  transform: translateY(-10px);
}

/* ====== LOGO NO HEADER ====== */
.header-img {
  height: 5rem; /* 80px */
  width: 100%;
}

/* ====== HEADER BASE (Mobile First) ====== */
header {
  background-color: #fff;
  padding: 0.625rem; /* 10px */
  color: #6c6d70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.05); /* 2px 6px */
  flex-wrap: wrap; /* permite quebra no mobile */
}

/* ====== MENU ====== */
header .menu-principal ul {
  display: flex;
  gap: 1.25rem; /* 20px */
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap; /* adapta para telas pequenas */
  justify-content: center; /* centraliza no mobile */
}

/* LINKS PRINCIPAIS */
header .menu-principal > ul > li > a {
  position: relative;
  color: #a01f29;
  font-weight: bold;
  font-size: 1.125rem; /* 18px */
  text-decoration: none;
  transition: color 0.3s ease;
}

/* ANIMAÇÃO DO SUBLINHADO */
header .menu-principal > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.125rem; /* 2px */
  width: 0;
  background-color: #a01f29;
  transition: width 0.3s ease;
}

header .menu-principal > ul > li > a:hover::after {
  width: 100%;
}

header .menu-principal > ul > li > a:hover {
  color: #a01f29;
}

/* ====== DROPDOWN ====== */
header .dropdown {
  position: relative;
}

header .dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background-color: #fff;
  min-width: 12.5rem; /* 200px */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  padding: 0.625rem 0; /* 10px */
  z-index: 10;
  opacity: 0;
  transform: translateY(0.625rem); /* 10px */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

header .dropdown-menu li a {
  color: #a01f29;
  padding: 0.625rem 1.25rem; /* 10px 20px */
  display: block;
  font-size: 1rem; /* 16px */
  text-decoration: none;
}

header .dropdown-menu li a:hover {
  background-color: #f8f8f8;
  color: #a01f29;
}

/* EXIBE DROPDOWN NO HOVER */
header .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

header .seta {
  font-size: 0.75rem; /* 12px */
  margin-left: 0.3125rem; /* 5px */
}

header .efeito-cursor:hover .dropdown-menu {
  display: block;
}

/* ====== MENU HAMBÚRGUER ====== */
.menu-hamburguer {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: all 0.3s ease;
}

.menu-hamburguer span {
  width: 2rem;
  height: 0.25rem;
  background: #a01f29;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

.menu-hamburguer.active span:first-child {
  transform: rotate(45deg);
}

.menu-hamburguer.active span:nth-child(2) {
  opacity: 0;
}

.menu-hamburguer.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ====== SOCIAL ICONS ====== */
/* .social-icons2 {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
} */

.social-icons2 a svg {
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s ease;
}

.social-icons a:hover svg {
  transform: scale(1.2);
}

/* GERAL: remove sublinhado */
body a {
  text-decoration: none;
}

/* ====== BANNER ====== */
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-image: url("./assets/IMAGEM BACKGROUND 1.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 500px;
}

.banner-separador {
  width: 100%;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}

.separador-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.sobre {
  width: 100%;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 2rem auto 2rem auto;
  padding: 2rem 2rem 2rem 2rem; /* aumenta padding-top para 10rem (160px) */
  background-color: #f9f9f9;
}

/* ajuste de posição de formato da imagem */
.container-sobre {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem; /* 40px */
  padding: 1.25rem; /* 20px */
}

/* ajuste do campo texto por inteiro */
.texto-sobre {
  flex: 1;
  min-width: 15.625rem; /* 250px */
}

/* título do sobre */
.texto-sobre h2 {
  font-size: 3rem; /* 40px */
  font-weight: 800;
  color: #545454;
  margin-bottom: 1.25rem; /* 20px */
}

/* parágrafo do texto sobre */
.texto-sobre p {
  font-size: 1.5rem;
  color: #545454;
  line-height: 1.6;
  margin-bottom: 1.5625rem;
  flex: 1 1 28.125rem;
  max-width: 37.5rem;
}

.imagens-sobre {
  flex: 1 1 auto;
  position: relative;
  max-width: 24rem; /* reduzido de 28.125rem */
  min-height: 550px; /* reduzido para ajustar proporção */
  margin: 0 2rem 0 0;
}

/* Imagem principal */
.fachada-empire {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  display: block;
  height: auto;
  z-index: 0;
}

/* Imagem sobreposta */
.recep-empire {
  width: 100%; /* reduzida de 80% */
  max-width: 16rem; /* reduzido de 22rem */
  position: absolute;
  right: 0;
  top: 240px; /* ajustado proporcionalmente */
  z-index: 1;
  object-fit: cover;
  border-radius: 1rem;
}

.conheca-empire {
  background-color: #979797;
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  color: #f9f9f9;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 5rem;
}

.conheca-empire .subtitulo {
  font-size: 2.1rem;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #fff;
  font-style: light;
  font-weight: 320;
}

.conheca-empire .titulo {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
}

.cartoes {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cartao {
  background-color: white;
  color: #545454;
  flex: 1 1 300px;
  padding: 1rem 1.5rem;
  border-radius: 57px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cartao iconify-icon {
  color: #a01f29;
  margin-bottom: 1rem;
  height: auto;
  max-width: 240px;
}

.cartao h3 {
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #545454;
}

.cartao p {
  font-size: 1.125rem;
  line-height: 100%;
  color: #545454;
}

/* container inteiro */
.porque-empire {
  background-color: #f9f9f9;
  margin-bottom: 150px;
  max-width: 1200px;
  margin: 2rem auto 9.375rem auto;
}

/* titulo */
.texto-empire h2 {
  font-size: 2.5rem;
  font-weight: 250;
  color: #545454;
  line-height: 1.2;
  margin-bottom: 50px;
}

/* campo texto */
.texto-empire {
  flex: 1;
  padding: 0 40px;
}

.texto-empire h2 span {
  color: #a01f29;
  font-weight: 700;
}

/* paragrafo */
.texto-empire p {
  font-size: 22px;
  line-height: 1.1;
  color: #545454;
  margin-bottom: 15px;
  font-weight: 320;
}

.porque-empire .container-empire {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.imagem-empire {
  flex: 1 1 400px;
  text-align: center;
}

.imagem-empire img {
  max-width: 700px; /* ou outro tamanho fixo */
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0 auto;
  object-fit: cover; /* para preencher bem o círculo */
  display: block;
}

.parceiros-estatico h2 {
  font-size: 1.8rem;
  margin-bottom: 50px;
  color: #27333e;
}

.parceiros-estatico {
  /* padding: 60px 20px; */
  text-align: center;
  background-color: #f9f9f9;
  margin-bottom: 100px;
}

.parceiros-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  margin: 0 auto;
}

.parceiros-grid img {
  width: 100%; /* preenche a célula do grid */
  height: 55px; /* altura fixa para padronizar */
  object-fit: contain; /* evita corte e mantém proporção */
  display: block;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.parceiros-grid img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
  border-radius: 15px; /* borda mais arredondada */
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease,
    border-radius 0.3s ease;
}

.modal-parceiro {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-conteudo {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.modal-fechar {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  font-weight: bold;
  color: #27333e;
  cursor: pointer;
}

.modal-conteudo h3 {
  margin-bottom: 1rem;
  color: #a01f29;
}

.modal-conteudo p {
  color: #27333e;
  line-height: 1.5;
}

.saiba-mais {
  margin-top: 1rem;
  padding: 10px 20px;
  background-color: #a01f29;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* titulo "escolha seu plano" */
.planos-saude h1 {
  color: #a01f29;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-size: 3rem;
  margin-bottom: 15px;
}

.sub-plano {
  font-size: 1.5rem;
  font-weight: 200;
  font-family: "gravita-hum", sans-serif;
  font-style: extra-light;
  width: 100%;
  color: #545454;
  margin-bottom: 50px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sub-plano span {
  font-weight: 700;
  font-style: bold;
}

/* paragrafo nos textos dos planos */
.planos-saude p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #333;
}

/* strong vermelho nos textos dos planos */
.planos-saude p strong {
  color: #b30000;
}

/* container dos planos */
.container-planos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 150px;
}

.container-planos p {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  font-size: 1.125rem;
  /*  margin-left: 60px; */
  padding: 0 auto;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

/* texto abaixo dos circulos de planos */
.plano {
  /* width: 280px; */
  text-align: center;
}

/* mouse sobre os planos */
.plano:hover {
  transform: scale(1.05);
  cursor: pointer;
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plano img {
  width: 100%;
  max-width: 300px;
  height: auto; /* ajusta altura conforme proporção */
  aspect-ratio: 3 / 2; /* garante altura proporcional (pode mudar para 4/3, 3/2, etc) */
  object-fit: cover; /* ou "contain" se preferir ver tudo */
  border: 2px solid #ccc; /* ou a cor que quiser */
  border-radius: 8px; /* opcional: cantos arredondados */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* opcional: sombra */
  margin-bottom: 10px;
}

/* .plano img {
  width: 100%;
  max-width: 340px;
  height: 200px;
  object-fit: cover;
  height: 570px;
} */

/* container inteiro dos planos oferecidos */
.plano-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* verificar!!! */
.plano-imagem img {
  width: 100%;
  max-width: 760px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* container dos textos dos planos escolhidos */
.plano-texto {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plano-texto h4 {
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #444;
  margin: 0;
}

/* titulo dos planos  */
.plano-texto h3 {
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #444;
  margin: 0;
}

/* paragrafos dos planos */
.plano-texto p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

/* strong das palavras chaves */
.vermelho {
  color: #a01f29;
  font-weight: bold;
}

/* ajuste das imagens dos planos */
.plano-imagem {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

/* botão de simulação */
.btn-simular {
  margin-top: 30px;
  background-color: #999;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  margin-left: 60px;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  align-items: center;
  gap: 12px;
  max-width: max-content;
  margin-top: 20px;
  cursor: pointer;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

/* efeito ao passar o mouse no botão */
.btn-simular:hover {
  background-color: #777;
}

.arrow {
  font-size: 30px;
}

.hide {
  display: none;
}

/* Escurece o fundo */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Caixa do modal */
.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

/* Botão de fechar */
.fechar-modal {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

/* Campos */
.modal-content label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.modal-content input {
  width: 100%;
  margin-top: 5px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.modal-content button[type="submit"] {
  margin-top: 20px;
  width: 100%;
  background-color: #bf1e24;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.hide {
  display: none;
}

.hide {
  display: none;
}

#planos {
  scroll-margin-top: 90px;
  /* ajuste esse valor conforme a altura do seu menu fixo */
}

/*  */

#individual {
  scroll-margin-top: 140px;
}

#empresarial {
  scroll-margin-top: 140px;
}

#adesao {
  scroll-margin-top: 140px;
}

#odonto {
  scroll-margin-top: 140px;
}

#corretor {
  scroll-margin-top: 70px;
}

#sobre {
  scroll-margin-top: 135px;
}

.area-corretor {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  margin-bottom: 100px;
}

.titulo-corretor {
  font-weight: 320;
  font-size: 2rem;
  color: #545454;
  margin-bottom: 40px;
  font-family: "Gravita Hum", sans-serif;
}

.titulo-corretor .destaque-vermelho {
  color: #a01f29;
  font-weight: bold;
}

.botoes-corretor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.botao-corretor {
  background-color: #7a7a7a;
  color: #fff;
  min-width: 200px;
  max-width: 505px;
  height: 200px;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  /*   min-width: 500px; */
}

.botao-corretor:hover {
  transform: scale(1.05);
}

.botao-corretor img {
  width: 100%;
  max-width: 100px;
  height: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.botao-corretor p {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}

.descricao-cards {
  font-size: 1.5rem;
  /* margin-bottom: 20px; */
  padding: 20px;
}

.parceiro {
  padding: 0 40px;
  background-color: #f9f9f9;
  max-width: 1200px;
  margin: 2rem auto 9.375rem auto;
}

.form-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.texto-formulario {
  width: 100%;
  max-width: 500px;
  color: #333;
}

.titulo-form {
  font-weight: 320;
  font-size: 2rem;
  color: #545454;
  margin-bottom: 20px;
  line-height: 1.1;
}

.titulo-form .vermelho {
  color: #a01f29;
}

.descricao-form {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.1;
}

.formulario {
  max-width: 400px;
  flex: 1;
  background-color: #545454;
  padding: 15px 15px;
  border-radius: 20px;
  color: #fff;
  margin-left: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* From Uiverse.io by AmIt-DasIT */
.container-input {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
  color: #979797;
  margin: 30px 0;
  font-weight: 700;
}

.container-input .label {
  font-size: 15px;
  padding-left: 10px;
  position: absolute;
  top: 13px;
  transition: 0.3s;
  pointer-events: none;
}

.input {
  width: 100%;
  /* min-width: 300px; */
  height: 45px;
  border: none;
  outline: none;
  padding: 0px 7px;
  border-radius: 15px;
  color: #fff;
  font-size: 15px;
  background-color: transparent;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 1),
    -1px -1px 6px rgba(255, 255, 255, 0.4);
}

.input:focus {
  border: 2px solid transparent;
  color: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 1),
    -1px -1px 6px rgba(255, 255, 255, 0.4), inset 3px 3px 10px rgba(0, 0, 0, 1),
    inset -1px -1px 6px rgba(255, 255, 255, 0.4);
}

.container-input .input:valid ~ .label,
.container-input .input:focus ~ .label {
  transition: 0.3s;
  padding-left: 2px;
  transform: translateY(-35px);
}

.container-input .input:valid,
.container-input .input:focus {
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 1),
    -1px -1px 6px rgba(255, 255, 255, 0.4), inset 3px 3px 10px rgba(0, 0, 0, 1),
    inset -1px -1px 6px rgba(255, 255, 255, 0.4);
}

/* estilo do botao */
.botao-parceiro {
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 1),
    -1px -1px 6px rgba(255, 255, 255, 0.4), inset 3px 3px 10px rgba(0, 0, 0, 1),
    inset -1px -1px 6px rgba(255, 255, 255, 0.4);
  background-color: #a01f29;
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 15px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 5px;
}

.botao-parceiro:hover {
  background-color: #a01f29;
}

/* efeito ao passar o moouse sobre o botão */
.botao-parceiro:hover {
  background-color: #a01f29;
}

.botao-parceiro:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.contato-container {
  max-width: 1200px;
  margin: 2rem auto 9.375rem auto;
  padding: 0 40px;
}

/* campo dos textos */
.fale-conosco {
  padding: 0 40px;
  background-color: #f9f9f9;
  margin-bottom: 100px;
}

/* sub div do contato */
.contato-info {
  flex: 1;
  min-width: 300px;
}

.fale-conosco span {
  color: #a01f29;
}

/* titulo "fale conosco" */
.contato-info h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* distancia entre os textos sobre as imagens dos itens  */
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

/* img dos itens  */
.info-item img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

/* texto e-mail */
.info-item a {
  color: #a01f29;
  font-size: 1.125rem;
  margin: 0;
  background-color: #f9f9f9;
  border: none;
  cursor: pointer;
}

.info-item p {
  color: #545454;
  font-size: 1.5rem;
  margin: 0;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* /* subtitulo dos contatos */
.info-item strong {
  font-weight: 250;
  font-size: 2rem;
  color: #545454;
  padding: 20px;
}
*/

/* mouse sobre e-mail */
.info-item a:hover {
  text-decoration: underline;
}

.endereco {
  font-size: 1.125rem;
  color: #a01f29;
}

.fale-conosco .contato-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.imagem-empire-contato {
  flex: 1 1 400px;
  text-align: center;
}

.imagem-empire-contato img {
  max-width: 700px; /* ou outro tamanho fixo */
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0 auto;
  object-fit: cover; /* para preencher bem o círculo */
  display: block;
}

/* footer como um todo */
.footer {
  background: linear-gradient(135deg, #444, #444);
}

/* container do footer */
.footer-container {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* imagem de dentro do footer */
.footer-logo img {
  height: auto;
  width: 100px;
  filter: drop-shadow(0 0 5px rga(255, 255, 255, 0.7));
  margin-top: 30px;
}

/* copy do footer */
.footer-copy {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
}

.footer-contact,
.footer-links,
.footer-social {
  flex: 1 1 200px;
  margin-top: 30px;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
  font-size: 16px;
  margin-bottom: 15px;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
  color: #fff;
  letter-spacing: 2px;
}

.footer-contact p,
.footer-links ul {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

.footer-contact a,
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3 ease;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-social .social-icons {
  display: flex;
  gap: 15px;
}

.footer-social a sgv {
  transition: transform 0.3 ease;
}

.footer-social a :hover svg {
  transform: scale(1.2);
}

/* Esconde o hamburger por padrão no desktop */
.menu-hamburguer {
  display: none;
  font-size: 30px;
  cursor: pointer;
  user-select: none;
}

.social-icons2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.social-icons2 a svg {
  transition: transform 0.3s ease;
}

.social-icons a:hover svg {
  transform: scale(1.2);
}

/* partindo para a media querie */

/* ====== RESPONSIVIDADE ====== */

/* Mobile First - Telas pequenas (até 768px) */
@media (max-width: 780px) {
  /* Header responsivo */
  header {
    padding: 0.5rem;
    flex-direction: column;
    gap: 1rem;
    position: relative;
  }

  .header-img {
    height: auto;
  }

  /* Menu hambúrguer para mobile */
  .menu-hamburguer {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .menu-principal {
    display: none;
    width: 100%;
    order: 3;
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
  }

  .menu-principal.active {
    display: block;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .menu-principal ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 1rem 0;
  }

  .menu-principal ul li {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
  }

  .menu-principal ul li:hover {
    background-color: #f8f9fa;
  }

  .menu-principal ul li:last-child {
    border-bottom: none;
  }

  .menu-principal ul li a {
    display: block;
    padding: 0.5rem;
    font-size: 1rem;
  }

  /* Banner responsivo */
  .banner {
    height: auto;
    min-height: 400px;
    position: relative;
    background-size: 100% auto;
    background-position: center center;
    padding-bottom: 56.25%; /* Proporção 16:9 para garantir altura adequada */
  }

  /* Social icons no banner */
  .social-icons2 {
    display: none;
  }

  /* Separador responsivo */
  .banner-separador {
    display: none; /* Remove separator image from mobile */
  }

  /* Sobre responsivo */
  .sobre {
    padding: 0 1rem 1rem 1rem; /* Removido padding-top completamente */
    margin: 0 auto 5rem auto; /* Removido margin-top */
    margin-top: 0 !important; /* Força margin-top zero */
  }

  .container-sobre {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1rem;
  }

  .texto-sobre {
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
  }

  .imagens-sobre {
    flex-direction: column;
    gap: 1rem;
    min-height: auto; /* Remove o min-height para eliminar espaço vazio */
  }

  .fachada-empire,
  .recep-empire {
    display: none; /* Hide images on mobile */
  }

  /* Conheça Empire responsivo */
  .conheca-empire {
    padding: 1.5rem 1rem;
    margin-bottom: 3rem;
    border-radius: 0.75rem;
  }

  .conheca-empire .subtitulo {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .conheca-empire .titulo {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .cartoes {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .cartao {
    margin: 0 auto;
    max-width: 600px;
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .cartao iconify-icon {
    display: flex;
    margin: 0 auto;
    width: 200px;
    height: 200px;
  }

  .cartao h3 {
    font-size: 22px;
    margin-bottom: 0.5rem;
  }

  .cartao p {
    font-size: 20px;
    line-height: 1.4;
  }

  /* Por que Empire responsivo */
  .container-empire {
    margin: 0 auto;
    width: 80%;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .texto-empire h2 {
    font-size: 30px;
    text-align: center;
  }

  .texto-empire p {
    font-size: 24px;
    text-align: center;
  }

  .imagem-empire img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .porque-empire {
    margin: 0;
  }

  /* Parceiros responsivo */
  .parceiros-estatico {
    padding: 2rem 1rem;
    margin: 10px;
  }

  .parceiros-estatico h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .parceiros-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .parceiros-grid img {
    height: 60px;
    object-fit: contain;
  }

  /* Planos responsivo */
  .planos-saude {
    padding: 2rem 1rem;
  }

  .planos-saude h1 {
    font-size: 30px;
    margin-bottom: 1rem;
  }

  .sub-plano {
    font-size: 24px;
    line-height: 1.5;
  }

  .container-planos {
    display: grid;
    margin-bottom: 20px;
  }

  .plano {
    height: 200px;
  }

  .plano img {
    height: auto;
    width: 100%;
    max-height: 150px;
    object-fit: cover;
  }

  .plano-imagem img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .plano-texto {
    padding: 1rem;
  }

  .plano-texto h3 {
    font-size: 1.3rem;
  }

  .plano-texto p {
    font-size: 16px;
  }

  /* Área do Corretor responsivo */
  .area-corretor {
    margin: 0 auto;
    padding: 2rem 1rem;
  }

  .titulo-corretor {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .botoes-corretor {
    flex-direction: column;
    gap: 1.5rem;
  }

  .botao-corretor {
    width: 100px;
    margin: 0 auto;
    width: 100%;
    padding: 1.5rem;
  }

  .botao-corretor img {
    width: 100%;
    width: 300px;
    height: 300px;
  }

  /* Parceiro responsivo */
  .corretor-parceiro {
    padding: 2rem 1rem;
    margin: 0 auto;
  }

  .form-section {
    margin: 0 auto;
    flex-direction: column;
    gap: 2rem;
  }

  .texto-formulario {
    margin: 0 auto;
    text-align: center;
  }

  .titulo-form {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .descricao-form {
    font-size: 20px;
  }

  .formulario {
    margin: 0 auto;
    width: 100%;
  }

  .parceiro {
    margin-bottom: 20px;
  }

  /* Fale Conosco responsivo */
  .contato-container {
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .contato-info h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 2rem;
  }

  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .info-item img {
    width: 40px;
    height: 40px;
  }

  .imagem-empire-contato img {
    width: 100%;
    height: auto;
    max-height: 370px;
    object-fit: cover;
  }

  /* Footer responsivo */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 2rem 1rem;
  }

  .footer-logo img {
    height: auto;
  }

  .footer-contact h3,
  .footer-links h3,
  .footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Modal responsivo */
  .modal-content {
    width: 90%;
    max-width: 400px;
    padding: 1.5rem;
  }

  .modal-content h2 {
    font-size: 1.3rem;
  }

  .modal-content input {
    font-size: 1rem;
    padding: 0.8rem;
  }

  #home {
    scroll-margin-top: 40px;
  }

  #planos {
    scroll-margin-top: 10px;
    /* ajuste esse valor conforme a altura do seu menu fixo */
  }

  /*  */

  #individual {
    scroll-margin-top: 80px;
  }

  #empresarial {
    scroll-margin-top: 80px;
  }

  #adesao {
    scroll-margin-top: 80px;
  }

  #odonto {
    scroll-margin-top: 80px;
  }

  #corretor {
    scroll-margin-top: 20px;
  }

  #sobre {
    scroll-margin-top: 150px;
  }
}

/* Tablets (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Header */
  header {
    padding: 0.75rem 1rem;
  }

  .menu-principal ul {
    gap: 1rem;
  }

  .menu-principal ul li a {
    font-size: 1rem;
  }

  /* Banner */
  .banner {
    height: 60vh;
  }

  /* Sobre */
  .container-sobre {
    padding: 3rem 2rem;
  }

  .texto-sobre {
    font-size: 1.1rem;
  }

  /* Cartões */
  .cartoes {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Parceiros */
  .parceiros-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  /* Planos */
  .container-planos {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Área do Corretor */
  .botoes-corretor {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Desktop pequeno (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  .container-sobre {
    padding: 4rem 3rem;
  }

  .cartoes {
    grid-template-columns: repeat(3, 1fr);
  }

  .parceiros-grid {
    grid-template-columns: repeat(7, 1fr);
  }

  .container-planos {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Desktop grande (acima de 1200px) */
@media (min-width: 1201px) {
  .container-sobre {
    padding: 5rem 4rem;
  }

  .banner {
    height: 80vh;
  }

  .cartoes {
    grid-template-columns: repeat(3, 1fr);
  }

  .parceiros-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

/* Orientação landscape em mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .banner {
    height: auto;
    background-size: 100% auto;
    padding-bottom: 40%;
  }

  /* Social icons e separador ocultos em landscape mobile */
  .social-icons2 {
    display: none;
  }

  .banner-separador {
    display: none;
  }

  .sobre {
    padding: 0 1rem 1rem 1rem; /* Removido padding-top completamente */
    margin: 0 auto 5rem auto; /* Removido margin-top */
    margin-top: 0 !important; /* Força margin-top zero */
  }

  .container-sobre {
    flex-direction: row;
  }

  .imagens-sobre {
    min-height: auto; /* Remove o min-height para eliminar espaço vazio */
  }

  /* Hide images on landscape mobile */
  .fachada-empire,
  .recep-empire {
    display: none;
  }

  .conheca-empire {
    padding: 1rem;
    margin-bottom: 2rem;
  }

  .conheca-empire .subtitulo {
    font-size: 1rem;
  }

  .conheca-empire .titulo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .cartoes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .cartao {
    padding: 1rem;
  }

  .cartao iconify-icon {
    width: 80px;
    height: 60px;
  }

  .cartao h3 {
    font-size: 0.9rem;
  }

  .cartao p {
    font-size: 0.8rem;
  }

  .parceiros-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* celulares ainda menores */

/* Ajustes para telas muito pequenas */
@media (max-width: 550px) {
  .header-img {
    max-width: 100px;
    width: 100%;
    height: 2.5rem;
  }

  /* Social icons e separador ocultos em telas muito pequenas */
  .social-icons2 {
    display: none;
  }

  .banner-separador {
    display: none;
  }

  .banner {
    height: auto;
    min-height: 250px;
    background-size: 100% auto;
    padding-bottom: 56.25%;
  }

  .sobre {
    padding: 0 1rem 1rem 1rem; /* Removido padding-top completamente */
    margin: 0 auto 3rem auto; /* Removido margin-top */
    margin-top: 0 !important; /* Força margin-top zero */
  }

  .texto-sobre {
    font-size: 0.9rem;
  }

  .imagens-sobre {
    min-height: auto; /* Remove o min-height para eliminar espaço vazio */
  }

  /* Hide images on very small screens */
  .fachada-empire,
  .recep-empire {
    display: none;
  }

  .conheca-empire {
    margin: 0 auto;
    width: 100%;
    margin-bottom: 2rem;
    padding: 1.5rem 1rem;
    border-radius: 0.75rem;
  }

  .conheca-empire .subtitulo {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .conheca-empire .titulo {
    font-size: 18px;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: bold;
  }

  .cartoes {
    display: flex;
    flex-direction: column; /* Empilha os cartões no mobile */
    gap: 1rem;
  }

  .cartao {
    background-color: #f8f8f8;
    /* padding: 1rem; */
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .cartao iconify-icon {
    display: flex;
    width: 100px;
    height: 100px;

    margin: 0 auto;
  }

  .cartao h3 {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }

  .cartao p {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 50px;
  }

  .porque-empire {
    width: 100%;
    margin: 0;
  }

  .texto-empire p {
    font-size: 16px;
  }

  .imagem-empire {
    flex: none;
  }

  .parceiros-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.2rem;
  }

  .parceiros-grid img {
    height: 50px;
  }

  .parceiros-estatico {
    width: 80%; /* ou max-width: 1200px */
    margin: 0 auto;
  }

  .plano {
    height: 180px;
  }

  .plano img {
    width: 100%;
    height: auto;
    max-height: 170px;
  }

  .container-planos {
    margin-bottom: 55px;
    gap: 80px;
  }

  .sub-plano {
    font-size: 16px;
  }

  .modal-content {
    width: 95%;
    /* padding: 1rem; */
  }

  .plano-texto p {
    font-size: 16px;
  }

  .btn-simular {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .area-corretor {
    margin: 0;
  }

  .container-corretor {
    margin: 0 auto;
  }

  .botoes-corretor {
    margin: 0 auto;
    gap: 1rem; /* opcional: espaçamento entre os botões */
  }

  .botao-corretor {
    margin: 0 auto;
    width: 100%;
    max-width: 80px;

    img {
      width: 100%;
      width: 150px;
      height: 150px;
    }
  }

  .texto-formulario p {
    font-size: 16px;
  }

  .parceiro {
    margin: 0;
  }

  .info-item {
    display: flex;
  }
  .info-item {
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    gap: 20px;
  }

  .contato-info {
    margin: 0;
  }

  .contato-container img {
    display: none;
    margin: 0;
  }

  .contato-container {
    margin-bottom: 0; /* substitui os 9.375rem apenas no mobile */
  }

  .imagem-empire-contato {
    display: none;
  }

  .contato-info strong {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    font-size: 1.5rem;
  }

  .contato-info a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    text-align: center;
    padding: 0 10px;
  }

  #home {
    scroll-margin-top: 40px;
  }

  #planos {
    scroll-margin-top: 10px;
    /* ajuste esse valor conforme a altura do seu menu fixo */
  }

  /*  */

  #individual {
    scroll-margin-top: 300px;
  }

  #empresarial {
    scroll-margin-top: 300px;
  }

  #adesao {
    scroll-margin-top: 300px;
  }

  #odonto {
    scroll-margin-top: 300px;
  }

  #corretor {
    scroll-margin-top: 20px;
  }

  #sobre {
    scroll-margin-top: 150px;
  }
}

/* Ajustes para acessibilidade */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Modo escuro (opcional) */
@media (prefers-color-scheme: dark) {
  /* Você pode adicionar estilos para modo escuro aqui se desejar */
}

/* Impressão */
@media print {
  header,
  .menu-hamburguer,
  .social-icons2,
  .footer {
    display: none;
  }

  .banner {
    height: auto;
  }
}
