/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --primary-color: #D4AF37; /* Gold */
  --primary-color-alt: #C5A030; /* Darker Gold */
  --secondary-color: #2a2a2a;
  --title-color: #ffffff;
  --text-color: #b8b8b8;
  --text-color-light: #8a8a8a;
  --body-color: #1a1a1a;
  --container-color: #2a2a2a;
  --border-color: #3a3a3a;
  --shadow-color: rgba(0, 0, 0, 0.3);

  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --title-font: 'Playfair Display', serif;
  --biggest-font-size: 3rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.75rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;

  /*========== Font weight ==========*/
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;

  /*========== Margins ==========*/
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  /*========== Transitions ==========*/
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.7s ease;
}

/* Responsive typography */
@media screen and (max-width: 992px) {
  :root {
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3 {
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: var(--font-semi-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.grid {
  display: grid;
}

.section {
  padding: 6rem 0 2rem;
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: var(--mb-0-5);
  font-weight: var(--font-medium);
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
  font-family: var(--title-font);
}

.section__description {
  color: var(--text-color);
  margin-bottom: var(--mb-2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__header {
  text-align: center;
  margin-bottom: var(--mb-3);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-color);
  color: var(--body-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-size: var(--small-font-size);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.button:hover {
  background-color: var(--primary-color-alt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
  color: var(--body-color);
}

.button--secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.button--secondary:hover {
  background-color: var(--primary-color);
  color: var(--body-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.button i {
  font-size: 1.2rem;
}

/*=============== HEADER & NAV ===============*/
.header {
  width: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

  .nav__logo-img {
  height: 1.8rem; /* Reduzido para um tamanho mais adequado */
  width: auto;
  vertical-align: middle; /* Centraliza verticalmente */
}

.nav__list {
  display: flex;
  column-gap: 2rem;
}

.nav__link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  transition: var(--transition-fast);
  position: relative;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
}

.nav__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -0.5rem;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition-fast);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__toggle,
.nav__close {
  display: none;
}

/* Change background header */
.scroll-header {
  background-color: rgba(26, 26, 26, 0.98);
  box-shadow: 0 2px 20px var(--shadow-color);
}

/*=============== HERO ===============*/
.hero {
  padding-top: calc(var(--header-height) + 2rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero__data {
  z-index: 2;
}

.hero__title {
  font-size: var(--biggest-font-size);
  margin-bottom: var(--mb-1);
  line-height: 1.1;
}

.hero__title-accent {
  color: var(--primary-color);
  position: relative;
}

.hero__title-accent::after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
}

.hero__description {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-2-5);
  color: var(--text-color);
  line-height: 1.5;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem; /* Adiciona espaço para o hero__scroll */
}

.hero__cta {
  font-size: var(--normal-font-size);
  padding: 1.2rem 2.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__blob {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.hero__blob::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-color-alt));
  opacity: 0.3;
  animation: pulse-blob 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-blob {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero__icon {
  font-size: 4rem;
  color: var(--body-color);
  z-index: 2;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.hero__scroll-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  transition: var(--transition-fast);
}

.hero__scroll-link:hover {
  color: var(--primary-color);
}

.hero__scroll-icon {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

.hero__scroll-text {
  font-size: var(--small-font-size);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/*=============== ABOUT ===============*/
.about {
  background-color: var(--container-color);
  padding: 4rem 0 2rem; /* Reduzido o padding superior */
}

.about__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.about__data {
  order: 2;
}

.about__description {
  margin-bottom: var(--mb-2);
  color: var(--text-color);
  line-height: 1.7;
}

.about__features {
  display: grid;
  gap: 1.5rem;
}

.about__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about__feature-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.about__feature-title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
  color: var(--title-color);
}

.about__feature-description {
  color: var(--text-color);
  font-size: var(--small-font-size);
}

.about__image {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1;
}

.about__blob {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, var(--container-color), var(--border-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--primary-color);
  position: relative;
}

.about__blob::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  opacity: 0.3;
  animation: rotate 10s linear infinite;
}

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

.about__icon {
  font-size: 3rem;
  color: var(--primary-color);
}

/*=============== SERVICES ===============*/
.services__grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: var(--mb-3);
}

.services__card {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: var(--transition-medium);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: var(--transition-medium);
}

.services__card:hover::before {
  left: 100%;
}

.services__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-color);
  border-color: var(--primary-color);
}

.services__card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1);
  transition: var(--transition-fast);
}

.services__card:hover .services__card-icon {
  transform: scale(1.1) rotate(5deg);
}

.services__card-icon i {
  font-size: 2rem;
  color: var(--body-color);
}

.services__card-title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--title-color);
}

.services__card-list {
  margin-bottom: var(--mb-2);
  text-align: left;
}

.services__card-list li {
  color: var(--text-color);
  margin-bottom: var(--mb-0-5);
  position: relative;
  padding-left: 1.5rem;
}

.services__card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: var(--font-bold);
}

.services__card-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-color);
  color: var(--body-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: var(--font-medium);
  transition: var(--transition-fast);
  font-size: var(--small-font-size);
}

.services__card-button:hover {
  background-color: var(--primary-color-alt);
  transform: translateY(-2px);
}

/*=============== LOCATION ===============*/
.location {
  background-color: var(--container-color);
}

.location__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.location__description {
  margin-bottom: var(--mb-2);
  color: var(--text-color);
  line-height: 1.7;
}

.location__info {
  display: grid;
  gap: 1.5rem;
}

.location__info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location__info-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.location__info-title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
  color: var(--title-color);
}

