@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gold: #d1b128;
  --color-gold-light: #f4e4a6;
  --color-gold-dark: #b8942c;
  --color-green: #25d366;
  --color-green-dark: #1eab52;
  --bg-gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  --bg-gradient-gold: linear-gradient(135deg, #d4af37 0%, #b8942c 100%);
  --overlay-dark: rgba(0, 0, 0, 0.7);
  --overlay-black: rgba(0, 0, 0, 0.5);
  --overlay-gold: rgba(212, 175, 55, 0.1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fix para scroll smooth funcionar no Chrome */
@keyframes smoothscroll1 {
  from,
  to {
    scroll-behavior: smooth;
  }
}
@keyframes smoothscroll2 {
  from,
  to {
    scroll-behavior: smooth;
  }
}

html {
  animation: smoothscroll1 1s;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html:focus-within {
  animation-name: smoothscroll2;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--color-black);
  line-height: 1.6;
}
a {
  text-decoration: none;
}
h1 {
  color: white;
  animation: fadeSlideDown 0.8s ease-out;
  font-size: 40px;
  text-shadow: 0px 0px 3px rgb(255 255 255 / 47%);
}
h2 {
  color: #231600;
  animation: fadeSlideUp 0.8s ease-out;
  font-size: 30px;
}
p {
  color: #3d3d3d;
  font-size: 16px;
}

.text-sc1 {
  font-size: 24px;
  color: white;
}

hr {
  border: 1px solid #8787871f;
  margin-top: 15px;
  -webkit-padding-start: center;
}

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

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

header {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 325ms;
  z-index: 1000;
  padding: 15px;
}
header.scrolled {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 20px #00000087;
}
.scrolled-bg {
  width: 100px !important;
}
.imgLogo {
  transition: 325ms;
}
nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  max-width: 1200px;
  width: 1200px;
}

main {
}

section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo {
  width: 25%;
  display: flex;
  align-items: start;
}
.logo img {
  width: 175px;
  height: auto;
}
.links-nav {
  display: flex;
  width: 75%;
  justify-content: space-between;
}
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 75%;
}
.nav-menu li {
  list-style: none;
}
.nav-menu li a {
  color: white;
  font-size: 18px;
  transition: 325ms;
}
.nav-menu li a:hover {
  color: var(--color-gold);
}
.nav-menu li a:focus {
  color: var(--color-gold);
}
.social-links {
  display: flex;
  gap: 30px;
}
.social-links a {
  color: white;
  font-size: 30px;
  transition: 325ms;
}
.social-links a:hover {
  color: var(--color-gold);
  transform: translateY(-3px);
}
.social-links a:focus {
  color: var(--color-gold);
  transform: translateY(-3px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--color-white);
  border-radius: 3px;
  transition: 325ms;
}
.menu-close {
  display: none;
  position: absolute;
  top: 30px;
  left: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--color-white);
  font-size: 28px;
  z-index: 1001;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  transition: 325ms;
}
.mobile-menu-overlay.active {
  opacity: 1;
}

#inicio picture {
  position: absolute;
  width: 100%;
  height: 775px;
  z-index: -5;
}
.bg-sc1 {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 775px;
  object-fit: cover;
  z-index: -5;
  aspect-ratio: 1920 / 775;
}

@media (max-width: 768px) {
  .bg-sc1 {
  }

  .bg-sc1-overlay{
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    -o-backdrop-filter: blur(10px);
    -ms-backdrop-filter: blur(10px);
}
}
.bg-sc1-overlay {
  position: absolute;
  background: linear-gradient(
    118deg,
    rgb(0 0 0 / 83%) 0%,
    rgb(0 0 0 / 7%) 100%
  );
  width: 100%;
  height: 775px;
  z-index: -4;
}

.box-divisao-forms {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 250px;
  gap: 50px;
}
.box-divisao-text {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  width: 60%;
  animation: fadeSlideUp 0.8s ease-out;
}
.box-divisao-formulario {
  padding: 40px 35px;
  border-radius: 20px;
  background: white;
  box-shadow: -7px -20px 18px -5px #00000017, -6px -14px 20px #0000000f,
    3px 20px 20px 0px #0000000a;
  width: 40%;
  animation: fadeSlideUp 0.9s ease-out;
  z-index: 10;
}
.box-forms {
  gap: 20px;
}

