* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f4f6f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

/* ================= HEADER ================= */

header {
  background: #292d49;
  padding: 15px 0;
  position: relative;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* MENU DESKTOP */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px;
}

nav a:hover {
  background-color: #c2185b;
  color: #fff;
  border-radius: 5px;
}

/* WHATSAPP */
.whatsapp-btn {
  background: #25d366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  cursor: pointer;
  color: #fff;
}

/* ================= MENU LATERAL ================= */

.side-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #0f172a;
  padding: 20px;
  transition: 0.3s;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.side-menu.active {
  right: 0;
}

/* HEADER DO MENU */
.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.side-menu-header h3 {
  color: #fff;
}

.close-menu {
  cursor: pointer;
  color: #fff;
}

/* LINKS */
.side-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1500;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================= MAIN ================= */

main {
  flex: 1;
  padding: 0;
}

.main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.content,
.sidebar {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
}

.bgEscuro {
  background-color: #292d4a;
}

/* ================= FOOTER ================= */

footer {
  background: #1f2540; /* ajuste se quiser */
  padding: 5px 0;
  color: #ccc;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p {
  margin: 0;
  font-size: 14px;
}

footer img {
  height: 51px; /* ajuste conforme necessário */
  object-fit: contain;
}

/* ================= RESPONSIVO ================= */

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .whatsapp-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .main-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= SLIDESHOW ================= */

.slideshow {
  position: relative;
  height: 500px;
  overflow: hidden;
  width: 100%;
}

/* CONTAINER DOS SLIDES */
.slides {
  height: 100%;
  position: relative;
}

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* IMAGEM */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= TEXTO DO SLIDE (OPCIONAL) ================= */

.slide-content {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center; /* centro vertical */
  align-items: center; /* centro horizontal */

  text-align: center; /* centraliza texto */

  padding: 0 10%;
  color: #fff;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3)
  );

  z-index: 5;
}

/* Se não tiver conteúdo, não mostra */
.slide-content:empty {
  display: none;
}

/* TÍTULO */
.slide-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* SUBTÍTULOS */
.slide-content .sub1 {
  font-size: 22px;
  margin-bottom: 10px;
}

.slide-content .sub2 {
  font-size: 18px;
  opacity: 0.9;
}

/* ================= BULLETS ================= */

.bullets {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s ease;
}

.bullet:hover {
  background: rgba(255, 255, 255, 0.8);
}

.bullet.active {
  background: #fff;
  transform: scale(1.2);
}

/* ================= RESPONSIVO ================= */

@media (max-width: 1024px) {
  .slide-content h1 {
    font-size: 36px;
  }

  .slide-content .sub1 {
    font-size: 18px;
  }

  .slide-content .sub2 {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .slideshow {
    height: 380px;
  }

  .slide-content {
    padding: 0 6%;
    align-items: center;
    text-align: center;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.3)
    );
  }

  .slide-content h1 {
    font-size: 26px;
  }

  .slide-content .sub1 {
    font-size: 16px;
  }

  .slide-content .sub2 {
    font-size: 14px;
  }
}

/* ================= TÍTULO PADRÃO ================= */

.secao-titulo {
  padding: 60px 20px;
  background: #f2f2f2;
}

.titulo-wrapper {
  margin: 0 auto;
}

/* 🔥 pega qualquer heading dentro */
.titulo-wrapper h1,
.titulo-wrapper h2,
.titulo-wrapper h3,
.titulo-wrapper h4,
.titulo-wrapper h5,
.titulo-wrapper h6 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 28px;
  font-weight: 700;
  color: #dc158c;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Barra lateral */
.titulo-wrapper .barra {
  width: 6px;
  height: 45px;
  background: #dc158c;
  border-radius: 3px;
}

/* Subtítulo */
.titulo-wrapper p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
}

/* ================= RESPONSIVO ================= */

