/* ============================================
   ANNA PAULINA CARDOSO — Delicate Contemporary
   ============================================ */

:root {
  --black: #0a0a0a;
  --dark-gray: #333333;
  --gray: #555555;
  --mid-gray: #666666;
  --muted: #888888;
  --light-gray: #aaaaaa;
  --hairline: #eeeeee;
  --border: #e0e0e0;
  --surface: #fafafa;
  --surface-2: #f5f5f5;
  --white: #ffffff;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.3s ease;

  --container-max: 1440px;
  --container-pad: 128px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
  overflow-x: clip;
}
body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; font: inherit; cursor: pointer; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ════ TYPOGRAPHY HELPERS ════ */
.eyebrow {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.2px;
  margin-bottom: 0;
}
.eyebrow-italic { font-style: italic; }

.section-title {
  font-size: 64px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -2.5px;
  line-height: 1.05;
}
.section-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--mid-gray);
  line-height: 1.7;
  text-align: center;
}

.hairline-divider {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--black);
  margin: 8px 0;
}

/* ════ PILL BUTTON ════ */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 32px;
  background: var(--black);
  color: var(--white);
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.1px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-pill:hover { background: #1a1a1a; transform: translateY(-1px); }
.btn-pill-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--white);
  color: var(--black);
  border-radius: 9999px;
  font-size: 18px;
  font-weight: 500;
  transition: transform 0.4s var(--ease);
}
.btn-pill:hover .btn-pill-circle { transform: translateX(4px); }

.btn-pill-sm {
  gap: 12px;
  padding: 6px 6px 6px 20px;
  font-size: 14px;
}
.btn-pill-sm .btn-pill-circle {
  width: 32px;
  height: 32px;
  font-size: 14px;
}

/* ════ STICKER ════ */
.sticker {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  border-radius: 9999px;
  z-index: 3;
  pointer-events: none;
}
.sticker-dark {
  background: var(--black);
  color: var(--white);
}
.sticker-light {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
}

/* ════ NAVBAR ════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 1px 0 var(--hairline); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: padding 0.4s var(--ease);
}
.navbar.scrolled .navbar-inner { padding-top: 12px; padding-bottom: 12px; }
.navbar-logo { display: flex; align-items: center; line-height: 0; }
.navbar-logo img {
  display: block;
  height: 130px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s var(--ease), opacity 0.2s ease;
}
.navbar.scrolled .navbar-logo img { height: 72px; }
.navbar-logo:hover img { opacity: 0.75; }

.navbar-links { display: flex; gap: 48px; align-items: center; }
.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--mid-gray);
  position: relative;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--black); }
.nav-link:hover::after { transform: scaleX(1); }

.navbar-actions { display: flex; align-items: center; gap: 16px; }
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin: -8px;
  color: var(--black);
  line-height: 0;
}
.menu-toggle svg { width: 24px; height: 24px; display: block; }

/* ════ HERO ════ */
.hero {
  padding-top: 140px;
  padding-bottom: 64px;
  background: var(--white);
}
.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  padding: 80px 0 40px;
}
.hero-headline {
  font-size: 84px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -3px;
  line-height: 1.05;
}

/* Hero text reveal (kept from original) */
.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}
.hero-line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
}
.hero-line-inner.revealed { transform: translateY(0); }
.hero-line:nth-child(2) .hero-line-inner { transition-delay: 0.12s; }

.hero-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.hero-fade.revealed { opacity: 1; transform: translateY(0); }
.hero-fade:nth-child(2) { transition-delay: 0.4s; }
.hero-fade:nth-child(3) { transition-delay: 0.5s; }

.hero-photo-section {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  padding: 24px 0 40px;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 240px;
  padding-top: 32px;
}
.hero-meta-left { align-items: flex-end; text-align: right; justify-self: end; }
.hero-meta-right { align-items: flex-start; text-align: left; justify-self: start; }
.hero-meta-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--mid-gray);
  line-height: 1.6;
}
.hero-meta-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.2px;
}

.hero-photo-wrap {
  position: relative;
  width: 480px;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 480 / 680;
  border-radius: 32px;
  overflow: hidden;
  background: var(--surface-2);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s var(--ease);
}
.hero-photo-wrap:hover .hero-photo img { transform: scale(1.03); }

