/* ============================================
   VANESSA PERES - LANDING PAGE
   Palette: Salmon + Warm Naturals
   ============================================ */

:root {
  --salmon: #E8967D;
  --salmon-dark: #D4735A;
  --salmon-light: #FDF0EC;
  --salmon-accent: #F2A58E;
  --cream: #FDF8F3;
  --cream-dark: #F5EDE4;
  --green-subtle: #A8C5B0;
  --green-dark: #5A8A6A;
  --text-dark: #3D2E2A;
  --text-body: #5C4A44;
  --text-light: #8A7670;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.3;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--salmon-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--salmon-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--salmon-dark);
  border: 2px solid var(--salmon);
}

.btn-outline:hover {
  background: var(--salmon-light);
}

.btn-nav {
  padding: 10px 22px;
  background: var(--salmon);
  color: var(--white) !important;
  border-radius: 50px;
}

.btn-nav:hover {
  background: var(--salmon-dark);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 1.1rem;
  padding: 18px 36px;
}

.btn-whatsapp:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}

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

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--salmon-light) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--salmon-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-body);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  background: var(--salmon-light);
  color: var(--salmon-dark);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 70% top;
}

/* ============================================
   SECTION TAGS & TITLES
   ============================================ */

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--salmon-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-tag.center {
  display: block;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 48px;
}

/* ============================================
   SOBRE
   ============================================ */

.sobre {
  padding: 100px 0;
  background: var(--white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sobre-img-main {
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 400px;
  width: 100%;
  box-shadow: var(--shadow-md);
}

.sobre-img-secondary {
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 400px;
  width: 100%;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

.sobre-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.sobre-content h2 em {
  color: var(--salmon);
  font-style: italic;
}

.sobre-content p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.sobre-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--salmon-dark);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   FASES (substitui Especialidades)
   ============================================ */

.fases {
  padding: 100px 0;
  background: var(--cream);
}

.fases-intro {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
}

.fases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fase-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.fase-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.fase-card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.fase-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.fase-card:hover .fase-card-img img {
  transform: scale(1.05);
}

.fase-numero {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: var(--salmon);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.fase-card-content {
  padding: 28px;
}

.fase-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--salmon-dark);
}

.fase-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.fase-card-content > p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.fase-list {
  list-style: none;
  margin-bottom: 24px;
}

.fase-list li {
  padding: 5px 0;
  padding-left: 22px;
  position: relative;
  font-size: 0.9rem;
}

.fase-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  background: var(--salmon-accent);
  border-radius: 50%;
}

/* ============================================
   COMO FUNCIONA
   ============================================ */

.como-funciona {
  padding: 100px 0;
  background: var(--white);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--salmon-light);
  color: var(--salmon-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.92rem;
  color: var(--text-light);
}

.step-arrow {
  width: 40px;
  height: 2px;
  background: var(--cream-dark);
  margin-top: 56px;
  flex-shrink: 0;
}

.online-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  padding: 16px 32px;
  background: var(--salmon-light);
  border-radius: 50px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.online-badge span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--salmon-dark);
}

/* ============================================
   CREDIBILIDADE
   ============================================ */

.credibilidade {
  padding: 100px 0;
  background: var(--salmon-light);
}

.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cred-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cred-content > p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.cred-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-dark);
}

.cred-item svg {
  color: var(--salmon);
  flex-shrink: 0;
}

.cred-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */

.depoimentos {
  padding: 100px 0;
  background: var(--white);
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dep-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.dep-card:hover {
  box-shadow: var(--shadow-md);
}

.dep-stars {
  color: #E8967D;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.dep-card p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

.dep-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--salmon-dark);
}

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

.faq {
  padding: 100px 0;
  background: var(--cream);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  -webkit-appearance: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--salmon-dark);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--salmon);
  transition: var(--transition);
}

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

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   INSTAGRAM
   ============================================ */

.instagram {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--salmon-light) 0%, var(--cream) 100%);
  text-align: center;
}

.instagram-inner {
  max-width: 600px;
  margin: 0 auto;
}

.instagram-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
}

.instagram h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.instagram > .instagram-inner > p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 1rem;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(220,39,67,0.3);
}

.instagram-handle {
  display: block;
  margin-top: 16px;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--salmon-dark) 0%, var(--salmon) 100%);
  text-align: center;
}

.cta-container h2 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-container p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.cta-social {
  margin-top: 24px;
}

.cta-social a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.cta-social a:hover {
  color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 32px 0;
  background: var(--text-dark);
  text-align: center;
}

.footer-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.footer-small {
  margin-top: 4px;
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.4) !important;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
  .hero-grid,
  .sobre-grid,
  .cred-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fases-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-image img {
    height: 400px;
    max-width: 400px;
    margin: 0 auto;
  }

  .sobre-images {
    max-width: 500px;
    margin: 0 auto;
  }

  .sobre-img-secondary {
    margin-top: 0;
  }

  .cred-image {
    order: -1;
  }

  .dep-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

  .step-arrow {
    width: 2px;
    height: 24px;
    margin: 0;
  }

  .cta-container h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-image img {
    height: 320px;
  }

  .sobre-images {
    grid-template-columns: 1fr;
  }

  .sobre-img-main,
  .sobre-img-secondary {
    height: 280px;
  }

  .sobre-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }

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

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

  .btn-card {
    width: 100%;
  }
}

/* ============================================
   PROGRESSIVE ENHANCEMENT - SCROLL REVEAL
   Content visible by default; animations only
   when JS is enabled (class added by script.js)
   ============================================ */

.js-enabled .reveal-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-enabled .reveal-target.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .js-enabled .reveal-target {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Footer address styling */
.footer-contact {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 8px;
}

.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--salmon);
}
