/* =====================================================
CORES
===================================================== */
:root {
  --cor1: #0c2340;
  --cor2: #fff;
  --cor3: #484848;
  --cor4: #f2f2f2;
  --cor5: #ac8352;
  --cor6: #eee;
  --cor7: #ddd;
  --cor8: rgba(0, 0, 0, 0.4);
  --cor9: #ccc;
  --cor10: #aaa;
  --cor11: rgba(12, 35, 64, 0.1);
}

/* =====================================================
CONFIGURAÇÕES GERAIS
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html,
body {
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--cor4);
  color: var(--cor3);
  font-size: 15px;
}

main {
  flex: 1;
}

.container {
  margin: 0 auto;
}

hr {
  width: 100%;
  height: 1px;
  background-color: var(--cor7);
  border: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}

.titulos {
  font-size: 28px;
  color: var(--cor1);
  text-transform: uppercase;
}

/* =====================================================
HEADER
===================================================== */
header {
  background: var(--cor2);
  color: var(--cor1);
  padding: 15px 20px;
}

.header-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =====================================================
MENU
===================================================== */
.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  color: var(--cor3);
  text-decoration: none;
  padding: 10px;
}

.menu a:hover {
  background-color: var(--cor1);
  color: var(--cor2);
  border-radius: 6px;
}

/* =====================================================
BOTÕES (LOGIN) / (CADASTRO)
===================================================== */
.actions {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}

.btn-login {
  background: transparent;
  border: 1px solid var(--cor5);
  color: var(--cor5);
}

.btn-login:hover {
  background-color: var(--cor5);
  color: var(--cor2);
}

.btn-cadastro {
  background: var(--cor1);
  color: var(--cor2);
}

.btn-cadastro:hover {
  filter: brightness(1.6);
}

/* =====================================================
MENU HAMBURGER
===================================================== */
.menu-toggle {
  display: none;
  cursor: pointer;
}

/* =====================================================
OVERLAY MENU HAMBURGER
===================================================== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cor8);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =====================================================
MENU MOBILE
===================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100%;
  background: var(--cor1);
  padding: 20px;
  transition: 0.3s;
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--cor2);
  margin-bottom: 20px;
}

.menu-header button {
  background: none;
  border: none;
  color: var(--cor2);
  cursor: pointer;
}

.mobile-menu a {
  display: block;
  color: var(--cor2);
  text-decoration: none;
  margin-bottom: 15px;
}

/* =====================================================
GRID DE IMÓVEIS
===================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 60px;
}

.card-imovel {
  width: 100%;
  background: var(--cor2);
  border-radius: 18px;
  overflow: visible;
  border: 1px solid var(--cor6);
}

.card-img {
  position: relative;
  aspect-ratio: 16/9;
}

.img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--cor1);
  color: var(--cor2);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
}

.card-top {
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--cor2);
  object-fit: cover;
}

.icon-heart {
  background: var(--cor2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--cor6);
}

.icon-heart a {
  color: var(--cor3);
}

.icon-heart:hover {
  background-color: #0c2340;
}

.icon-heart:hover svg {
  stroke: var(--cor2);
}

.icon-heart svg {
  width: 20px;
  height: 20px;
}

.card-content {
  padding: 40px 15px 20px;
}

.titulo {
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cor4);
}

.info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 15px;
}

.info-left {
  display: flex;
  gap: 5px;
}

.info-left .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  line-height: 1;
  gap: 2px;
}

.info-left .item svg {
  width: 14px;
  height: 14px;
  margin-bottom: 4px;
}

.info-right {
  text-align: right;
}

.preco {
  font-weight: 700;
  font-size: 18px;
}

a.btn-card {
  width: 100%;
  background: var(--cor1);
  color: var(--cor2);
  padding: 12px;
  border-radius: 6px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.btn-card svg {
  width: 16px;
}

.btn-card:hover {
  filter: brightness(1.6);
}

/* =====================================================
BUSCA
===================================================== */
.busca {
  background: var(--cor1);
  padding: 30px 20px;
}

.busca-container {
  max-width: 1200px;
  margin: auto;
}

.busca-inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.busca-box {
  display: flex;
  align-items: center;
  background: var(--cor2);
  border-radius: 50px;
  overflow: hidden;
}

.campo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  flex: 1;
  border-right: 1px solid var(--cor6);
}

.campo:last-of-type {
  border-right: none;
}

.campo input,
.campo select {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  background: transparent;
}

