/*
 *   Copyright (c) 2024 
 *   All rights reserved.
 */
:reset {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

:root {
  /* Cores primárias */
  --primary-color: #cf9c00;
  --primary-color-light: #e0b200;
  --secondary-color: #657582;
  --secondary-color-light: #7a8b9c;
  --light-color: #fbfbfb;
  --dark-color: #4a515e;

  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, #cf9c00, #ffce08);
  --gradient-secondary: linear-gradient(135deg, #657582, #4a515e);
  --gradient-hero: linear-gradient(45deg, #4a515e, #7a8b9c);

  /* Background pattern */
  --pattern: url("../images/pattern.svg");

  /* Overlays */
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --overlay-light: rgba(255, 255, 255, 0.6);

  /* Tipografia */
  --font-primary: "Effra", sans-serif;
  --font-size-base: 1.4rem;
  --font-size-lg: 1.6rem;
  --font-size-sm: 0.875rem;

  /* Espaçamentos */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;

  /* Sombreamento */
  --box-shadow: 0px -2px 2px rgba(0, 0, 0, 0.1);
}

/* Estilo geral */
body {
  font-family: var(--font-primary);
  color: var(--dark-color);
  line-height: 1.2;
  margin: 0;
  padding: 0;
  font-size: var(--font-size-base);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Hero Section */
header {
  background: var(--gradient-hero);
  padding: 0;
  margin-top: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-color);
  text-align: right;
  position: relative;
  gap: 0.4rem;
  min-height: 100vh;
  z-index: 1;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url("../images/pattern_sh.webp") repeat center center; */
  animation: 30s linear 1s infinite running slidein;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  filter: invert(100%);
  filter: grayscale(100%);
  overflow: hidden;
  /* transform: rotate(45deg); */
  z-index: 1;
}

.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url("../images/pattern_sh.webp") repeat center center; */
  animation: 30s linear 1s infinite running slidein;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  filter: invert(100%);
  filter: grayscale(100%);
  overflow: hidden;
  /* transform: rotate(45deg); */
  z-index: -1;
}

header img .transform-none {
  display: block;
  transform: none;
  transition: none;
  scale: none;
  animation: none;
}

header .custom-shape-divider-bottom-1731043595 {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.shape-fill-primary {
  fill: var(--light-color);
  z-index: 1;
}

.shape-fill-main {
  fill: var(--primary-color);
  z-index: 1;
}

header .container {
  z-index: 2;
}

header .hero-logo {
  flex: 2;
  text-align: center;
}

header .hero-logo img {
  max-width: 80%;
  height: auto;
  border-radius: 1rem;
  z-index: 29;
}

header .hero-form {
  flex: 1;
  padding: var(--spacing-xs);
  background: var(--gradient-secondary);
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  z-index: 29;
}

header .form-lead {
  background-color: var(--light-color);
  color: var(--dark-color);
  text-align: left;
  padding: var(--spacing-xs);
  border-radius: 0.75rem;
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

header .form-lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/fancy-cushion.webp");
  background-size: cover;
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  filter: grayscale(100%);
  filter: invert(100%);
  border-radius: 0.75rem;
  z-index: -1;
}

header .hero-form h1 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-sm);
}

header .hero-form p {
  margin-bottom: var(--spacing-md);
}

header .form-lead {
  background-color: var(--light-color);
  padding: var(--spacing-lg);
  border-radius: 0.75rem;
  box-shadow: var(--box-shadow);
}

header .form-lead .form-label {
  font-weight: 500;
}

header .form-lead .form-control {
  border: 1px solid var(--secondary-color-light);
  padding: var(--spacing-xs);
  border-radius: 0.5rem;
  z-index: 29;
}

header .form-lead button[type="submit"] {
  width: 100%;
  padding: var(--spacing-sm);
  font-size: var(--font-size-md);
  text-align: center;
  margin: 0 auto;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 100;
  align-self: center;
}

header .form-lead button[type="submit"]:hover {
  background-color: var(--primary-color-light);
  transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 1024px) {
  header {
    flex-direction: column !important;
    text-align: center !important;
  }

  header .hero-logo,
  header .hero-form {
    max-width: 100% !important;
    margin-bottom: var(--spacing-md) !important;
  }
}

/* Estilos das seções seguintes */

/* Dark and light section alternation */
.dark-section {
  position: relative;
  background-color: var(--dark-color);
  color: var(--light-color);
  /* Adiciona padding adicional se necessário */
  padding: var(--spacing-sm) 0;
  border-top: var(--primary-color) solid 6px;
  border-bottom: var(--primary-color) solid 6px;
  border-radius: 4rem 4rem 2rem 2rem !important;
}

.dark-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-image: url("../images/svg/zigzag-halftone.svg"); */
  background-image: url("../images/logos/pattern_rm380-12.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.4;
  /* filter: grayscale(100%); */
  /* transform: rotate(180deg); */
  backdrop-filter: var(--dark-color);
  pointer-events: none;
  z-index: 0.5;
}

/* Animação de transição de cor nas bordas */
@keyframes borderColorTransition {
  0% {
    border-color: var(--primary-color);
  }
  50% {
    border-color: var(--secondary-color);
  }
  100% {
    border-color: var(--primary-color);
  }
}

.border-animated {
  border: 4px solid var(--primary-color);
  animation: borderColorTransition 3s infinite;
}

.light-section {
  position: relative;
  background-color: var(--light-color);
  color: var(--text-dark);
  /* Adiciona padding adicional se necessário */
  padding: var(--spacing-sm) 0;
  border-top: var(--primary-color) solid 4px;
  border-bottom: var(--primary-color) solid 4px;
  border-right: inset var(--primary-color) solid 4px;
  border-radius: 4rem 4rem 0rem 4rem !important;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.light-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color-interpolation-filters: var(--light-color);
  /* background-image: url("../images/svg/zigzag-halftone.svg"); */
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 200 200'%3E%3Cdefs%3E %3ClinearGradient id='a' gradientUnits='objectBoundingBox' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23dfe3d6'/%3E%3Cstop offset='0.5' stop-color='%23FBFFF2'/%3E%3Cstop offset='1' stop-color='%23fbfff3'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='objectBoundingBox' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0.5'/%3E%3Cstop offset='1' stop-color='%23000' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon fill='url(%23a)' points='100 100 0 200 100 300 200 200'/%3E%3Cpolygon fill='url(%23b)' points='-100 100 0 230 100 100'/%3E%3Cpolygon fill='url(%23b)' points='100 100 200 230 300 100'/%3E%3Cpolygon fill='url(%23a)' points='0 0 -100 100 0 200 100 100'/%3E%3Cpolygon fill='url(%23a)' points='200 0 100 100 200 200 300 100'/%3E%3Cpolygon fill='url(%23b)' points='0 0 100 130 200 0'/%3E%3Cpolygon fill='url(%23a)' points='100 -100 0 0 100 100 200 0'/%3E%3Cpolygon fill='url(%23b)' points='-100 -100 0 30 100 -100'/%3E%3Cpolygon fill='url(%23b)' points='100 -100 200 30 300 -100'/%3E%3C/svg%3E"); */
  background-image: url("../images/logos/pattern_rm380-12.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.4;
  filter: grayscale(100%);
  /* filter: blur(1px); */
  pointer-events: none;
  z-index: 1;
}

.bg-bed {
  background-color: #fbfff2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 200 200'%3E%3Cdefs%3E %3ClinearGradient id='a' gradientUnits='objectBoundingBox' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23dfe3d6'/%3E%3Cstop offset='0.5' stop-color='%23FBFFF2'/%3E%3Cstop offset='1' stop-color='%23fbfff3'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='objectBoundingBox' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0.5'/%3E%3Cstop offset='1' stop-color='%23000' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon fill='url(%23a)' points='100 100 0 200 100 300 200 200'/%3E%3Cpolygon fill='url(%23b)' points='-100 100 0 230 100 100'/%3E%3Cpolygon fill='url(%23b)' points='100 100 200 230 300 100'/%3E%3Cpolygon fill='url(%23a)' points='0 0 -100 100 0 200 100 100'/%3E%3Cpolygon fill='url(%23a)' points='200 0 100 100 200 200 300 100'/%3E%3Cpolygon fill='url(%23b)' points='0 0 100 130 200 0'/%3E%3Cpolygon fill='url(%23a)' points='100 -100 0 0 100 100 200 0'/%3E%3Cpolygon fill='url(%23b)' points='-100 -100 0 30 100 -100'/%3E%3Cpolygon fill='url(%23b)' points='100 -100 200 30 300 -100'/%3E%3C/svg%3E");
}

.btn::after {
  opacity: 1 !important;
  z-index: 2;
}

.btn-gradient::after {
  opacity: 1 !important;
  z-index: 2;
}

/* Estilos para a nova seção */
.light-section .embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  border: solid 4px var(--primary-color-light);
  padding: 0;
  overflow: hidden;
}

.light-section .embed-responsive::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.light-section .embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#SF {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: var(--spacing-sm) 0;
  margin-bottom: 0.4rem;
}