@media (max-width: 768px) {
  .titulo-wrapper h1,
  .titulo-wrapper h2,
  .titulo-wrapper h3,
  .titulo-wrapper h4,
  .titulo-wrapper h5,
  .titulo-wrapper h6 {
    font-size: 30px;
  }

  .titulo-wrapper .barra {
    height: 32px;
  }

  .titulo-wrapper p {
    font-size: 16px;
  }
}

/* Carousel */
.carousel-section {
  padding: 60px 20px;
  background: #f2f2f2;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 30px auto;
  display: flex;
  align-items: center;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  gap: 5px; /* espaço real entre os cards */
}

/* 🔥 4 CARDS POR VEZ */
.card {
  flex: 0 0 calc((100% - 20px) / 4);
  background-color: #292d4a;
  padding: 20px;
  border-radius: 12px;
  box-sizing: border-box;
}

.card-inner {
  background: #2f3450;
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.card img {
  width: 100%;
  max-height: 150px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
  color: #fff;
}

.card p {
  font-size: 14px;
  opacity: 0.9;
  text-align: center;
  color: #fff;
}

/* BOTÕES */
.carousel-btn {
  background: transparent;
  border: 1px solid #db158c;
  color: #db158c;
  width: 45px;
  height: 45px;
  min-width: 45px; /* 🔥 impede achatar */
  min-height: 45px; /* 🔥 garante quadrado */
  flex-shrink: 0; /* 🔥 não deixa o flex reduzir */
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background-color: #db158c;
  color: #fff;
}

.carousel-btn.prev {
  margin-right: 10px;
}

.carousel-btn.next {
  margin-left: 10px;
}

/* 🔥 RESPONSIVO */

/* Tablet → 2 cards */
@media (max-width: 1024px) {
  .card {
    flex: 0 0 50%;
  }
}

/* Mobile → 1 card */
@media (max-width: 600px) {
  .card {
    flex: 0 0 100%;
  }
}

/* Portfolio*/
.card-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 30px auto 0;
}

.portfolio p {
  color: #fff;
}

.card-portfolio-item {
  position: relative;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.card-portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-portfolio-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.card-portfolio-overlay h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #c2185b;
  line-height: 1.4;
}

/* Hover elegante */
.card-portfolio-item:hover img {
  transform: scale(1.08);
}

/* RESPONSIVO */

@media (max-width: 1024px) {
  .card-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* SObre */
.sobre-section {
  padding: 80px 20px;
  background: #f2f2f2;
}

.sobre-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* TEXTO */

.sobre-texto p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

/* CARDS LATERAIS */

.sobre-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sobre-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.icon-box {
  width: 60px;
  height: 60px;
  min-width: 60px;
  /* 🔥 impede achatar */
  flex-shrink: 0;
  /* 🔥 não deixa o flex reduzir */
  background: #2f3450;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #db158c;
}

.icon-box svg {
  width: 28px;
  height: 28px;
}

.sobre-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 700;
}

.sobre-card p {
  font-size: 14px;
  color: #555;
}

/* RESPONSIVO */

@media (max-width: 1024px) {
  .sobre-container {
    grid-template-columns: 1fr;
  }
}

/* Depoimentos */
/* ================= DEPOIMENTOS ================= */
.depoimentos p {
  color: #fff;
}

#carouselDepoimentos .carousel-container {
  max-width: 1200px;
  margin: 30px auto 0;
  position: relative;
}

#carouselDepoimentos .carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

#carouselDepoimentos .carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

/* 3 por vez perfeitamente distribuídos */
#carouselDepoimentos .card {
  flex: 0 0 calc((100% - 60px) / 3);
  display: flex;
}

#carouselDepoimentos .depoimento-card {
  background: #1f2540;
  padding: 30px;
  border-radius: 14px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* estrelas */
#carouselDepoimentos .stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 15px;
}

/* texto */
#carouselDepoimentos .depoimento-card p {
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #dcdcdc;
}

/* cliente */
#carouselDepoimentos .cliente-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

#carouselDepoimentos .cliente-info img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
}

#carouselDepoimentos .cliente-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

#carouselDepoimentos .cliente-info span {
  font-size: 13px;
  color: #aaa;
}