.location__info-text {
  color: var(--text-color);
  font-size: var(--small-font-size);
}

.location__info-link {
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.location__info-link:hover {
  color: var(--primary-color-alt);
}

.location__map {
  display: flex;
  justify-content: center;
  align-items: center;
}

.location__map-placeholder {
  width: 100%;
  height: 300px;
  background-color: var(--body-color);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border-color);
}

.location__map-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: var(--mb-1);
}

.location__map-text {
  color: var(--text-color);
  font-size: var(--small-font-size);
}

/*=============== CONTACT ===============*/
.contact__content {
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: var(--mb-3);
}

.contact__whatsapp {
  background-color: var(--container-color);
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition-medium);
}

.contact__whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.contact__whatsapp-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1-5);
}

.contact__whatsapp-icon i {
  font-size: 3rem;
  color: white;
}

.contact__whatsapp-title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
  color: var(--title-color);
}

.contact__whatsapp-description {
  color: var(--text-color);
  margin-bottom: var(--mb-2);
}

.contact__whatsapp-button {
  background: linear-gradient(45deg, #25d366, #128c7e);
  font-size: var(--normal-font-size);
  padding: 1.2rem 2rem;
}

.contact__whatsapp-button:hover {
  background: linear-gradient(45deg, #128c7e, #25d366);
}

/*=============== FOOTER ===============*/
.footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1f1f1f 100%);
  padding: 4rem 0 1.5rem;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
  border-top: 2px solid var(--border-color);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer__container {
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: var(--mb-2-5);
}

.footer__data {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__logo img {
  height: 3rem; /* Tamanho adequado para o SVG no footer */
  width: auto;
}

.footer__description {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  line-height: 1.7;
  max-width: 300px;
}

.footer__socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.footer__social-link {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--body-color);
  transition: var(--transition-fast);
  position: relative;
}

.footer__social-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--secondary-color);
  opacity: 0;
  transform: scale(1.2);
  transition: var(--transition-fast);
}

.footer__social-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.footer__social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  color: var(--title-color);
}

.footer__links,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  color: var(--text-color);
  transition: var(--transition-fast);
  font-size: var(--normal-font-size);
  position: relative;
  padding-left: 1rem;
}

.footer__link::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition-fast);
}

