/* =============================================
   LUCAS MACHADO | PSICÓLOGO
   Design: Refined Dark Luxury
   ============================================= */

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

:root {
  --blue-deep:    #0d1b2a;
  --blue-mid:     #162032;
  --blue-card:    #1a2840;
  --blue-border:  #243350;
  --blue-accent:  #2a3f5f;
  --gold:         #c9a96e;
  --gold-light:   #dfc190;
  --white:        #f5f0e8;
  --white-muted:  #b8c0cc;
  --white-dim:    #7a8898;

  --font-display: 'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.98) 0%, rgba(13,27,42,0) 100%);
  transition: background 0.3s ease;
}

.nav.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blue-border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color 0.2s;
}

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

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid rgba(201,169,110,0.4);
  padding: 8px 20px !important;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--blue-deep) !important;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(22,32,50,0.9) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(42,63,95,0.3) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 200;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}

.hero-title em {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-light);
}

.hero-quote {
  font-size: 1.05rem;
  color: var(--white-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease forwards;
}

.hero-photo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  opacity: 0;
  animation: fadeIn 1.2s 0.5s ease forwards;
}

.photo-frame {
  position: relative;
  width: 400px;
  max-width: 100%;
}

.photo-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: 16px;
  left: 16px;
  border: 1px solid rgba(201,169,110,0.25);
  z-index: 0;
  border-radius: 2px;
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: saturate(0.85) contrast(1.05);
}

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blue-border), transparent);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--blue-deep);
  text-decoration: none;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s ease forwards;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-primary.btn-large {
  padding: 16px 36px;
  font-size: 0.9rem;
  opacity: 1;
  animation: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  margin-top: 32px;
  align-self: flex-start;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--blue-deep);
}

/* =============================================
   ONLINE SECTION
   ============================================= */
.online-section {
  padding: 64px 0;
  background: var(--blue-mid);
  border-bottom: 1px solid var(--blue-border);
}

.online-inner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  max-width: 680px;
  margin: 0 auto;
}

.online-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 4px;
}

.online-text h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 10px;
}

.online-text p {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.75;
}

/* =============================================
   SERVIÇOS
   ============================================= */
.servicos {
  padding: 100px 0;
}

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
}

.servico-divider {
  background: var(--blue-border);
  margin: 0 60px;
}

.servico-card {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.servico-card:first-child {
  padding-right: 60px;
  padding-left: 0;
}

.servico-card:last-child {
  padding-left: 60px;
  padding-right: 0;
}

.servico-header {
  margin-bottom: 36px;
}

.servico-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.servico-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}

.servico-header h2 em {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-light);
}

.servico-body p {
  font-size: 0.92rem;
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.indicacoes {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--blue-border);
  border-left: 3px solid var(--gold);
  background: rgba(42,63,95,0.15);
  border-radius: 2px;
}

.indicacoes-title {
  font-size: 0.82rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 16px !important;
}

.indicacoes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.indicacoes ul li {
  font-size: 0.9rem;
  color: var(--white-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.indicacoes ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.servico-footer-text {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.9rem !important;
  font-weight: 300;
  color: var(--white-dim) !important;
  margin-top: 24px !important;
}

/* =============================================
   CONTATO CTA
   ============================================= */
.contato {
  padding: 100px 0;
  background: var(--blue-mid);
  border-top: 1px solid var(--blue-border);
}

.contato-inner {
  text-align: center;
}

.contato-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.contato-inner h2 em {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-light);
}

.contato-inner p {
  font-size: 1rem;
  color: var(--white-muted);
  margin-bottom: 40px;
}

.contato-inner .btn-primary {
  margin: 0 auto;
  animation: none;
  opacity: 1;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--blue-border);
  padding: 48px 0 28px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-info {
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.8;
}

.footer-name {
  color: var(--white-muted);
  font-weight: 400;
  font-size: 0.88rem !important;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border: 1px solid var(--blue-border);
  padding: 10px 20px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.instagram-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--blue-border);
  padding-top: 24px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--white-dim);
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: left;
    padding-top: 120px;
  }

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

  .photo-frame {
    width: 300px;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .servico-divider {
    display: none;
  }

  .servico-card:first-child,
  .servico-card:last-child {
    padding: 0;
  }

  .servico-card:first-child {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--blue-border);
    margin-bottom: 60px;
  }

  .online-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 24px;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