.sticker-hero {
  width: 64px;
  height: 64px;
  font-size: 24px;
  bottom: 16px;
  right: 16px;
}

/* ════ SECTIONS BASE ════ */
.section { padding: 140px 0; }
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 80px;
}

/* ════ ÁREAS DE ATUAÇÃO ════ */
.section-areas { background: var(--surface); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: var(--transition);
}
.area-card:hover {
  border-color: var(--black);
  transform: translateY(-4px);
}
.area-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.area-num {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.area-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  transition: transform 0.4s var(--ease);
}
.area-card:hover .area-arrow { transform: translateX(4px); background: var(--black); color: var(--white); }
.area-card-body { display: flex; flex-direction: column; gap: 14px; }
.area-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.area-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--mid-gray);
  line-height: 1.65;
}

.area-card-dark {
  background: var(--black);
  border-color: var(--black);
}
.area-card-dark .area-title { color: var(--white); }
.area-card-dark .area-desc { color: #aaaaaa; }
.area-card-dark .area-arrow { background: var(--white); color: var(--black); }
.area-card-dark:hover { transform: translateY(-4px); }
.area-card-dark:hover .area-arrow { background: var(--white); color: var(--black); }

.area-card-text {
  background: transparent;
  border: none;
  padding: 40px;
  align-items: flex-start;
  gap: 14px;
}
.area-card-text:hover { transform: none; border: none; }
.area-text-eye {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}
.area-text-lead {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark-gray);
  line-height: 1.5;
}

/* ════ SOBRE ════ */
.section-about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 96px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  width: 520px;
}
.about-image {
  width: 100%;
  aspect-ratio: 520 / 680;
  border-radius: 32px;
  overflow: hidden;
  background: var(--surface-2);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s var(--ease);
}
.about-image-wrap:hover .about-image img { transform: scale(1.03); }

.sticker-about {
  width: 120px;
  height: 120px;
  font-size: 13px;
  bottom: 24px;
  left: -40px;
  transform: rotate(-8deg);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-content .section-title { margin-top: 0; }
.about-lead {
  font-size: 17px;
  font-weight: 400;
  color: var(--mid-gray);
  line-height: 1.7;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 400;
  color: var(--dark-gray);
  line-height: 1.55;
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--black);
}

/* ════ CTA ════ */
.section-cta { background: var(--white); }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 96px;
  align-items: center;
}
.cta-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.cta-title {
  font-size: 72px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -3px;
  line-height: 1;
}
.cta-lead {
  font-size: 17px;
  font-weight: 400;
  color: var(--mid-gray);
  line-height: 1.7;
}
.cta-image-wrap {
  position: relative;
  width: 480px;
}
.cta-image {
  width: 100%;
  aspect-ratio: 480 / 600;
  border-radius: 32px;
  overflow: hidden;
  background: var(--surface-2);
}
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s var(--ease);
}
.cta-image-wrap:hover .cta-image img { transform: scale(1.03); }

.sticker-cta {
  width: 130px;
  height: 130px;
  top: -30px;
  right: -30px;
  transform: rotate(12deg);
}

/* ════ CONTATO ════ */
.section-contact { background: var(--surface); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-method {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  transition: var(--transition);
}
.contact-method:hover {
  border-color: var(--black);
  transform: translateX(4px);
}
.contact-method-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-method-label {
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
}
.contact-method-value {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.3px;
}
.contact-method-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.contact-method:hover .contact-method-arrow { transform: translateX(4px); }

.contact-method-dark {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: var(--black);
  border-color: var(--black);
}
.contact-method-dark:hover { transform: none; }
.contact-method-dark .contact-method-label { color: var(--muted); }
.contact-method-dark .contact-method-value {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.6;
}

.contact-map {
  border-radius: 24px;
  overflow: hidden;
  background: var(--border);
  min-height: 100%;
  min-height: 560px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 560px; }

/* ════ FOOTER ════ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 100px 0 48px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: invert(1) brightness(1.6);
}
.footer-tag {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
}
.footer-cols {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col-label {
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 0;
}
.footer-col a, .footer-col span {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  transition: opacity 0.2s ease;
}
.footer-col a:hover { opacity: 0.6; }
.footer-divider {
  height: 1px;
  background: #222222;
  margin-bottom: 32px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  font-weight: 400;
  color: var(--mid-gray);
}
.footer-loc { font-style: italic; }

/* ════ REVEAL ════ */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.96); }
.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: none;
}
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.40s; }

