/* ===== BRAZILIAN BLUEPRINT — Global Styles ===== */

:root {
  --blush: #F2A3B3;
  --blush-light: #f8d0d9;
  --offwhite: #F9F6F7;
  --charcoal: #2A2A2A;
  --charcoal-light: #4a4a4a;
  --white: #ffffff;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 14px 40px;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: height 0.3s ease;
}

.nav.scrolled .nav-logo img {
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--blush);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--blush); }

.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 28px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--blush);
  color: var(--white);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  pointer-events: none;
}

.hero-watermark img {
  height: 70vh;
  width: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 44px;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: var(--blush);
}

/* ===== SECTION DEFAULTS ===== */
.section {
  padding: 100px 40px;
}

.section-light { background: var(--white); }
.section-warm { background: var(--offwhite); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s ease;
}

.section-warm .service-card {
  background: var(--white);
}

.section-light .service-card {
  background: var(--offwhite);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card .card-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush);
  transition: color 0.3s ease;
}

.service-card:hover .card-link { color: var(--charcoal); }

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-preview-img {
  aspect-ratio: 3/4;
  background: var(--offwhite);
  overflow: hidden;
}

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

.about-preview-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-preview-text p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.text-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.text-link:hover { color: var(--charcoal); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--charcoal);
  padding: 80px 40px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.cta-banner .btn-light {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--charcoal);
  padding: 16px 44px;
  transition: all 0.3s ease;
}

.cta-banner .btn-light:hover {
  background: var(--blush);
  color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 60px 40px 40px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin-bottom: 32px;
}

.footer-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--blush); }

.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 24px;
}

.footer-copy {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.8;
}

.footer-seo {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
}

/* ===== PAGE HERO (Interior pages) ===== */
.page-hero {
  padding: 160px 40px 80px;
  text-align: center;
  background: var(--offwhite);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== SERVICES PAGE ===== */
.service-category {
  max-width: 800px;
  margin: 0 auto 60px;
}

.service-category h2 {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 8px;
}

.service-category > p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  text-align: center;
  margin-bottom: 32px;
}

.service-list {
  border-top: 1px solid rgba(0,0,0,0.06);
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.service-item-name {
  font-size: 0.92rem;
  font-weight: 400;
}

.service-item-cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush);
  white-space: nowrap;
  transition: color 0.3s;
}

.service-item-cta:hover { color: var(--charcoal); }

/* ===== BOOK PAGE ===== */
.booking-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.booking-container p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--charcoal-light);
  margin-bottom: 32px;
}

.booking-iframe {
  width: 100%;
  min-height: 800px;
  border: none;
  border-radius: 0;
}

/* ===== ABOUT PAGE ===== */
.about-story {
  max-width: 700px;
  margin: 0 auto;
}

.about-story p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.9;
  margin-bottom: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
}

.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--offwhite);
  margin-bottom: 24px;
  overflow: hidden;
}

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

.team-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 24px 0;
}

.faq-item summary {
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--blush);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-top: 14px;
}

/* ===== CARE PAGE ===== */
.care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.care-card {
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.04);
  background: var(--white);
}

.section-warm .care-card { background: var(--white); }
.section-light .care-card { background: var(--offwhite); }

.care-number {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--blush);
  margin-bottom: 12px;
}

.care-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.care-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.75;
}

/* ===== AVOID LIST ===== */
.avoid-list {
  max-width: 750px;
  margin: 0 auto;
}

.avoid-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.avoid-item:first-child { border-top: 1px solid rgba(0,0,0,0.06); }

.avoid-icon {
  font-size: 1.4rem;
  color: var(--blush);
  font-weight: 300;
  flex-shrink: 0;
  margin-top: 2px;
}

.avoid-item h4 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.avoid-item p {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-links.open { 
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  
  .hero { padding: 140px 24px 60px; min-height: 85vh; }
  .section { padding: 64px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  
  .about-preview {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-grid { grid-template-columns: 1fr; }
  
  .footer-links { flex-wrap: wrap; gap: 20px; }
  
  .team-grid { grid-template-columns: 1fr; max-width: 400px; }
}
