/* --- PALETA DE CORES (LIGHT LUXURY) --- */
:root {
  --primary-gold: #c5a059;
  --secondary-gold: #8c6e30;

  --bg-body-img: linear-gradient(to bottom, #fdfbf7, #ebe7de);
  --bg-card: #ffffff;
  --bg-input: #f9f7f2;

  --text-main: #2c241b;
  --text-muted: #6b5d4d;

  --border-glass: 1px solid rgba(197, 160, 89, 0.3);
  --shadow-glass: 0 15px 40px rgba(140, 110, 74, 0.1);

  --btn-bg: #f9f7f2;
  --gold-gradient: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--secondary-gold) 100%
  );

  --font-body: "Montserrat", sans-serif;
  --font-title: "Cormorant Garamond", serif;
}

/* --- GERAL --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
  -webkit-tap-highlight-color: transparent;
}
a {
  text-decoration: none;
  color: inherit;
}
html {
  scroll-behavior: smooth;
}

body {
  background-image: var(--bg-body-img);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-main);
  padding: 20px 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased; /* Melhora a fonte no Mac/iOS */
  -moz-osx-font-smoothing: grayscale;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- CONTAINER PRINCIPAL --- */
.glass-card {
  width: 100%;
  max-width: 480px;
  position: relative;
  background: var(--bg-card);
  border: var(--border-glass);
  box-shadow: var(--shadow-glass);
  border-radius: 8px;
  padding: 50px 25px 90px 25px;
  text-align: center;
  overflow: hidden;
}

/* --- HEADER & LOGO --- */
.profile-logo {
  width: 200px; /* Logo aumentada */
  max-width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 25px;
  filter: drop-shadow(0 5px 15px rgba(197, 160, 89, 0.2));
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
}

h1 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 5px;
  color: var(--primary-gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--text-muted);
  opacity: 0.9;
  border-top: 1px solid var(--secondary-gold);
  display: inline-block;
  padding-top: 10px;
}
.bio-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 95%;
  margin: 0 auto 35px auto;
  line-height: 1.7;
  font-weight: 400;
}

/* --- BOTÕES INICIAIS --- */
.action-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 45px;
}
.btn-action {
  background: var(--btn-bg);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}
.btn-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--gold-gradient);
  transition: all 0.4s ease;
  z-index: 0;
}
.btn-action:hover::before {
  width: 100%;
}
.btn-action span,
.btn-action i {
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.btn-action span {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
}
.btn-action i {
  font-size: 1.1rem;
  color: var(--primary-gold);
}
.btn-action:hover span,
.btn-action:hover i {
  color: #fff;
}

/* --- SOBRE --- */
.about-section {
  background: linear-gradient(
    180deg,
    var(--btn-bg) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border: var(--border-glass);
  border-radius: 6px;
  padding: 30px 20px;
  margin-bottom: 40px;
  position: relative;
}
.about-photo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.about-name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 5px;
  font-weight: 600;
}
.about-role {
  font-size: 0.7rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  border-top: 1px solid var(--border-glass);
  padding-top: 15px;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--primary-gold);
  line-height: 1;
  font-weight: 700;
}
.stat-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* --- TÍTULOS E SERVIÇOS --- */
.section-header {
  text-align: center;
  margin: 45px 0 25px 0;
}
.section-header h2 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--primary-gold);
  font-weight: 600;
  font-style: italic;
  border-bottom: 1px solid var(--border-glass);
  display: inline-block;
  padding-bottom: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  width: 100%;
}
.service-card {
  background: var(--btn-bg);
  border: var(--border-glass);
  border-radius: 6px;
  padding: 25px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  min-height: 190px;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.15);
}
.service-icon {
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 15px;
  transition: 0.3s;
}
.service-card:hover .service-icon {
  transform: scale(1.1);
}
.service-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 8px;
  font-weight: 700;
}
.service-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 400;
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 10px;
  text-align: left;
}
.faq-question {
  padding: 18px 0;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: 0.3s;
}
.faq-question:hover {
  color: var(--primary-gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.4s ease;
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-item i {
  transition: transform 0.3s ease;
}
.faq-item.active i {
  transform: rotate(180deg);
  color: var(--primary-gold);
}

/* --- FORMULÁRIO (Otimizado para iOS) --- */
.schedule-form {
  background: var(--btn-bg);
  padding: 30px 20px;
  text-align: left;
  margin-bottom: 30px;
  border: var(--border-glass);
  border-radius: 6px;
}
.form-label {
  display: block;
  font-size: 0.65rem;
  color: var(--primary-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.form-input,
.form-select,
textarea.form-input {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: var(--text-main);
  outline: none;
  font-size: 0.95rem;
  border-radius: 4px;
  /* Hacks para forçar estilo limpo no Safari/iOS */
  -webkit-appearance: none;
  appearance: none;
  transition: 0.3s;
}
.form-select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23C5A059%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px auto;
}
.form-input:focus,
.form-select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.2);
}
textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

/* --- CTA FINAL APRIMORADA --- */
.final-cta {
  background: #ebe7de;
  padding: 35px 20px;
  border-radius: 8px;
  margin-top: 30px;
  color: #2c241b;
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3);
  position: relative;
  overflow: hidden;
}
.cta-title {
  font-family: var(--font-title);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.cta-text {
  font-size: 0.9rem;
  margin-bottom: 25px;
  font-weight: 500;
  opacity: 0.95;
  line-height: 1.5;
}

.cta-btn {
  background: #20b858;
  color: #2c241b;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efeito elástico */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.cta-btn i {
  font-size: 1.2rem;
}
.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: #ebe7de;
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  animation: float 3s ease-in-out infinite;
}
.whatsapp-text {
  background: var(--text-main);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  letter-spacing: 0.5px;
}
.whatsapp-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-main);
}
.whatsapp-btn {
  width: 55px;
  height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-size: 28px;
  color: white;
  border: 2px solid #fff;
  transition: 0.3s;
}
.whatsapp-container:hover .whatsapp-btn {
  transform: scale(1.1);
  background: #20b858;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* --- FOOTER & ÍCONES --- */
.footer {
  border-top: 1px solid var(--border-glass);
  padding-top: 35px;
  margin-top: 45px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}
.social-icons a {
  font-size: 1.2rem;
  color: var(--text-main);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.social-icons a:hover {
  color: #fff;
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-5px);
}