.footer__link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__link:hover {
  color: var(--primary-color);
  padding-left: 1.5rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-color);
  font-size: var(--normal-font-size);
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.footer__contact-item:hover {
  background-color: rgba(212, 175, 55, 0.05);
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.footer__contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.footer__contact-item a {
  color: var(--text-color);
  transition: var(--transition-fast);
}

.footer__contact-item a:hover {
  color: var(--primary-color);
}

.footer__bottom {
  border-top: 1px solid var(--border-color);
  padding-top: var(--mb-1-5);
  text-align: center;
  position: relative;
}

.footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer__copy {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  line-height: 1.6;
}

/* Responsividade do Rodapé */
@media screen and (max-width: 992px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer__data {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }
  
  .footer__socials {
    justify-content: center;
  }
  
  .footer__description {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 3rem 0 1rem;
  }
  
  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer__data {
    align-items: center;
  }
  
  .footer__logo {
    width: 100px;
    height: auto;
  }
  
  .footer__social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .footer__contact-item {
    justify-content: center;
    padding: 1rem;
  }
  
  .footer__link:hover {
    padding-left: 1rem;
  }
}

@media screen and (max-width: 350px) {
  .footer__socials {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer__contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--primary-color);
  opacity: 0.8;
  padding: 0.5rem;
  border-radius: 0.4rem;
  z-index: var(--z-tooltip);
  transition: var(--transition-fast);
}

.scrollup:hover {
  background-color: var(--primary-color-alt);
  opacity: 1;
}

.scrollup__icon {
  font-size: 1.2rem;
  color: var(--body-color);
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--container-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 0.3rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-color-alt);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (max-width: 992px) {
  .container {
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
  }

  .hero__container,
  .about__container,
  .location__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__data {
    text-align: center;
  }

  .hero__buttons {
    justify-content: center;
  }

  .about__data {
    order: 1;
    text-align: center;
  }

  .about__image {
    order: 2;
  }

  .contact__content {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For medium devices */
@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: var(--body-color);
    padding: 2rem 1.5rem 4rem;
    box-shadow: 0 4px 10px var(--shadow-color);
    border-radius: 0 0 1rem 1rem;
    transition: var(--transition-fast);
    z-index: var(--z-fixed);
  }

  .nav__list {
    flex-direction: column;
    row-gap: 1.5rem;
  }

  .nav__link {
    font-size: var(--h3-font-size);
    text-align: center;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1.3rem;
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
  }

  .nav__toggle {
    display: block;
    font-size: 1.3rem;
    color: var(--title-color);
    cursor: pointer;
  }

  .show-menu {
    top: 0;
  }

  .section {
    padding: 4rem 0 2rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 0.5rem);
    min-height: 90vh; /* Reduz a altura mínima no mobile */
  }

  .hero__buttons {
    margin-bottom: 2rem; /* Reduz margem no mobile */
  }

  .hero__blob,
  .about__blob {
    width: 200px;
    height: 200px;
  }

  .hero__icon,
  .about__icon {
    font-size: 2.5rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Ensure mobile menu is hidden on desktop */
@media screen and (min-width: 769px) {
  .nav__menu {
    position: static;
    top: auto;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .nav__list {
    flex-direction: row !important;
    column-gap: 2rem;
    row-gap: 0;
  }

  .nav__link {
    font-size: var(--normal-font-size) !important;
    text-align: left !important;
  }

  .nav__close,
  .nav__toggle {
    display: none !important;
  }

  .show-menu {
    top: auto;
  }
}

/* For small devices */
@media screen and (max-width: 350px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .services__card {
    padding: 1.5rem;
  }

  .contact__whatsapp {
    padding: 2rem 1rem;
  }
}

/*=============== ANIMATIONS ===============*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Animation classes */
.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-out;
}



/*=============== SCROLL UP ===============*/
.location__map-embed {
  width: 100%;
  height: 450px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 20px var(--shadow-color);
}

.location__map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (max-width: 768px) {
  .location__map-embed {
    height: 300px;
  }
}



/*=============== CONTACT REDESIGNED ===============*/
.contact__content {
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: var(--mb-3);
  align-items: start;
}

/* Formulário de Contato */
.contact__form-container {
  background-color: var(--container-color);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
}

.contact__form-header {
  margin-bottom: var(--mb-2);
}

.contact__form-title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-0-5);
}

.contact__form-description {
  color: var(--text-color);
  font-size: var(--small-font-size);
  line-height: 1.6;
}

.contact__form-group {
  margin-bottom: var(--mb-1-5);
}

.contact__form-label {
  display: block;
  color: var(--title-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-0-5);
  font-size: var(--small-font-size);
}

.contact__form-input,
.contact__form-select,
.contact__form-textarea {
  width: 100%;
  padding: 1rem;
  background-color: var(--body-color);
  color: var(--text-color);
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: var(--transition-fast);
}

.contact__form-input:focus,
.contact__form-select:focus,
.contact__form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form-button {
  width: 100%;
  justify-content: center;
  padding: 1.2rem;
  font-size: var(--normal-font-size);
}

/* Contatos Diretos */
.contact__direct {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__direct-header {
  text-align: center;
}

.contact__direct-title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-0-5);
}

.contact__direct-description {
  color: var(--text-color);
  font-size: var(--small-font-size);
  line-height: 1.6;
}

.contact__direct-options {
  display: grid;
  gap: 1.5rem;
}

.contact__option {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1.5rem;
  background-color: var(--container-color);
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.contact__option:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--shadow-color);
  border-color: var(--primary-color);
}

.contact__option-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: white;
}

.contact__option-icon--whatsapp {
  background: linear-gradient(45deg, #25d366, #128c7e);
}

.contact__option-icon--email {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-color-alt));
}

.contact__option-icon--location {
  background: linear-gradient(45deg, #ff6b6b, #ee5a52);
}

.contact__option-icon--time {
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.contact__option-content {
  flex: 1;
}

.contact__option-title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-0-25);
}

.contact__option-description {
  color: var(--text-color);
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-0-5);
}

.contact__option-button {
  color: var(--primary-color);
  font-weight: var(--font-medium);
  transition: var(--transition-fast);
  text-decoration: none;
}

