:root {
  /* cores */
  --gold: #c9902f;
  --gold-soft: #e7c56e;
  --gold-light: #f3dd9b;
  --coffee-950: #1b0f0a;
  --coffee-900: #26150d;
  --coffee-800: #332016;
  --coffee-700: #4a3020;
  --coffee-600: #6b4c35;
  --coffee-500: #9a7a62;
  --cream: #fff7eb;
  --cream-2: #f8ead2;
  --cream-3: #ead3aa;
  --green: #128c52;
  --green-2: #25d366;
  --shadow: 0 22px 70px rgba(25, 12, 6, 0.22);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  /* fontes */

  --font-corpo:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-titulo: "Playfair Display SC", "Georgia", serif;
  --font-secundaria: "Playfair Display", "Times New Roman", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.nav-link li a {
  font-family: var(--font-corpo);
}

body {
  font-family: var(--font-corpo);
  margin: 0;
  padding: 0;
  min-height: 100vh;

  background:
    radial-gradient(circle at 50% -20%, var(--gold-soft) 0%, transparent 60%),
    linear-gradient(180deg, var(--coffee-950) 0%, var(--coffee-800) 100%);

  background-attachment: fixed;
  font-family: var(--font-corpo);
}

main > section,
main > .frase-destaque,
main > footer {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 85%;
}

h1 {
  color: var(--gold);
}
h2 {
  font-family: var(--font-titulo);
  color: var(--coffee-800);
}

h3 {
  color: var(--gold);
  font-family: var(--font-titulo);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
p {
  font-family: var(--font-corpo);
  font-size: 18px;
}

/* criando o cabeçalho*/
header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 100;
 

  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--gold-light);
  box-shadow: var(--shadow);

  background: rgba(107, 76, 53, 0.6);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  /*border-bottom: 1px solid rgba(243, 221, 155, 0.22);*/
  box-shadow: var(--shadow);
}

.logo {
  font-family: var(--font-titulo);
  font-size: 10px;

  color: var(--cream);
}

small {
  font-family: var(--font-corpo);

  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav-link {
  display: flex;
  list-style: none;
  gap: 30px;
  
}

.nav-link li a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: var(--cream-3);
  text-decoration: none;
  letter-spacing: 0.1em;
  padding-bottom: 5px;
}

/* Efeito da linha de enbaixo dos links de navegação */
.nav-link li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--gold-light);
  transition: width 1s var(--ease);
}

.nav-link li a:hover::after {
  width: 100%;
}

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.25s var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-green:hover {
  transform: translateY(-3px);
}

/* primeira parte do site section inicio*/

/*  SEÇÃO HERO  */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 140px;
  padding-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px;
  gap: 30px;
  width: 100%;
  overflow: hidden;

  min-height: 1100px;

  background:
    radial-gradient(
      circle at 70% 12%,
      rgba(255, 255, 255, 0.62),
      transparent 26%
    ),
    radial-gradient(
      circle at 18% 82%,
      rgba(201, 144, 47, 0.22),
      transparent 34%
    ),
    linear-gradient(135deg, #fff9ef 0%, #f7ead5 42%, #d9ad6a 76%, #8b5a2d 100%);
  border-bottom: 1px solid rgba(255, 247, 235, 0.18);
}

.hero-descricao h2 {
  font-size: 50px;
  margin-bottom: 24px;
  color: var(--coffee-950);
  letter-spacing: -0.035em;
}

.hero-descricao p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--coffee-800);
  margin-bottom: 10px;
}

.hero-image {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 24px auto;
}

.hero-image img {
  width: min(100%, 1000px);
  height: auto;
  display: block;
  border-radius: 56px;
  box-shadow: 0 18px 45px rgba(27, 15, 10, 0.18);
}

.hero-descricao {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 10px;
}

.hero-descricao .btn-green,
.hero-descricao .btn-secundario {
  margin: 10px 5px;
}
/*  CORREÇÃO DOS BOTÕES */
.btn-green,
.btn-secundario {
  background-color: var(--cream);
  padding: 10px;
  border-radius: 30px;
  text-decoration: none;
  color: var(--coffee-900);
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}

.btn-green:hover,
.btn-secundario:hover {
  transform: translateY(-3px);
}
/*seçoes dos carrosseis*/