#acessorios {
  background-color: var(--light-color);
  color: var(--dark-color);
}

#acessorios section {
  padding: var(--spacing-md) var(--spacing-sm);
}

#pikolin {
  background-color: var(--dark-color);
  color: var(--light-color);
}

/* Galeria de imagens */
.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

section h2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  margin-left: 0.4rem;
}

section img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-right: solid var(--primary-color-light) 6px;
  border-bottom: solid var(--primary-color) 6px;
  /* border-radius: 1rem; */
  box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, cubic-bezier(0.19, 1, 0.22, 1) 0.3s ease;
}

.logo-section {
  width: 50% !important;
  height: auto;
  border: 0rem !important;
  border-right: solid var(--primary-color-light) 0px !important;
  border-bottom: solid var(--primary-color) 0px !important;
  border-radius: 0rem !important;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0) !important;
  transition: none !important;
  margin: 0 auto !important;
}

/* Efeito de hover nas imagens da galeria */
/* img:hover {
  transform: scale(1.05);
  box-shadow: 0px -8px 16px rgba(0, 0, 0, 0.3);
} */

/* Botões */
.btn-gradient {
  background: var(--gradient-primary);
  color: var(--light-color);
  font-size: var(--spacing-sm);
  padding: var(--spacing-xs);
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-gradient:hover {
  background: var(--primary-color-light);
  transform: scale(1.05);
}
.divider-bottom-3 {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23000"><path d="M0 0v41s40 117.6 337 20.7c46.7-15.2 104.8-46 163-46 58.1 0 116.3 30.8 163 46 297 97 337-20.7 337-20.7V0H0Z"></path></svg>');
  background-color: var(--dark-color);
}
/* Footer */
footer {
  background: var(--gradient-secondary) !important;
  color: var(--light-color);
  padding: var(--spacing-lg) 0;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  color: var(--primary-color);
}

#sobre h2 {
  text-align: center;
  justify-content: center;
}

