/* ============================
   Global Container
   ============================ */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================
   Buttons
   ============================ */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--navy);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--navy-dark);
}
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 45, 74, 0.2);
}

/* ============================
   Navbar
   ============================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(30, 45, 74, 0.15);
}
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  font-size: 1.8rem;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.18em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links .btn-agendar {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 10px 22px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition:
    background var(--transition),
    transform var(--transition);
}
.nav-links .btn-agendar::after {
  display: none;
}
.nav-links .btn-agendar:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 16px 32px 24px;
  gap: 16px;
}
.mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-menu a:last-child {
  border-bottom: none;
}
.mobile-menu .btn-agendar {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  border-bottom: none;
}

/* ============================
   Hero
   ============================ */
.hero {
  padding: 80px 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* badge */

.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f3eee6;
  font-size: 14px;
}

/* texto */

.hero__text {
  margin-top: 16px;
}

.hero__title {
  font-size: 44px;
  line-height: 1.2;
  margin: 10px 0;
}

.hero__desc {
  font-size: 18px;
  max-width: 480px;
}

/* botões */

.hero__actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
}

/* pills */

.meta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 14px;
  border-radius: 999px;
  background: #f5f5f5;
  font-size: 14px;
}

/* foto */

.hero__photo {
  position: relative;
}

.hero__photo img {
  width: 100%;
  border-radius: 22px;
}

/* card na foto */

.hero__overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);

  padding: 14px 18px;
  border-radius: 14px;
}

.hero__overlay .small {
  font-size: 13px;
  opacity: 0.7;
}
/* ============================
   Services
   ============================ */
.services {
  background: var(--cream-light);
  padding: 72px 32px;
}
.services-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 160, 90, 0.1);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.4;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}
.service-icon svg {
  width: 100%;
  height: 100%;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  transition: gap var(--transition);
}

.service-card__link svg {
  width: 13px;
  height: 13px;
  transition: transform var(--transition);
}

.service-card:hover .service-card__link {
  gap: 10px;
}

.service-card:hover .service-card__link svg {
  transform: translateX(2px);
}

/* ============================
   About
   ============================ */
.about {
  background: var(--white);
  padding: 96px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  max-width: 1300px;
  margin: 0 auto;
}
.about-image {
  flex: 0 0 380px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.about-content {
  flex: 1;
  max-width: 520px;
}
.section-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  display: block;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
.about-tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-mid);
  font-style: normal;
  margin-bottom: 24px;
  line-height: 1.5;
}
.about-tagline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.about-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 36px;
}

/* Como funciona — grid */
.funciona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #f3eee6;
  border: 1px solid #ede6d8;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 0px;
  margin-bottom: 40px;
}

.funciona-item {
  background: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.funciona-icon {
  color: #c4a05a;
  font-size: 1rem;
  line-height: 1;
}

.funciona-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.funciona-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  max-width: 100%;
  margin: 0;
}

/* ============================
   FAQ
   ============================ */

#faq {
  padding: 72px 0;
  background: var(--cream-light);
}

#faq details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px 0;
}

#faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  padding-right: 24px;
}

/* remove seta padrão */
#faq summary::-webkit-details-marker {
  display: none;
}

/* seta custom */
#faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

#faq details[open] summary::after {
  content: "−";
}

#faq p {
  max-width: 680px;
}

/* CTA final */
.cta-final {
  background: #f7f3ed;
  padding: 88px 32px;
  text-align: center;
}

.cta-final__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8955a;
  margin-bottom: 18px;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 0.93rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 36px;
}

.btn--whats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
}

.btn--whats:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

/* ============================
   Footer
   ============================ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 64px;
}
.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-name {
  color: var(--white);
}
.footer-brand .logo-icon {
  color: var(--gold);
}
.footer-brand p {
  margin-top: 20px;
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
}
.footer-icon {
  margin-right: 6px;
  font-size: 0.8rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col p {
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 32px;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

/* ============================
   Animations
   ============================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-label {
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-sub {
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero .btn-primary {
  animation: fadeUp 0.7s 0.3s ease both;
}