.secao-carrossel {
  padding: 80px 20px;
  background-color: transparent;
}

.container {
  background-color: var(--cream);
  width: min(96vw, 1240px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.viewport {
  position: relative;
  width: 100%;
  height: 550px;
  margin-top: 20px;
  overflow: hidden;
  background-color: #fdfbf7;
  border-radius: 24px;
}

.trilho-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.card-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 28px;
}

.card-item.active {
  opacity: 1;
  z-index: 2;
  
}
.card-item img {
  max-width: 100%;
  max-height: 100%;
  width: min(100%, 980px);
  height: auto;
  object-fit: contain;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  overflow: hidden;
  background-color: var(--cream);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.controles-carrossel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.arrow {
  background: var(--coffee-950);
  color: var(--cream);
  border: none;
  padding: 10px 20px;
  border-radius: 50%;
  cursor: pointer;
}

.dots-carrossel {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--coffee-500);
  border-radius: 50%;
}

.dot.active {
  background: var(--gold);
}

/*botoes do carrossel*/

.secao-carrossel .container {
  position: relative;
}

.viewport {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  margin: 20px 0;
}

/* 3. Trilho: container das imagens */
.trilho-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 4. Cards: empilhados com transição de opacidade */
.card-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.card-item.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}




.secao-carrossel .card-item.active.expanded {
  top: -24px;
  z-index: 20;
}

.secao-carrossel .card-item img {
  
  width: min(100%, 980px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  background-color: var(--cream);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
    border-radius: 28px !important;
  overflow: hidden !important;
}

.secao-carrossel .card-item.active.expanded img {
  transform: scale(1.12);
  transform-origin: center top;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9); /* sombra com opacidade 10% */
}

.secao-carrossel .card-item.active.expanded img,
.secao-carrossel .card-item.expanded img {
  cursor: pointer;
}

/* Fim das opções de expansão do carrossel */

/* 5. Controles (Botões nas laterais) */
.controles-carrossel {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
  pointer-events: none;
}

/* 6. Estilização dos botões redondos */
.arrow {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  color: #333;
}

.arrow:hover {
  background-color: var(--gold-light);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Ajuste específico da seção Abordagem */
.secao-abordagem {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.imagem-abordagem {
  width: 100%;
  max-width: 800px;
  height: 750px;
  overflow: hidden;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagem-abordagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .controles-carrossel {
    position: static;
    justify-content: center;
    margin-top: 18px;
  }

  .imagem-abordagem {
    height: 420px;
  }
}

.frase-destaque {
  text-align: center;
  width: min(800px, calc(90% - 32px));
  background-color: rgba(255, 247, 235, 0.6);
  font-size: 18px;
  line-height: 1.6;
  color: var(--coffee-950);
  font-style: italic;
  margin: 60px auto 60px;
  border-radius: 24px;
  border:solid;
  border-color:  var(--gold-soft);
  padding: 30px 40px;
  box-shadow: 0 8px 24px rgba(27, 15, 10, 0.08);
}

#ambiente-seguro {
  display: grid;

  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background-color: var(--cream);
  border: 2px solid var(--gold-soft);
  border-radius: 15px;
  
}

#ambiente-seguro div {
  min-width: 0;
  overflow: hidden;
}

#ambiente-seguro p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--coffee-700);
}

#ambiente-seguro > img {
  width: 100px;
  height: auto;
  display: block;
}

.btn-whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background-color: var(--cream);
  border-radius: 50%;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background-color 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp img {
  width: 60%;
  height: auto;
  border-radius: 50%;
}

.btn-whatsapp:hover {
  background-color: var(--green-2);
  transform: scale(1.1); /* Dá um pulinho quando passa o mouse */
}

/*seção do mapa*/


#localizacao {
  position: relative; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  width: 100%;
  min-height: 600px; 
  clear: both;
}

.card-wrapper {
  position: relative;
  display: inline-block;
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}

.card-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

/* Configuração base dos botões */
.btn-mapa {
  position: absolute;
  z-index: 10;
  width: 170px;
  height: 50px;

  border-radius: 25px;
  cursor: pointer;
}

.btn-como-chegar {
  bottom: 97px;
  left: 75px;
}