#sobre .p {
  font-family: var(--font-primary);
  font-size: 1.8rem !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
  text-align: right !important;
}

.icon-wrapper {
  color: var(--primary-color);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 480 480" fill="%23CF9C00"><path d="M240 480a240 240 0 0 0 240-240L240 0A240 240 0 0 0 0 240l240 240Z"></path></svg>');
  background-size: 300px 300px;
  background-repeat: contain no-repeat;
  z-index: 2;
  overflow: visible;
}

.icon-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 480 480" fill="%23CF9C00"><path d="M240 480a240 240 0 0 0 240-240L240 0A240 240 0 0 0 0 240l240 240Z"></path></svg>');
  background-size: 300px 300px;
  background-repeat: contain no-repeat;
  opacity: 0.5;
  z-index: 3;
  overflow: visible;
}

.icon-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 480 480" fill="%23CF9C00"><path d="M240 480a240 240 0 0 0 240-240L240 0A240 240 0 0 0 0 240l240 240Z"></path></svg>');
  background-size: contain 300px 300px;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 2;
  overflow: visible;
}

/* .bg-striped-content {
  position: relative !important;
  background-color: transparent !important;
  background-size: 100px !important;
  background-position: center !important;
  background-repeat: repeat;
  z-index: 4;
}

.bg-striped-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg stroke='%23898989' stroke-width='0' stroke-opacity='0.28'%3E%3Crect fill='%23F5F5F5' x='-60' y='-60' width='110' height='240'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 150px;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  animation: 30s linear 1s infinite running forwards slidein;
  filter: invert(100%);
  z-index: -1;
} */