.btn {
  background: #d1b128;
  border: 0px;
  color: BLACK;
  border-radius: 10px;
  font-size: 18px;
  box-shadow: -4px 3px 16px #0000001f;
  transition: 325ms;
  cursor: pointer;
  width: 100%;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: -4px 6px 20px #00000030;
}
.btn:focus {
  transform: translateY(-2px);
  box-shadow: -4px 6px 20px #00000030;
}
.btn-secondary {
  color: #d1b128;
  border-radius: 10px;
  font-size: 18px;
  backdrop-filter: blur(4px);
  border: 1px solid #d1b128;
  background: transparent;
  transition: 325ms;
  cursor: pointer;
  width: 100%;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.btn-secondary:hover {
  background: var(--color-gold);
  color: white;
  border-color: var(--color-gold);
}
.btn-secondary:focus {
  background: var(--color-gold);
  color: white;
  border-color: var(--color-gold);
}
button {
  transition: 325ms;
  cursor: pointer;
}
button:hover {
  box-shadow: -4px 6px 20px #00000030;
}
button:focus {
}

.cta-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-direction: row-reverse;
  margin-top: 15px;
}

.btn-ghost {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 0 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 18px;
  font-weight: 400;
  transition: 325ms;
  cursor: pointer;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: row-reverse;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.box-btns-forms {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.input-group {
  display: flex;
  gap: 10px;
  width: 100%;
}
.input-group input {
  flex: 1;
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}
input {
  border: 1px solid #acacac52;
  border-radius: 12px;
  width: 100%;
  height: 50px;
  padding: 0 15px;
  box-shadow: -2px 6px 10px #00000008;
  font-size: 16px;
  color: #3d3d3d;
  transition: 325ms;
}
input:focus {
  border: 1px solid #d1b128;
  box-shadow: 0 0 15px #d1b12820;
  outline: none;
}

.error-message {
  display: none;
  position: absolute;
  bottom: -22px;
  left: 0;
  color: #dc3545;
  font-size: 12px;
  font-weight: 500;
}
.custom-select-wrapper {
  position: relative;
  width: 100%;
}
.custom-select-wrapper select {
  background: white;
  border: 1px solid #acacac52;
  border-radius: 10px;
  width: 100%;
  height: 50px;
  padding: 0 15px;
  padding-right: 40px;
  color: grey;
  font-size: 16px;
  transition: 325ms;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.custom-select-wrapper select:hover {
  border-color: var(--color-gold);
}
.custom-select-wrapper select:focus {
  border: 1px solid #d1b128;
  box-shadow: 0 0 15px #d1b12820;
  outline: none;
}
.custom-select-wrapper i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
  pointer-events: none;
  font-size: 14px;
  transition: 325ms;
}
.custom-select-wrapper select:focus + i {
  transform: translateY(-50%) rotate(180deg);
}
.custom-select {
  background: white;
  border: 1px solid #acacac52;
  border-radius: 10px;
  width: 100%;
  height: 50px;
  padding: 0 15px;
  color: grey;
  font-size: 16px;
  transition: 325ms;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.custom-select:hover {
  border-color: var(--color-gold);
}
.custom-select.active {
  border: 1px solid #d1b128;
  box-shadow: 0 0 15px #d1b12820;
  border-radius: 12px;
}
.custom-select-arrow {
  color: var(--color-gold);
  font-size: 14px;
  transition: 325ms;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-select.active .custom-select-arrow i {transform: rotateX(
0deg);}
.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border-top: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  z-index: 1000;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  margin-top: 2px;
}
.custom-select.active + .custom-select-options {
  max-height: 250px;
  overflow-y: auto;
  opacity: 1;
}
.custom-select-option {
  padding: 12px 15px;
  cursor: pointer;
  transition: 225ms;
  color: #3d3d3d;
  font-size: 16px;
}
.custom-select-option:hover {
  background: var(--overlay-gold);
  color: var(--color-gold-dark);
}
.custom-select-option.selected {
  background: var(--bg-gradient-gold);
  color: white;
  font-weight: 500;
}
.custom-select-options::-webkit-scrollbar {
  width: 6px;
}
.custom-select-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.custom-select-options::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 10px;
}
.custom-select-options::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-dark);
}