/* Posicionamento do segundo botão (Ver no Maps) */
.btn-ver-maps {
  bottom: 97px; /* Ajuste aqui a distância do fundo */
  right: 70px; /* Ajuste aqui a distância da direita */
}

/* Efeito de hover para dar feedback ao usuário */
.btn-mapa:hover {
  background: rgba(255, 255, 255, 0.2);
}

/*  SEÇÃO PERGUNTAS FREQUENTES  */
.perguntas-frequentes {
  font-size: 30px;
  position: relative;
  color: var(--coffee-950);
  overflow: visible; 
  padding: 54px 40px 42px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(231, 182, 33, 0.616),
      transparent 28%
    ),
    linear-gradient(
      160deg,
      rgba(240, 197, 138, 0.98) 0%,
      rgba(241, 226, 200, 0.98) 55%,
      rgba(248, 224, 177, 0.98) 100%
    );
  border: 1px solid rgba(243, 221, 155, 0.52);
  border-radius: var(--radius-xl);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 0 0 1px rgba(255, 255, 255, 0.36);
  max-width: 1200px;
  margin: 40px auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* --- ESTILO DO COMPONENTE DETAILS --- */
details {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(193, 144, 47, 0.2);
  border-radius: 15px;
  padding: 20px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
}

summary {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  list-style: none; /* Remove setinha no Firefox */
  outline: none;
}

/* Esconde a setinha padrão no Chrome/Safari */
summary::-webkit-details-marker {
  display: none;
}

/* Linha decorativa na pergunta */
summary::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.4s ease;
}

summary:hover::after,
details[open] summary::after {
  width: 100%;
}

/* A resposta (p) */
details p {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  font-size: 16px;
  margin: 0;
  padding: 0 20px;
  overflow: hidden;
  border-top: none;
  background: rgba(255, 255, 255, 0.96);
  color: var(--coffee-700);
  line-height: 1.6;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  z-index: 2;
  transform: translateY(-10px);
  transition:
    opacity 0.4s ease,
    max-height 0.4s ease,
    padding 0.4s ease,
    transform 0.4s ease;
}

details:hover summary {
  color: var(--coffee-900);
}

/* Opções de FAQ: ajuste aqui quando quiser  */
details {
  overflow: visible;
  position: relative;
}

details[open] {
  z-index: 5;
}

/* Mostra a resposta quando aberto */
details[open] p {
  max-height: 800px;
  opacity: 1;
  visibility: visible;
  padding: 20px;
  transform: translateY(0);
}


body {
  overflow-x: hidden;
}

section, 
.container, 
.perguntas-frequentes, 
.section-on-gold,
.card-wrapper {
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}