/* Tornar o iframe responsivo com proporção 9:16 e limitar a altura */
.embed-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 300px; /* Altura máxima desejada */
  padding-bottom: 56.25%; /* Ajuste para manter o vídeo menor */
}

.embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  max-height: 400px; /* Altura máxima desejada */
}

/* Centralizar todo o conteúdo da seção de vídeo */
section.bg-gradient.py-5.dark-light {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Ajustes para mobile: empilhar imagens e transformar em slide */
@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }
  .gallery {
    flex-direction: column;
    overflow: hidden;
  }

  /* Estilo básico para slider */
  .gallery {
    display: block;
  }

  .gallery img {
    width: 40%;
    height: 40%;
    max-width: none;
  }

  .btn {
    font-size: var(--spacing-sm);
    text-align: center;
    opacity: 1;
  }

  /* Sugestão: implementar slider com JavaScript ou biblioteca adicional */
}

i {
  font-size: 1.5rem;
  margin-right: 0.5rem !important;
}

.image-hover {
  width: 40%;
  height: 40%; /* Tamanho uniforme para todas as imagens */
  object-fit: cover; /* Garante que a imagem se ajuste ao contêiner */
  transition: transform 0.3s ease;
}

.image-over {
  width: auto;
  height: 100%; /* Tamanho uniforme para todas as imagens */
  object-fit: cover; /* Garante que a imagem se ajuste ao contêiner */
  transition: transform 0.3s ease;
}

.image-over:hover {
  transform: scale(1.05); /* Efeito de scale ao passar o mouse */
}

.image-hover:hover {
  transform: scale(1.05); /* Efeito de scale ao passar o mouse */
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  z-index: 3;
}

h2 {
  display: flex;
  text-align: center !important;
  color: #cf9c00;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.btn-gradient {
  background: var(--gradient-primary) !important;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-align: center;
  opacity: 1 !important;
  z-index: 4 !important;
}

.btn-gradient:hover {
  background-color: #8c8c8c;
}

.btn-gradient:active {
  transform: scale(0.95);
}

#visual {
  overflow: auto;
}

#visual::-webkit-scrollbar {
  width: 12px;
}

#visual::-webkit-scrollbar-track {
  background: var(--dark-color);
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 6px;
}

#visual::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 6px;
  border: 3px solid var(--light-color);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

#visual {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--light-color);
  -webkit-overflow-scrolling: touch;
  -webkit-scrollbar-width: thin;
  z-index: 6;
}

/* Scrollbar para navegadores WebKit */
#visual::-webkit-scrollbar {
  width: 12px;
}

#visual::-webkit-scrollbar-track {
  background: var(--light-color);
  border-radius: 6px;
}

#visual::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 6px;
  border: 3px solid var(--light-color);
}

/* Novo estilo para a scrollbar */
#visual::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-color-light);
}

#visual::-webkit-scrollbar-thumb:active {
  background-color: var(--secondary-color);
}

/* pillow background */

.svg-pillow {
  position: relative;
  color: var(--primary-color);
  fill: var(--primary-color);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/pillow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  overflow-x: hidden;
  z-index: 1;
}

.svg-pillow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/pillow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  overflow: visible;
  z-index: 1 !important;
}

.svg-pillow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/pillow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  overflow: visible;
  z-index: 2 !important;
}

/* Definir altura fixa para as imagens da galeria */
.gallery-img {
  width: 400px;
  height: 400px; /* Ajuste conforme necessário */
  object-fit: cover;
}

/* Definir altura fixa para as imagens do carrossel */
.carousel-img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#visual {
  scrollbar-width: thin !important;
  scrollbar-color: var(--primary-color) var(--dark-color) !important;
}