.contact__option-button:hover {
  color: var(--primary-color-alt);
}

.contact__option-text {
  color: var(--text-color);
  font-size: var(--small-font-size);
  line-height: 1.5;
}

.contact__quick-action {
  text-align: center;
}

.contact__quick-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
}

/* Responsividade para Contato */
@media screen and (max-width: 992px) {
  .contact__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact__form-container {
    padding: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .contact__form-container {
    padding: 1.5rem;
  }
  
  .contact__option {
    padding: 1rem;
  }
  
  .contact__option-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}



/*=============== CONTACT SOCIAL SECTION ===============*/
.contact__social-item {
  text-align: center;
  margin-top: 2rem;
}

.contact__direct-subtitle {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
}

.contact__social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--container-color);
  color: var(--text-color);
  border-radius: 50px;
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
  text-decoration: none;
  font-size: var(--small-font-size);
}

.contact__social-link:hover {
  background-color: var(--primary-color);
  color: var(--body-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact__social-link i {
  font-size: 1.2rem;
}



@media screen and (max-width: 768px) {
  .hero__blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: -1;
  }

  .hero__blob::before {
    opacity: 0;
  }

  .hero__icon {
    display: none;
  }
}


/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--primary-color);
  opacity: 0.8;
  padding: 0.5rem;
  border-radius: 0.4rem;
  z-index: var(--z-tooltip);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  text-decoration: none;
  visibility: hidden;
}

.scrollup:hover {
  background-color: var(--primary-color-alt);
  opacity: 1;
  transform: translateY(-2px);
}

.scrollup__icon {
  font-size: 1.2rem;
  color: var(--body-color);
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  .scrollup {
    right: 1rem;
    padding: 0.4rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .scrollup__icon {
    font-size: 1rem;
  }
  
  .show-scroll {
    bottom: 4rem;
  }
}


/*=============== MOBILE MENU ===============*/
@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--body-color);
    padding: 4rem 0 3rem;
    transition: top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px var(--shadow-color);
    z-index: var(--z-fixed);
    overflow-y: auto;
    /* iOS Safari fixes */
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Instagram browser fixes */
    will-change: transform;
    backface-visibility: hidden;
  }

  .nav__list {
    flex-direction: column;
    row-gap: 2rem;
    text-align: center;
    padding: 2rem 0;
  }

  .nav__link {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    display: block;
    padding: 1rem 2rem;
    /* iOS touch improvements */
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
  }

  .nav__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.8rem;
    color: var(--title-color);
    cursor: pointer;
    /* iOS touch improvements */
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    touch-action: manipulation;
    padding: 1rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1001;
    user-select: none;
    -webkit-user-select: none;
  }

  .nav__toggle {
    font-size: 1.2rem;
    color: var(--title-color);
    cursor: pointer;
    /* iOS touch improvements */
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    touch-action: manipulation;
    padding: 0.75rem;
    user-select: none;
    -webkit-user-select: none;
  }

  .nav__toggle,
  .nav__close {
    display: block;
  }

  /* Show menu - força o menu a aparecer */
  .show-menu {
    top: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__data {
    order: 2;
  }

  .hero__image {
    order: 1;
    margin-bottom: 2rem;
  }

  .hero__buttons {
    justify-content: center;
  }

  .about__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__data {
    order: 1;
  }

  .about__image {
    order: 2;
    margin-top: 2rem;
  }

  .location__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact__content {
    grid-template-columns: 1fr;
  }

  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}


/* Cross-browser compatibility for About section */
.about__features {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  width: 100%;
}

.about__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}

.about__feature-content {
  flex: 1;
  min-width: 0;
}

.about__feature-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure consistent alignment across browsers */
@supports (display: grid) {
  .about__features {
    display: grid;
  }
}

@supports not (display: grid) {
  .about__features {
    display: block;
  }
  
  .about__feature {
    margin-bottom: 1.5rem;
  }
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: 6rem; /* Alinhado com o botão do WhatsApp */
  background-color: var(--primary-color);
  opacity: 0.8;
  padding: 0.5rem;
  border-radius: 0.4rem;
  z-index: var(--z-tooltip);
  transition: var(--transition-fast);
  display: none;
}

.scrollup:hover {
  background-color: var(--primary-color-alt);
  opacity: 1;
}

.scrollup__icon {
  font-size: 1.5rem;
  color: var(--body-color);
}

/* Show scroll */
.show-scroll {
  display: block;
}

/*=============== WHATSAPP BUTTON ===============*/
.whatsapp-button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: linear-gradient(45deg, #25d366, #128c7e);
  color: white;
  padding: 1rem;
  border-radius: 50%;
  font-size: 1.5rem;
  z-index: var(--z-tooltip);
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