@media (max-width: 1024px) {
  #carouselDepoimentos .card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

@media (max-width: 600px) {
  #carouselDepoimentos .card {
    flex: 0 0 100%;
  }
}

/* BLOCO DADOS */
#carouselDepoimentos .cliente-dados {
  position: relative;
  padding-left: 14px;
}

/* BARRA ROSA */
#carouselDepoimentos .cliente-dados::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 32px;
  background: #db158c;
  border-radius: 2px;
}

/* NOME */
#carouselDepoimentos .cliente-dados h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #fff;
}

/* CIDADE */
#carouselDepoimentos .cliente-dados span {
  font-size: 13px;
  color: #aaa;
}

/* Newsletter */
/* ================= NEWSLETTER ================= */

.newsletter-section {
  background: #f2f2f2;
  padding: 70px 20px;
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 40px;
}

/* TÍTULO */

.newsletter-info h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 36px;
  font-weight: 700;
  color: #db158c;
  margin-bottom: 15px;
}

.newsletter-info .barra {
  width: 6px;
  height: 40px;
  background: #db158c;
  border-radius: 3px;
}

.newsletter-info p {
  font-size: 16px;
  color: #555;
}

/* FORM */

.newsletter-form form {
  display: flex;
  background: #1f2540;
  border-radius: 14px;
  padding: 8px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 20px;
  color: #fff;
  font-size: 15px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #bbb;
}

.newsletter-form button {
  background: #db158c;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex; /* 🔥 importante */
  align-items: center; /* 🔥 alinha vertical */
  gap: 10px; /* 🔥 espaço entre texto e ícone */
}

.newsletter-form button svg {
  width: 18px;
  height: 18px;
}

.newsletter-form button:hover {
  background: #d81b60;
}

/* RESPONSIVO */

@media (max-width: 768px) {
  .newsletter-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-info h2 {
    justify-content: center;
  }

  .newsletter-form form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form button {
    width: 100%;
  }
}

/* Contato */
/* ================= CONTATO ================= */

.contato-section {
  background: #2e3354;
  padding: 30px 0;
  color: #fff;
}

.contato-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

/* TÍTULO */

.contato-info h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 36px;
  font-weight: 700;
  color: #db158c;
  margin-bottom: 20px;
}

.contato-info .barra {
  width: 6px;
  height: 40px;
  background: #db158c;
  border-radius: 3px;
}

.contato-info p {
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 30px;
}

/* DETALHES */

.contato-detalhe {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: #ccc;
}

.contato-detalhe svg {
  width: 20px;
  height: 20px;
  color: #db158c;
}

.contato-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.contato-social svg {
  width: 22px;
  height: 22px;
  cursor: pointer;
  color: #ccc;
  transition: 0.3s;
}

.contato-social svg:hover {
  color: #db158c;
}

/* FORM */

.contato-form form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 8px;
}

.form-group label span {
  font-size: 12px;
  color: #aaa;
  float: right;
}

.form-group input,
.form-group textarea {
  background: #1f2540;
  border: 1px solid #3c4267;
  border-radius: 10px;
  padding: 14px;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #db158c;
}

.form-group.full {
  margin-top: 20px;
}

.form-footer {
  margin-top: 30px;
  text-align: right;
}

.form-footer button {
  background: #db158c;
  border: none;
  padding: 15px 40px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex; /* 🔥 importante */
  align-items: center; /* 🔥 alinha vertical */
  gap: 10px; /* 🔥 espaço entre texto e ícone */
}

.form-footer button svg {
  width: 18px;
  height: 18px;
}

.form-footer button:hover {
  background: #d81b60;
}

/* RESPONSIVO */

