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

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

  /* ========== Colors ========== */
  --first-color: #D4AF37;
  --first-color-alt: #B8941F;
  --title-color: #333333;
  --text-color: #666666;
  --text-color-light: #999999;
  --body-color: #FFFFFF;
  --container-color: #F8F8F8;
  --nude-color: #F5F2E8;
  --nude-alt: #E8DCC0;
  --white-color: #FFFFFF;
  --shadow-color: rgba(0, 0, 0, 0.1);

  /* ========== Font and typography ========== */
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /* ========== Font weight ========== */
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /* ========== Margenes Bottom ========== */
  --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;

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

/* Responsive typography */
@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

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

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

.grid {
  display: grid;
}

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

.section__title {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  color: var(--title-color);
  text-align: center;
  margin-bottom: var(--mb-2);
  position: relative;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--first-color), var(--first-color-alt));
  border-radius: 2px;
}

.section__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
  color: var(--text-color);
}

.section__header {
  margin-bottom: var(--mb-2-5);
}

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.button:active {
  transform: translateY(0);
}

/* ===== HEADER & NAV ===== */
.header {
  width: 100%;
  background-color: var(--body-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  box-shadow: 0 2px 20px var(--shadow-color);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-bold);
  color: var(--title-color);
  text-decoration: none;
}

.nav__logo-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-weight: var(--font-bold);
  font-size: 0.875rem;
}

.nav__menu {
  display: flex;
}

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

.nav__link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.nav__toggle,
.nav__close {
  display: none;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--first-color);
  border-radius: 1px;
}

.nav__toggle,
.nav__close {
  display: none;
}

/* ===== HOME ===== */
.home {
  background: linear-gradient(135deg, var(--nude-color) 0%, var(--nude-alt) 100%);
  padding-top: 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.home__container {
  gap: 2rem;
  align-items: center;
}

.home__content {
  text-align: center;
}

.home__title {
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-1);
  line-height: 1.2;
}

.home__title-accent {
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home__sparkle {
  color: var(--first-color);
  margin-left: 0.5rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(180deg); }
}

.home__description {
  margin-bottom: var(--mb-2);
  font-size: clamp(0.9rem, 3vw, 1rem);
  line-height: 1.8;
}

.home__button {
  margin-bottom: var(--mb-2-5);
}

.home__images {
  position: relative;
  display: flex;
  justify-content: center;
}

.home__img-main {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.home__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home__img:hover {
  transform: scale(1.05);
}

/* ===== GALLERY ===== */
.gallery {
  padding: 4rem 0 2rem;
}

.gallery__container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.gallery__wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow-color);
}

.gallery__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.gallery__slide.active {
  opacity: 1;
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white-color);
  padding: 2rem;
  text-align: center;
}

.gallery__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 0.5rem;
}

.gallery__description {
  font-size: var(--small-font-size);
  opacity: 0.9;
}

.gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: var(--first-color);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__btn:hover {
  background: var(--white-color);
  transform: translateY(-50%) scale(1.1);
}

.gallery__btn--prev {
  left: 1rem;
}

.gallery__btn--next {
  right: 1rem;
}

.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.gallery__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-color-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery__dot.active {
  background: var(--first-color);
  transform: scale(1.2);
}

/* ===== AGENDAMENTO ===== */
.agendamento {
  padding: 4rem 0 2rem;
}

.agendamento__container {
  gap: 3rem;
}

.agendamento__form-container {
  background: var(--white-color);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow-color);
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #E0E0E0;
  border-radius: 10px;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: border-color 0.3s ease;
  background: var(--white-color);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--first-color);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__button {
  width: 100%;
  justify-content: center;
  margin-top: var(--mb-1);
}

.form__success {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white-color);
  border-radius: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.form__success.show {
  display: flex;
}

.success__icon {
  font-size: 4rem;
  color: #4CAF50;
  margin-bottom: var(--mb-1);
}

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

.success__text {
  color: var(--text-color);
}