.campo svg {
  width: 16px;
  height: 16px;
  color: var(--cor3);
}

.btn-busca {
  width: 50px;
  height: 50px;
  background: var(--cor5);
  border: none;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-busca:hover {
  filter: brightness(1.2);
}

.btn-busca svg {
  width: 20px;
  height: 20px;
  color: var(--cor2);
}

.busca-avancada {
  display: block;
  margin-top: 10px;
  color: var(--cor2);
  font-size: 13px;
  text-align: left;
}

/* =====================================================
CATEGORIAS
===================================================== */
.categorias {
  background: var(--cor6);
}

.categorias-container {
  position: relative;
  padding: 20px 50px;
  max-width: 1200px;
  margin: auto;
}

.categoriasSwiper {
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
}

.swiper-slide {
  width: auto;
}

.categoria {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--cor3);
  cursor: pointer;
  min-width: 90px;
}

.categoria svg {
  width: 32px;
  height: 32px;
}

.categoria span {
  font-size: 13px;
}

.categoria:hover {
  color: var(--cor1);
}

.cat-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  background: var(--cor1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.cat-nav:hover,
.nav:hover,
.areas-controls button:hover,
.corretores-nav button:hover {
  filter: brightness(1.6);
  cursor: pointer;
}

.cat-nav.prev {
  left: 10px;
}

.cat-nav.next {
  right: 10px;
}

.cat-nav svg {
  width: 18px;
  height: 18px;
  color: var(--cor2);
}

.cat-nav:hover {
  background: var(--cor1);
}

/* ESQUERDA */
.cat-nav.cat-prev {
  left: 10px;
}

.cat-nav.cat-next {
  right: 10px;
}

/* =====================================================
BANNERS [1]
===================================================== */
.banners-container {
  display: flex;
  gap: 20px;
  padding: 60px;
  background-color: var(--cor2);
}

/* LINK (quem manda no tamanho) */
.banner-link {
  flex: 1;
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
  display: block;
}

.banner {
  flex: 1;
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  background-color: var(--cor4);
  height: 120px;
}

/* =====================================================
IMÓVEIS DESTAQUE
===================================================== */
.destaques {
  padding: 60px;
}

.header-destaque {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.nav button {
  background: var(--cor1);
  border: none;
  color: var(--cor2);
  padding: 6px;
  border-radius: 5px;
  cursor: pointer;
}

.card-destaque {
  background: var(--cor1);
  border-radius: 15px;
  overflow: hidden;
  color: var(--cor2);
}

.card-destaque span {
  color: var(--cor2);
}

.img-box {
  position: relative;
}

.img-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.badge-top {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--cor1);
  color: var(--cor2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
}

.badge-price {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--cor5);
  color: var(--cor2);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.card-destaque .info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 10px;
}

.left {
  display: flex;
  gap: 10px;
}

.left img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.left strong {
  display: block;
  font-size: 13px;
}

.left span {
  font-size: 11px;
  color: var(--cor2);
}

.right {
  display: flex;
  gap: 8px;
  align-items: center;
}

.right span {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.right svg {
  width: 14px;
}

/* =====================================================
IMÓVEIS POR REGIÃO
===================================================== */
.areas-section {
  padding: 60px;
}

.areas-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.areas-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.areas-select {
  display: flex;
  align-items: center;
  gap: 10px;
}

.select-box {
  position: relative;
}

.select-box select {
  appearance: none;
  background: var(--cor1);
  color: var(--cor2);
  border: none;
  padding: 8px 30px 8px 12px;
  border-radius: 20px;
  cursor: pointer;
}

.select-box svg {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cor2);
  pointer-events: none;
  width: 16px;
}

.areas-controls {
  display: flex;
  gap: 8px;
}

.areas-controls button {
  width: 36px;
  height: 36px;
  background: var(--cor1);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.areas-controls button svg {
  width: 18px;
  height: 18px;
  color: var(--cor2);
}

.areas-controls button:hover {
  background: var(--cor1);
}

.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.area-card {
  width: 100%;
}

.area-image {
  position: relative;
}

.area-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s;
}

.area-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--cor5);
  color: var(--cor2);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
}

.area-info {
  margin-top: 8px;
}

.area-info strong {
  display: block;
  font-size: 13px;
}

.area-info span {
  font-size: 12px;
  color: var(--cor3);
}

.areasSwiper .swiper-slide {
  width: 100%;
}

.area-card:hover img {
  transform: scale(1.05);
}