.container, 
.perguntas-frequentes, 
.section-on-gold {
  width: 1300px !important;
  max-width: 100% !important; 
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*seção tauvez seja tempo de se escutar*/

.section-on-gold {
  background: linear-gradient(135deg, var(--green-2) 0%, var(--green) 100%);
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 30px;
  padding: 40px;
}

.cta-band {
  font-size: 16px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-band div {
  flex: 1;
}
.btn-green {
  flex-shrink: 0;
}

.section-on-gold .cta-band h2 {
  color: var(--cream-2) !important;
  font-size: 30px;
  font-family: var(--font-titulo);
}

.section-on-gold .cta-band p {
  color: var(--cream-2) !important;
  font-size: 18px;
  font-weight: 500;
}

/* roda pé */
footer {
  padding: 30px 50px;
  height: 80px;
  background-color: var(--coffee-950);
}

.wrap-foot {
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.btn-whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-whatsapp-float img {
  border-radius: 50%;
  width: 76px;
  height: auto;
  display: block;
}

.btn-whatsapp-float:hover {
  transform: scale(1.08);
}
.social-icons {
  display: flex;
  gap: 10px; /* Espaço entre os ícones */
  margin-top: 5px;
  margin-left: 0px;
  transition:
    opacity 0.4s ease-in-out,
    visibility 0.4s;
  opacity: 1;
  visibility: visible;
}

.social-icons a {
  color: #c5a059; /* Cor dourada */
  font-size: 30px;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.social-icons a:hover {
  color: #fff; /* Muda para branco ao passar o mouse */
  transform: scale(1.2); /* Efeito de leve aumento */
}

/* versao para celular*/

.menu-toggle {
  display: none;
}

/* === Cor do botão hambúrguer: troque aqui quando quiser === */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  position: relative;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--gold); /* cor atual do hamburger */
  border-radius: 2px;
  transition:
    background-color 0.3s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.hamburger:hover span {
  background: var(--cream); /* cor ao passar o mouse sobre o menu */
}

/* efeito do menu hamburguer*/
.hamburger::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-color: transparent;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

#menu-toggle:checked + .hamburger span {
  opacity: 0;
  transform: scaleX(0);
}

#menu-toggle:checked + .hamburger::after {
  opacity: 1;
  border-left-color: var(--gold);
  border-bottom-color: var(--gold);
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*  Fim da   hambúrguer  */
@media (max-width: 820px) {
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Força todas as caixas principais a ocuparem 100% da largura da tela sem sobrar nas laterais */
  .container, 
  .perguntas-frequentes, 
  .section-on-gold {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    border-left: none !important;
    border-right: none !important;
    border-top: solid 1px var(--gold-soft) !important;
    border-bottom: solid 1px var(--gold-soft) !important;
  }

  /* Ajuste do carrossel interno */
  .secao-carrossel {
    width: 100% !important;
    padding: 40px 0 !important;
  }

  .secao-carrossel .viewport {
    height: 480px !important;
    width: 100% !important;
    min-height: auto !important;
    overflow: visible !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .secao-carrossel .card-item img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 90% !important;
    object-fit: initial !important;
    border: none !important;
  }

  /* Menu Hambúrguer e Cabeçalho Mobile */
  .hamburger {
    display: flex !important;
    order: 1 !important;
  }

  .logo {
    order: 2 !important;
    text-align: center !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60% !important;
  }

  header {
    justify-content: space-between !important;
    padding: 0 20px !important;
    width: 100% !important;
  }

  header .btn-green {
    display: none !important;
  }

  #menu-toggle:checked ~ .social-icons {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  header nav {
    position: absolute !important;
    top: 80px !important;
    left: 0 !important;
    width: 100% !important;
    background: var(--coffee-500) !important;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2) !important;
    z-index: 1000 !important;
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    transition: all 0.4s ease-in-out !important;
  }

  header nav ul.nav-link {
    flex-direction: column !important;
    align-items: center !important;
    padding: 20px 0 !important;
    gap: 20px !important;
    list-style: none !important;
  }

  #menu-toggle:checked ~ nav {
    max-height: 400px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Elementos de Conteúdo e Seções */
  .frase-destaque {
    width: 90% !important;
    margin: 20px auto !important;
    padding: 20px !important;
    display: block !important;
    text-align: center !important;
    word-wrap: break-word !important;
    border: solid 1px var(--gold-soft) !important;
  }

  #ambiente-seguro {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 30px !important;
  }

  .btn-whatsapp {
    display: none !important;
  }

  #ambiente-seguro > img {
    margin: 0 auto !important;
    width: 80px !important;
  }

  .faq-grid {
    grid-template-columns: 1fr !important;
  }

  .cta-band {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 30px 20px !important;
  }

  .cta-band .btn-green {
    display: none !important;
  }

  .hero-descricao .btn-green,
  .hero-descricao .btn-secundario {
    display: none !important;
  }

  /* Rodapé e Ações Fixas para Celular */
  footer {
    display: none !important;
    position: relative !important;
    background-color: var(--coffee-950) !important;
    border-top: 1px solid rgba(243, 221, 155, 0.1) !important;
    margin-top: 50px !important;
  }

  .mobile-footer-actions {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 10px !important;
    background-color: #261b15 !important;
    z-index: 9999 !important;
    gap: 10px !important;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.781) !important;
    box-sizing: border-box !important;
  }

  .btn-agendar-fixo {
    flex: 1 !important;
    background-color: #25d366 !important;
    color: white !important;
    text-align: center !important;
    padding: 15px 0 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 16px !important;
  }

  .btn-whatsapp-float {
    display: flex !important;
    width: 50px !important;
    height: 50px !important;
    position: static !important;
  }

  .btn-whatsapp-float img {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
  }
}