/* ===== PLANOS ===== */
.planos__container {
  margin-top: 2rem;
}

.planos__title {
  font-size: var(--h2-font-size);
  text-align: center;
  margin-bottom: var(--mb-0-5);
  color: var(--title-color);
}

.planos__description {
  text-align: center;
  margin-bottom: var(--mb-2);
  color: var(--text-color);
}

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

.plano__card {
  background: var(--white-color);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 20px;
  box-shadow: 0 5px 25px var(--shadow-color);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.plano__card:hover {
  transform: translateY(-5px);
}

.plano__card--featured {
  border: 2px solid var(--first-color);
  transform: scale(1.05);
}

.plano__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--first-color);
  color: var(--white-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

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

.plano__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: var(--mb-1-5);
}

.plano__currency {
  font-size: var(--normal-font-size);
  color: var(--first-color);
  font-weight: var(--font-medium);
}

.plano__amount {
  font-size: 2rem;
  font-weight: var(--font-bold);
  color: var(--first-color);
}

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

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

/* ===== CONTATO ===== */
.contato {
  background: linear-gradient(135deg, var(--nude-color) 0%, var(--nude-alt) 100%);
}

.contato__container {
  text-align: center;
}

.contato__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--mb-2-5);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

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

.contato__button--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.contato__button--instagram {
  background: linear-gradient(135deg, #E4405F, #C13584);
}

.contato__button--location {
  background: linear-gradient(135deg, #4285F4, #34A853);
}

.contato__info {
  max-width: 400px;
  margin: 0 auto;
}

.info__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white-color);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px var(--shadow-color);
}

.info__icon {
  font-size: 1.5rem;
  color: var(--first-color);
  min-width: 24px;
}

.info__title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-0-25);
  color: var(--title-color);
}

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

/* ===== FOOTER ===== */
.footer {
  background-color: var(--title-color);
  color: var(--white-color);
  padding: 2rem 0 1rem;
}

.footer__content {
  text-align: center;
  margin-bottom: var(--mb-2);
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--mb-1);
}

.footer__logo .logo-text {
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
}

.footer__logo .logo-name {
  color: var(--white-color);
}

.footer__text {
  margin-bottom: var(--mb-1-5);
  color: #CCCCCC;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white-color);
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--first-color);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--mb-1);
  text-align: center;
}

.footer__copy {
  font-size: var(--small-font-size);
  color: #CCCCCC;
}

/* ===== SCROLL UP ===== */
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background: var(--first-color);
  opacity: 0.8;
  padding: 0.3rem;
  border-radius: 0.4rem;
  z-index: var(--z-tooltip);
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}

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

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

.show-scroll {
  bottom: 5rem;
}