/* =====================================================
BANNERS [4]
===================================================== */
.banners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 60px;
  background-color: var(--cor2);
}

.banner {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  transition: 0.3s;
}

.banner:hover {
  transform: scale(1.03);
}

/* =====================================================
CORRETORES
===================================================== */
.corretores-section {
  padding: 60px;
}

.corretores-container {
  display: flex;
  gap: 30px;
  padding: auto;
}

.texto {
  margin-top: 20px;
  margin-bottom: 20px;
}

.texto p {
  line-height: 1.6;
}

.corretores-left {
  width: 40%;
}

.corretores-right {
  width: 60%;
  position: relative;
}

a.corretores-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cor5);
  color: var(--cor2);
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: 0.25s ease;
  text-decoration: none;
}

.corretores-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
}

.corretores-nav {
  position: absolute;
  top: -40px;
  right: 0;
  display: flex;
  gap: 8px;
}

.corretores-nav button {
  width: 35px;
  height: 35px;
  background: var(--cor1);
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corretores-nav svg {
  width: 18px;
  color: var(--cor2);
}

.corretores-card {
  background: var(--cor2);
  border-radius: 12px;
  overflow: hidden;
}

.corretores-img {
  position: relative;
}

.corretores-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.corretores-stats {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: var(--cor1);
  color: var(--cor2);
  display: flex;
  justify-content: space-around;
  font-size: 11px;
  padding: 5px;
}

.corretores-info {
  padding: 10px;
  font-size: 13px;
  text-align: center;
}

.corretoresSwiper .swiper-slide {
  height: auto;
}

/* =====================================================
BANNERS [1]
===================================================== */
.banner-container {
  padding: 60px;
  background-color: var(--cor2);
}

.banner-img {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.banner-img img {
  width: 100%;
  height: 100%;
  max-height: 120px;
  object-fit: cover;
  display: block;
}

/* =====================================================
DEPOIMENTOS
===================================================== */
.depoimentos-section {
  padding: 60px;
  background: var(--cor6);
}

.depoimentos-container {
  display: flex;
  gap: 40px;
}

.depoimentos-left {
  width: 30%;
}

.depoimentos-left p {
  font-size: 14px;
  color: var(--cor3);
  margin-bottom: 10px;
}

.depoimentos-right {
  width: 70%;
}

.dep-card {
  background: var(--cor2);
  border-radius: 12px;
  padding: 15px;
  height: 100%;
}

.dep-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.dep-top img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.dep-top strong {
  display: block;
  font-size: 13px;
}

.dep-top span {
  font-size: 11px;
  color: var(--cor3);
}

.dep-stars {
  margin-left: auto;
  color: var(--cor5);
  font-size: 12px;
}

.dep-card p {
  font-size: 13px;
  color: var(--cor3);
}

.depoimentos-pagination {
  margin-top: 15px;
  text-align: center;
}

.depoimentos-pagination .swiper-pagination-bullet {
  background: var(--cor2);
  opacity: 1;
}

.depoimentos-pagination .swiper-pagination-bullet-active {
  background: var(--cor5);
}

/* =====================================================
MENU FOOTER
===================================================== */
.menu-institucional-container {
  background: var(--cor1);
}

.menu-institucional {
  padding: 15px 20px;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: auto;
  flex-wrap: wrap;
}

.menu-institucional a {
  color: var(--cor2);
  text-decoration: none;
  padding: 10px;
}

.menu-institucional a:hover {
  color: var(--cor1);
  background-color: var(--cor2);
  border-radius: 6px;
}

/* =====================================================
FOOTER
===================================================== */
.footer {
  width: 100%;
  background: var(--cor6);
}

.footer {
  display: flex;
  justify-content: center;
}

.footer {
  padding: 25px 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-sizing: border-box;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-left {
  flex-shrink: 0;
}

.footer-left img {
  width: 152px;
  height: 53px;
  width: auto;
}

.footer-left span {
  font-size: 11px;
  color: var(--cor3);
}

/* CENTER */
.footer-center {
  display: flex;
  gap: 40px;
  align-items: center;
}

.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* wrapper do ícone */
.footer-info i {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 18px;
  min-width: 18px;
}

/* svg */
.footer-info svg {
  width: 16px;
  height: 16px;
  margin-top: 3px; /* ajuste fino */
}

.footer-info a {
  color: var(--cor1);
  text-decoration: none;
  font-weight: 700;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-right a {
  width: 34px;
  height: 34px;
  background: var(--cor7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.footer-right img {
  width: 16px;
  color: var(--cor3);
}

.footer-right a:hover {
  background: var(--cor1);
  transform: translateY(-2px);
}

.footer-right a:hover > img {
  filter: brightness(0) invert(1);
}

.footer-right a:hover svg {
  color: var(--cor2);
}

/* =====================================================
MODAL
===================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 15px; /* 👈 ISSO resolve o mobile */
  box-sizing: border-box;
  z-index: 8000;
}

.modal-overlay.ativo {
  display: flex;
}

.modal {
  background: #fff;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* HEADER */
.modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.modal-header h2 {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
  color: var(--cor1);
}

.modal-header h2 svg {
  width: 18px;
  height: 18px;
}

/* BODY (scrollável) */
.modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

/* FOOTER */
.modal-footer {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.btn-primary {
  background: #0c2340;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
}

/* =====================================================
ANIMAÇÕES
===================================================== */
.animacao {
  position: relative;
  overflow: hidden;
  border-radius: 8px; /* importante se tiver */
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.animacao svg {
  transition: transform 0.3s ease;
}

.animacao:hover {
  transform: translateY(-2px);
}

/* ðŸ”¥ FEIXE CONTROLADO */
.animacao::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -150%;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--cor2) 50%,
    transparent 100%
  );
  border-top: 3px solid var(--cor2);
  border-bottom: 3px solid var(--cor2);
  opacity: 0;
  pointer-events: none;
}

.animacao:hover::after {
  animation: feixe 0.9s ease-out forwards;
}

@keyframes feixe {
  0% {
    left: -150%;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}

/* =====================================================
FORMULÁRIOS
===================================================== */
form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 200px;
}

.form-group label {
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--cor3);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--cor9);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cor1);
  outline: none;
  box-shadow: 0 0 0 2px var(--cor11);
}

/* PLACEHOLDER */
::placeholder {
  color: var(--cor10);
}

a.esqueci {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 5px;
  text-decoration: none;
  color: var(--cor1);
  font-size: 14px;
  font-weight: 700;
}

a.esqueci svg {
  width: 16px;
  height: 16px;
}

a.esqueci:hover {
  text-decoration: underline;
}

/* =====================================================
ALERTAS
===================================================== */
.alert {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 14px;
  border-radius: 10px;

  font-size: 14px;
  line-height: 1.4;

  border: 1px solid transparent;
}

/* ÍCONE */
.alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 22px;
  min-width: 22px;
}

.alert-icon svg {
  width: 20px;
  height: 20px;
}

/* TEXTO */
.alert-text {
  flex: 1;
}

/* VARIAÇÕES */
.alert-success {
  background: #e6f9f0;
  color: #1a7f5a;
  border-color: #b6efd5;
}

.alert-error {
  background: #fdecea;
  color: #b42318;
  border-color: #f5c2c0;
}

.alert-warning {
  background: #fff4e5;
  color: #b26a00;
  border-color: #ffd8a8;
}

.alert-info {
  background: #e8f1fd;
  color: #1d4ed8;
  border-color: #c7dbff;
}

/* =====================================================
RESPONSIVO
===================================================== */
@media (max-width: 1024px) {
  .banners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-center {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .footer-right {
    align-self: flex-start;
  }

  .depoimentos-container {
    flex-direction: column;
  }

  .depoimentos-left,
  .depoimentos-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
  .menu,
  .actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  main {
    padding: 15px;
  }

  .busca-box {
    flex-direction: column;
    border-radius: 20px;
  }

  .campo {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--cor6);
  }

  .btn-busca {
    width: 100%;
    border-radius: 0 0 20px 20px;
  }

  .busca-box {
    flex-direction: column;
    border-radius: 20px;
  }

  .campo {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--cor6);
  }

  .btn-busca {
    width: 100%;
    border-radius: 0 0 20px 20px;
  }

  .banners-container {
    flex-direction: column;
    gap: 12px;
  }

  .banner {
    aspect-ratio: 2.5 / 1;
  }

  .areas-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .areas-actions {
    width: 100%;
    justify-content: space-between;
  }

  .areasSwiper .swiper-slide {
    width: 140px;
  }

  .swiper-slide {
    width: 85%;
  }
}

@media (max-width: 600px) {
  .banners-grid {
    grid-template-columns: 1fr;
  }
  .menu-institucional {
    gap: 15px;
    text-align: center;
  }

  .menu-institucional a {
    width: 100%;
  }
}