@media (max-width: 1024px) {
  .contato-container {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-footer {
    text-align: center;
  }
}

/* ================= HERO INTERNA ================= */

/* ================= HERO INTERNA ================= */

.interna-hero {
  background: #f2f2f2;
  text-align: left;
}

.interna-hero .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* TÍTULO */

.interna-hero .titulo-wrapper h1 {
  position: relative;
  display: inline-block;
  font-size: 42px;
  font-weight: 700;
  color: #2f3450;
  margin-bottom: 20px;
  padding-left: 20px; /* espaço para barra */
}

/* BARRA COM BEFORE */
.interna-hero .titulo-wrapper h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 45px;
  background: #e91e63;
  border-radius: 3px;
}

/* SUBTÍTULO */

.interna-hero .subtitulo {
  font-size: 18px;
  color: #666;
  max-width: 1200px;

  line-height: 1.6;
  text-align: left;
}

/* RESPONSIVO */

@media (max-width: 768px) {
  .interna-hero .titulo-wrapper h1 {
    font-size: 30px;
    padding-left: 16px;
  }

  .interna-hero .titulo-wrapper h1::before {
    height: 30px;
  }

  .interna-hero .subtitulo {
    font-size: 16px;
  }
}

/* ================= SEGMENTOS GRID ================= */
.segmentos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.segmento-card {
  background: #292d4a;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.3s ease;
}

.segmento-card:hover {
  transform: translateY(-5px);
}

.segmento-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.segmento-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.segmento-card p {
  font-size: 14px;
  color: #ccc;
}

/* RESPONSIVO */

@media (max-width: 1024px) {
  .segmentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .segmentos-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= DEPOIMENTOS GRID ================= */

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.depoimento-card {
  background: #1f2540;
  padding: 30px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

/* estrelas */
.stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 15px;
}

/* texto */
.depoimento-card p {
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #dcdcdc;
}

/* cliente */
.cliente-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cliente-info img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
}

.cliente-dados h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

.cliente-dados span {
  font-size: 13px;
  color: #aaa;
}

/* RESPONSIVO */

@media (max-width: 1024px) {
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
}

/* Aletas*/
/* Alertas */
.alert-overlay {
  position: fixed;
  inset: 0;
  background: var(--cor27); /* Opacidade */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
  padding: 20px;
}

.alert-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.alert-box {
  background: var(--cor6);
  border-radius: 6px;
  max-width: 420px;
  width: 90%;
  padding: 26px;
  box-shadow: 0 8px 32px var(--cor28); /* Opacidade */
  text-align: center;
  transform: translateY(-20px);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.alert-overlay.active .alert-box {
  transform: translateY(0);
  opacity: 1;
}

.alert-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--cor2);
}

.alert-message {
  font-size: 1rem;
  color: var(--cor1);
  margin-bottom: 24px;
}

.alert-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.alert-btn {
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.alert-btn.confirm {
  background: var(--cor1);
  color: var(--cor6);
}

.alert-btn.confirm:hover {
  filter: brightness(1.5);
}

.alert-btn.cancel {
  background: var(--cor4);
  color: var(--cor13);
}

.alert-btn.cancel:hover {
  background: var(--cor5);
  transition: all 0.3s ease;
}

.alert-btn.danger {
  background: var(--cor10);
  color: var(--cor6);
  transition: all 0.3s ease;
}

.alert-btn.danger:hover {
  filter: brightness(1.5);
}

/* Institucional */
/* ================= INSTITUCIONAL ================= */


.institucional-topo {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: left;
}

.institucional-topo p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* BLOCO DE VALORES */
/* ================= EMPRESA ================= */


.empresa-topo {
    max-width: 1200px;
    margin: 0 auto 30px;
    text-align: left;
}

.empresa-topo p {
    
    line-height: 1.7;
    color: #555;
}

/* BLOCO DE VALORES */

.empresa-valores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.empresa-item {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s ease;
}

.empresa-item:hover {
    transform: translateY(-6px);
}

.empresa-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #2f3450;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empresa-icon i {
    color: #e91e63;
    width: 28px;
    height: 28px;
}

.empresa-item h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.empresa-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* RESPONSIVO */

@media (max-width: 1024px) {
    .empresa-valores {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .empresa-valores {
        grid-template-columns: 1fr;
    }
}