.sc2 {
  margin: -76px 0;
  padding-bottom: 200px;
}
.box-sc2 {
  display: flex;
  flex-direction: column;
}
.box-header-sections-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  align-items: flex-start;
}
.box-header-sections-padrao {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.text-sc2 {
}
.text-sc2 h2 {
  font-size: 40px;
  font-weight: 600;
}

.gradient-text {
  background: var(--bg-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.underline-title {
  position: relative;
  display: inline-block;
}
.underline-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  width: 350px;
  height: 3px;
  background: var(--bg-gradient-gold);
  border-radius: 2px;
}
.text-sc2 h3 {
  font-size: 30px;
  color: #2f2f2f;
  margin: 10px 0;
  font-weight: 500;
}
.text-sc2 p {
  text-align: start;
}
.subtitle-sc2 {
}
.benefits-grid {
  display: flex;
  gap: 60px;
  margin-top: 15px;
}
.benefit-column {
  width: fit-content;
}
.benefit-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.benefit-column ul li {
  position: relative;
  padding-left: 35px;
  color: var(--color-black);
  animation: fadeSlideUp 0.6s ease-out backwards;
  display: flex;
  align-items: center;
  gap: 12px;
}
.benefit-column ul li:nth-child(1) {
  animation-delay: 0.1s;
}
.benefit-column ul li:nth-child(2) {
  animation-delay: 0.2s;
}
.benefit-column ul li:nth-child(3) {
  animation-delay: 0.3s;
}
.benefit-column ul li i {
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 20px;
}

.sc3 {
  padding: 80px 0;
  background: #f8f8f8;
}
.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  width: 100%;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--bg-gradient-gold);
  border-radius: 50px;
}
.section-subtitle {
  font-size: 18px;
  color: #666;
  width: 55%;
  margin: 15px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.service-card {
  background: white;
  border-radius: 15px;
  padding: 35px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 325ms;
  display: flex;
  flex-direction: column;
  gap: 15px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.service-card:hover .service-link i {
  transform: translateX(5px);
}
.service-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-gradient-gold);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.service-icon i {
  font-size: 32px;
  color: white;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0;
}
.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.card-separator {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 10px 0;
  width: 100%;
}

.service-link {
  color: var(--color-gold);
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.service-link i {
  transition: 325ms;
  font-size: 14px;
}

.service-card-alert {
  background: var(--bg-gradient-gold);
  color: white;
  cursor: default;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
}
.service-card-alert:hover {
  transform: translateY(0);
}
.service-card-alert h3 {
  color: white;
}
.service-card-alert p {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}
.service-icon-alert {
  border: 1px solid #ffffff99;
  background: transparent;
}
.alert-signature {
  margin-top: 10px;
  font-style: italic;
  font-size: 14px !important;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: var(--color-green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: 325ms;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
.whatsapp-float i {
  color: white;
  font-size: 40px;
}

.sc4 {
  position: relative;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-newsletter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg-02.webp");
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.bg-newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}
.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-content h2 {
  color: white;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 35px;
}
.cta-form {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.cta-form input {
  flex: 1;
}
.cta-form button {
  flex-shrink: 0;
  height: 52px;
}

.sc5 {
  padding: 80px 0;
  background: white;
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-left {
  width: 100%;
  max-width: 100%;
}
.about-left h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 10px;
}
.about-subtitle {
  font-size: 18px;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 30px !important;
}
.about-carousel {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  object-position: bottom;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carousel-image.active {
  opacity: 1;
}
.about-text {
}
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}
.about-form {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
}
.about-form h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 10px;
}
.form-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 22px !important;
}
.about-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.form-contact {
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 15px;
}
.form-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #555;
  margin: 0;
}
.form-contact i {
  color: var(--color-gold);
  font-size: 16px;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

footer {
  background: #1a1a1a;
  padding: 60px 0 20px 0;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
}
.footer-brand .logo {
  width: auto;
  margin-bottom: 20px;
}
.footer-brand .logo img {
  width: 150px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
.footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer-menu h4 {
  color: var(--color-gold);
  margin-bottom: 20px;
  font-size: 18px;
  width: 100%;
  text-align: center;
}
.footer-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.footer-menu ul li {
}
.footer-menu ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: 325ms;
  display: inline-block;
}
.footer-menu ul li a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}
.footer-social {
  display: flex;
  flex-direction: column;
}
.footer-social h4 {
  color: var(--color-gold);
  margin-bottom: 20px;
  font-size: 18px;
}
.footer-social .social-links {
  gap: 20px;
  margin-bottom: 20px;
}
.footer-social .social-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
}
.footer-social .social-links a:hover {
  color: var(--color-gold);
}
.footer-address {
}
.footer-address h4 {
  color: var(--color-gold);
  margin-bottom: 20px;
  font-size: 18px;
}
.footer-address p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  max-width: 75%;
}
.footer-address i {
  color: var(--color-gold);
  font-size: 16px;
}
.footer-bottom {
  padding-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.footer-bottom a {
  color: var(--color-gold);
  transition: 325ms;
}
.footer-bottom a:hover {
  opacity: 0.8;
}

@media (max-width: 1250px) {
  .container {
    max-width: 100%;
    width: 90%;
    padding: 0 20px;
  }
}

@media (max-width: 1000px) {
  .hamburger {
    display: flex;
  }
  .section-subtitle {
    width: 100%;
    text-align: start;
  }
  .sc2 {
    padding: 0 0 40px 0;
    margin: 40px 0;
  }
  .mobile-menu-overlay {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #000000c7;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 40px;
    transition: 325ms;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    -moz-backdrop-filter: blur(15px);
    -o-backdrop-filter: blur(15px);
    -ms-backdrop-filter: blur(15px);
    z-index: 999;
    box-shadow: 0 0 60px black;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    font-size: 20px;
    display: block;
    padding: 15px 0;
  }

  .nav-menu.active .menu-close {
    display: block;
  }

  .social-links {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: none;
  }

  .logo {
    width: 50%;
  }

  .logo img {
    width: 150px;
  }

  .links-nav {
    width: 50%;
    justify-content: flex-end;
  }

  .box-divisao-forms {
    flex-direction: column;
    padding-top: 150px;
    gap: 0px;
  }

  .box-divisao-text {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .box-divisao-formulario {
    width: 100%;
    margin-top: 40px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 15px;
  }
  .service-card {
    align-items: center;
  }
  .service-card h3 {
    text-align: center;
  }
  .input-group {
    flex-direction: column;
  }
  .input-group input {
    flex: auto;
  }
  .cta-form {
    flex-direction: column;
  }

  .cta-form input {
    max-width: 100%;
    width: 100%;
    flex: auto;
  }
  .cta-form button {
    width: 100%;
  }
  .about-section {
    gap: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .form-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
    margin: 0;
  }
  .about-form h3 {
    text-align: start;
  }
  .about-carousel {
    height: 300px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
  }
  .whatsapp-float i {
    font-size: 33px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand .logo {
    display: flex;
    justify-content: center;
  }

  .footer-menu ul {
    align-items: center;
  }

  .footer-social .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    bottom: 0px;
    justify-content: center;
    left: 0;
  }
  .footer-address {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .invisivel{
    display: none;
  }
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 30px !important;
    text-align: start;
  }
  .cta-content h2 {
    text-align: center;
  }
  .about-left h2 {
    text-align: start;
  }
  .underline-title {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    text-align: start;
    width: 100%;
  }
  .underline-title::after {
    width: 100px;
  }
  .text-sc1 {
    font-size: 20px;
    text-align: center;
  }
  p {
    text-align: start;
  }
  .footer-bottom p {
    text-align: center;
  }
  .footer-brand p {
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  .cta-content p {
    text-align: center;
  }
  .logo img {
    width: 120px;
  }
  .scrolled-bg {
    width: 90px !important;
  }
  .box-divisao-formulario {
    padding: 25px 20px;
  }
.form-feedback{bottom: 20px !important;top: auto !important;left: 10px;height: 75px;width: 70%;}
  .cta-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .btn-gold {
    width: 100%;
  }
  .btn-ghost {
    width: 100%;
  }
  .btn,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .wave-divider svg {
    height: 60px;
  }
}
.footer-separator {
  border: 1px solid #8787871f;
  width: 50%;
  margin: 10px 0;
}
.btn-gold {
  background: #d1b128;
  border: 1px solid #d1b128;
  color: BLACK;
  padding: 0 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  font-size: 18px;
  font-weight: 400;
  transition: 300ms;
  cursor: pointer;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: row-reverse;
}

.form-feedback {
  display: none;
  padding: 15px 20px;
  margin-top: 15px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  animation: slideDown 0.3s ease;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
}

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

.form-feedback {
  display: none;
  padding: 15px 20px;
  margin-top: 15px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.3s ease;
  opacity: 1;
}

.form-feedback.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: flex;
}

.form-feedback.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: flex;
}

.form-feedback.loading {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
  display: flex;
}

.form-feedback i {
  font-size: 18px;
}

input.error,
select.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.field-error {
  color: #dc3545;
  font-size: 13px;
  margin-top: 5px;
  display: none;
}

.btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn.loading .spinner {
  display: inline-block;
}

.btn.loading .btn-text {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.faq-section {
  padding: 80px 0;
  background: #F8F8F8;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: -4px 8px 15px #00000005, -11px -14px 15px #0000000a;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #2f2f2f;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f8f8f8;
  transform: none;
  box-shadow: none;
}

.faq-question span {
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  color: var(--color-gold);
  font-size: 20px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 300ms;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 20px;
  transition: 300ms;
  opacity: 1;
}

.faq-answer p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #555;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 10px 0 15px 20px;
  color: #555;
}

.faq-answer ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .faq-question {
    padding: 20px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

.invisivel{
  opacity: 0;
  pointer-events: none
}
/* Mobile Loader Newsletter */
.mobile-loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-loader.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
  animation: loaderFadeIn 0.3s ease forwards, loaderFadeOut 0.3s ease 0.45s forwards;
}

.mobile-loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(209, 177, 40, 0.3);
  border-top-color: #d1b128;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes loaderFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes loaderFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