/* ===== RESPONSIVE ===== */
/* For small devices */
@media screen and (max-width: 350px) {
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .gallery__btn {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }

  .gallery__btn--prev {
    left: 5px;
  }

  .gallery__btn--next {
    right: 5px;
  }

  .button {
    padding: 0.8rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .home__container,
  .agendamento__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .home__content {
    text-align: left;
  }

  .contato__buttons {
    flex-direction: row;
    max-width: 600px;
  }
}

@media screen and (max-width: 767px) {
  /* Ocultar menu horizontal no mobile */
  .nav__menu {
    position: fixed !important;
    bottom: -100% !important;
    left: 0 !important;
    width: 100% !important;
    background-color: var(--body-color) !important;
    padding: 2rem 1.5rem 4rem !important;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15) !important;
    border-radius: 1.5rem 1.5rem 0 0 !important;
    transition: 0.3s !important;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .nav__link {
    color: var(--text-color);
    font-weight: var(--font-medium);
  }

  .nav__close {
    position: absolute;
    right: 1.3rem;
    bottom: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--first-color);
    display: block;
  }

  .nav__close:hover {
    color: var(--first-color-alt);
  }

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

  .show-menu {
    bottom: 0;
  }

  /* Otimizar galeria para mobile */
  .gallery__wrapper {
    height: 280px;
    border-radius: 15px;
  }

  .gallery__btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .gallery__btn--prev {
    left: 0.5rem;
  }

  .gallery__btn--next {
    right: 0.5rem;
  }

  .gallery__overlay {
    padding: 1.5rem;
  }

  .gallery__title {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .gallery__description {
    font-size: clamp(0.8rem, 3vw, 0.9rem);
  }

  /* Forçar layout vertical em mobile */
  .agendamento__container {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .home__container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .home__content {
    text-align: center !important;
    order: 2;
  }

  .home__images {
    order: 1;
    margin-bottom: var(--mb-2);
  }

  .planos__grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .plano__card--featured {
    transform: none;
    order: -1;
  }

  .contato__buttons {
    flex-direction: column;
    gap: 1rem;
  }

  /* Garantir que planos fiquem empilhados */
  .planos__container {
    width: 100%;
  }

  .planos__grid {
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
  }

  .plano__card {
    width: 100%;
    max-width: none;
  }

  /* Ajustar formulário para mobile */
  .agendamento__form-container {
    width: 100%;
    max-width: none;
    margin-bottom: 2rem;
  }
}

/* For large devices */
@media screen and (min-width: 768px) {
  .container {
    max-width: 1200px;
    padding-left: 2rem;
    padding-right: 2rem;
  }

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

  .home {
    padding-top: 2rem;
  }

  .home__container {
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
  }

  .home__content {
    text-align: left;
  }

  .gallery__container {
    max-width: 1000px;
  }

  .gallery__wrapper {
    height: 400px;
  }

  .agendamento__form-container {
    padding: 2.5rem;
  }

  .agendamento__container {
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1200px;
  }

  .planos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-direction: unset;
    max-width: 1000px;
    margin: 0 auto;
  }

  .contato__container {
    max-width: 1000px;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: 1400px;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .home__container {
    gap: 4rem;
    max-width: 1400px;
  }

  .gallery__container {
    max-width: 1200px;
  }

  .gallery__wrapper {
    height: 450px;
  }

  .agendamento__container {
    max-width: 1400px;
    gap: 4rem;
  }

  .planos__grid {
    max-width: 1200px;
  }

  .contato__container {
    max-width: 1200px;
  }

  .contato__buttons {
    flex-direction: row;
    max-width: 700px;
  }
}



/* ===== MOBILE SPECIFIC IMPROVEMENTS ===== */
@media screen and (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding: 3rem 0 1.5rem;
  }

  .gallery__btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .agendamento__form-container {
    padding: 1.5rem;
    border-radius: 15px;
  }

  .form__input,
  .form__select,
  .form__textarea {
    padding: 0.8rem;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    border-radius: 8px;
  }

  .form__button {
    padding: 1rem;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }

  .plano__card {
    padding: 1.5rem;
    border-radius: 15px;
  }

  .plano__name {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }

  .plano__amount {
    font-size: clamp(1.3rem, 4vw, 1.5rem);
  }

  .contato__button {
    padding: 1rem 1.5rem;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }

  .info__item {
    padding: 1rem;
    border-radius: 12px;
  }

  .footer {
    padding: 1.5rem 0 1rem;
  }

  /* Melhorar espaçamento entre seções */
  .home {
    padding-top: 1rem;
    min-height: auto;
  }

  .gallery {
    padding: 1.5rem 0;
  }

  /* Ajustar navegação mobile */
  .nav__toggle {
    font-size: 1.2rem;
  }

  .nav__menu {
    padding: 1.5rem 1rem 3rem;
  }

  .nav__list {
    gap: 1.5rem;
  }

  .nav__link {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }

  /* Melhorar botões de toque */
  .button {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gallery__btn,
  .nav__toggle,
  .nav__close {
    min-width: 44px;
    min-height: 44px;
  }

  /* Ajustar scroll up button */
  .scrollup {
    right: 1rem;
    bottom: 1rem;
    width: 50px;
    height: 50px;
  }

  .show-scroll {
    bottom: 1rem;
  }
}

/* ===== TOUCH IMPROVEMENTS ===== */
@media (hover: none) and (pointer: coarse) {
  .button:hover,
  .gallery__btn:hover,
  .plano__card:hover {
    transform: none;
  }

  .button:active {
    transform: scale(0.98);
  }

  .gallery__btn:active {
    transform: translateY(-50%) scale(0.95);
  }

  .nav__link:hover {
    color: var(--first-color);
  }
}

/* ===== LANDSCAPE MOBILE ===== */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .home {
    min-height: auto;
    padding-top: 1rem;
  }

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

  .home__content {
    text-align: left;
    order: 1;
  }

  .home__images {
    order: 2;
    margin-bottom: 0;
  }

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


/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: var(--white-color);
}

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

/* Ajustar posição em mobile */
@media screen and (max-width: 767px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
    font-size: 1.6rem;
  }
}