#visual::-webkit-scrollbar {
  width: 12px !important;
}

#visual::-webkit-scrollbar-track {
  background: var(--light-color) !important;
  border-radius: 6px !important;
}

#visual::-webkit-scrollbar-thumb {
  background-color: var(--primary-color) !important;
  border-radius: 6px !important;
  border: 3px solid var(--light-color) !important;
}

/* Estilos para o botão do WhatsApp */
#whatsapp-button {
  position: fixed;
  width: 4rem;
  height: 4rem;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366; /* Cor da marca WhatsApp */
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

#whatsapp-button i {
  padding: 0.5em 0.5em 0.5em 0.7em !important;
}

#whatsapp-button:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  #whatsapp-button {
    width: 3rem;
    height: 3rem;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.7rem;
  }
  header .custom-shape-divider-bottom-1731043595 {
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }
}

/* Animação para a borda inferior estilosa */
@keyframes expandBorder {
  from {
    width: 0;
    left: 50%;
  }
  to {
    width: 100%;
    left: 0;
  }
}

.text-border-animated {
  position: relative;
  display: inline-block;
}

.text-border-animated::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* Ajuste a distância da borda conforme necessário */
  height: 3px; /* Espessura da borda */
  width: 100%;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: center;
  animation: expandBorder 1s forwards;
}

.text-reflex-gradient {
  position: relative;
  font-weight: bold;
  font-size: 2rem;
  background: var(--gradient-primary); /* Aplica o gradiente como fundo */
  background-clip: text; /* Define o gradiente como "texto" */
  -webkit-background-clip: text; /* Define o gradiente como "texto" */
  -webkit-text-fill-color: transparent; /* Faz o texto transparente para exibir o gradiente */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); /* Adiciona uma sombra ao texto */
}

.text-reflex-gradient::after {
  content: attr(data-text); /* Reflete o texto original */
  position: absolute;
  top: 100%; /* Posiciona o reflexo abaixo do texto principal */
  left: 0;
  right: 0;
  background: var(--gradient-primary); /* Aplica o mesmo gradiente ao reflexo */
  -webkit-background-clip: text; /* Define o gradiente como "texto" */
  -webkit-text-fill-color: transparent; /* Faz o texto transparente */
  transform: scaleY(-1); /* Inverte verticalmente */
  filter: blur(2px); /* Aplica um leve desfoque */
  opacity: 0.6; /* Ajusta a opacidade do reflexo */
}

.ratio-9x16 {
  padding-bottom: 177.78%;
  padding-top: 66.66%;
  width: auto;
  height: 0;
}

.video-container {
  position: relative;
  overflow: hidden;
  padding-top: 10%;
}

.md-video {
  display: none;
}

.lg-video {
  display: block;
}

@media (min-width: 769px) {
  .dark-section,
  .light-section {
    margin-inline: 1rem !important;
  }
}

@media (max-width: 768px) {
  .ratio-9x16 {
    padding-bottom: 177.78% !important; /* 9:16 Aspect Ratio */
    padding-top: 0 !important;
  }
  .video-container {
    padding-top: 0;
    margin-bottom: 1rem;
  }
  .md-video {
    display: block;
  }
  .lg-video {
    display: none;
  }
  section img {
    object-fit: cover;
  }
  .galley-img {
    object-fit: cover;
  }
}

#localizacao h2 {
  color: #cf9c00; /* Destaque do título */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#localizacao .btn-gradient {
  background: linear-gradient(135deg, #cf9c00, #ffce08);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

#localizacao .btn-gradient:hover {
  background: linear-gradient(135deg, #ffce08, #cf9c00);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  override-colors: transparent;
}

.text-drop-shadow-white {
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.6);
}

.text-drop-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.paragraph-decoration {
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-align: justify;
  font-size: 1.4rem;
  text-justify: distribute;
  padding: var(--spacing-xs);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.paragraph-decoration:hover {
  transform: blur(2px);
}

@media (max-width: 768px) {
  .paragraph-decoration {
    font-size: 1rem;
    padding: var(--spacing-sm);
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
  font-weight: bold;
}