/* ════ RESPONSIVE ════ */
@media (max-width: 1280px) {
  :root { --container-pad: 64px; }
  .section { padding: 120px 0; }
  .hero-headline { font-size: 72px; letter-spacing: -2.5px; }
  .cta-title { font-size: 64px; }
  .section-title { font-size: 56px; }
}

@media (max-width: 991px) {
  :root { --container-pad: 40px; }
  .section { padding: 100px 0; }

  .navbar-inner { padding-top: 16px; padding-bottom: 16px; }
  .navbar-logo img { height: 84px; }
  .navbar.scrolled .navbar-inner { padding-top: 10px; padding-bottom: 10px; }
  .navbar.scrolled .navbar-logo img { height: 56px; }

  /* Mobile menu — kicks in at tablet too */
  .navbar-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 24px 0;
    border-bottom: 1px solid var(--hairline);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .navbar-links.open { transform: translateY(0); }
  .nav-link { padding: 16px 24px; font-size: 16px; }
  .menu-toggle { display: flex; }
  .navbar-actions .btn-pill { display: none; }

  .hero { padding-top: 96px; }
  .hero-headline { font-size: 56px; letter-spacing: -1.8px; }
  .hero-photo-section {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 32px;
  }
  .hero-meta { max-width: 480px; padding-top: 0; align-items: center; text-align: center; justify-self: center; }
  .hero-meta-left, .hero-meta-right { align-items: center; text-align: center; }
  .hero-photo-wrap { width: 100%; max-width: 420px; }

  .section-title { font-size: 44px; letter-spacing: -1.5px; }
  .cta-title { font-size: 52px; letter-spacing: -2px; }

  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .area-card-text { display: none; }

  .about-inner { grid-template-columns: 1fr; gap: 64px; }
  .about-image-wrap { width: 100%; max-width: 480px; margin: 0 auto; }

  .cta-inner { grid-template-columns: 1fr; gap: 64px; }
  .cta-image-wrap { width: 100%; max-width: 480px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 400px; }

  .footer-top { flex-direction: column; gap: 48px; }
  .footer-cols { gap: 48px; flex-wrap: wrap; }
}

@media (max-width: 767px) {
  :root { --container-pad: 24px; }
  .section { padding: 80px 0; }

  .navbar-inner { padding-top: 14px; padding-bottom: 14px; }
  .navbar-logo img { height: 68px; }
  .navbar.scrolled .navbar-inner { padding-top: 8px; padding-bottom: 8px; }
  .navbar.scrolled .navbar-logo img { height: 50px; }

  .hero { padding-top: 80px; padding-bottom: 32px; }
  .hero-main { padding: 48px 0 24px; gap: 32px; }
  .hero-headline { font-size: 40px; letter-spacing: -1.2px; }

  .section-header { margin-bottom: 56px; }
  .section-title { font-size: 36px; letter-spacing: -1.2px; }
  .section-sub { font-size: 14px; }
  .section-sub br { display: none; }

  .areas-grid { grid-template-columns: 1fr; }
  .area-card { padding: 32px; }
  .area-title { font-size: 22px; }

  .about-content { gap: 24px; }
  .about-list li { font-size: 14px; }

  .cta-title { font-size: 40px; letter-spacing: -1.5px; }
  .cta-lead { font-size: 15px; }

  .contact-method { padding: 24px; flex-wrap: wrap; }
  .contact-method-value { font-size: 16px; }

  .footer { padding: 64px 0 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 479px) {
  .hero-headline { font-size: 32px; }
  .section-title { font-size: 30px; }
  .cta-title { font-size: 32px; }
  .btn-pill { padding: 8px 8px 8px 24px; font-size: 14px; }
  .btn-pill-circle { width: 40px; height: 40px; font-size: 16px; }
}