/* Garantir que o botão não sobreponha outros elementos */
@media screen and (max-width: 480px) {
  .whatsapp-float {
    bottom: 80px; /* Evitar sobreposição com navegação mobile */
  }
}


/* ===== BOTÃO CHAMAR AGORA ===== */
.contato__button--phone {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border: 2px solid transparent;
}

.contato__button--phone:hover {
  background: linear-gradient(135deg, #45a049, #3d8b40);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.contato__button--phone i {
  margin-right: 0.5rem;
  animation: phone-ring 2s infinite;
}

@keyframes phone-ring {
  0%, 100% {
    transform: rotate(0deg);
  }
  10%, 30% {
    transform: rotate(-10deg);
  }
  20% {
    transform: rotate(10deg);
  }
}

/* Ajustar grid de botões para 4 elementos */
@media screen and (min-width: 768px) {
  .contato__buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1024px) {
  .contato__buttons {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
  }
}


/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 4rem 0 2rem;
  background: var(--nude-color);
}

.depoimentos__container {
  max-width: 1200px;
  margin: 0 auto;
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.depoimento__card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px var(--shadow-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.depoimento__card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--first-color);
  font-family: serif;
  opacity: 0.3;
}

.depoimento__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-color);
}

.depoimento__content {
  position: relative;
  z-index: 2;
}

.depoimento__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.depoimento__stars i {
  color: #FFD700;
  font-size: 1rem;
}

.depoimento__text {
  font-size: var(--normal-font-size);
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.depoimento__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.depoimento__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--first-color);
}

.depoimento__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.depoimento__name {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 0.25rem;
}

.depoimento__service {
  font-size: var(--small-font-size);
  color: var(--first-color);
  font-weight: var(--font-medium);
}

/* Responsividade para depoimentos */
@media screen and (max-width: 767px) {
  .depoimentos__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .depoimento__card {
    padding: 1.5rem;
  }
  
  .depoimento__text {
    font-size: var(--small-font-size);
  }
}


/* ===== FAQs ===== */
.faqs {
  padding: 4rem 0 2rem;
}

.faqs__container {
  max-width: 800px;
  margin: 0 auto;
}

.faqs__content {
  margin-top: 3rem;
}

.faq__item {
  background: var(--white-color);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__item:hover {
  box-shadow: 0 6px 25px var(--shadow-color);
}

.faq__header {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white-color);
  transition: all 0.3s ease;
}

.faq__header:hover {
  background: var(--nude-color);
}

.faq__question {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq__icon {
  color: var(--first-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--nude-color);
}

.faq__content.active {
  max-height: 200px;
  padding: 1.5rem 2rem;
}

.faq__answer {
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

.faq__answer strong {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__item.active .faq__header {
  background: var(--nude-color);
}

/* Responsividade para FAQs */
@media screen and (max-width: 767px) {
  .faq__header {
    padding: 1rem 1.5rem;
  }
  
  .faq__question {
    font-size: var(--normal-font-size);
  }
  
  .faq__content.active {
    padding: 1rem 1.5rem;
  }
}

