/* Andressa Faria — HTML estático */

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

:root {
  --white: #ffffff;
  --off-white: #f5f7f8;
  --black: #0d1b21;
  --gray: #5c6b73;
  --primary: #1a4452;
  --primary-dark: #0f2e38;
  --primary-light: #2a6270;
  --accent: #c4a96d;
  --accent-light: #dcc99a;
  --green: #1b8a4a;
  --green-light: #22a85a;
  --green-dark: #157a3f;
  --header-height: 80px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(15, 46, 56, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
  position: relative;
  padding-bottom: 4px;
}

.logo-mark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

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

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-green:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--white);
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Hero */
.hero {
  background: var(--primary-dark);
  color: var(--off-white);
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: calc(100vh - var(--header-height));
  padding-block: clamp(2.5rem, 5vh, 4rem);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
}

.hero h1 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--off-white);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: rgba(242, 242, 242, 0.85);
  line-height: 1.7;
}

.hero-cta-desktop {
  display: inline-flex;
  margin-top: 2.5rem;
  width: fit-content;
}

.hero-media {
  position: relative;
  height: min(calc(100vh - var(--header-height) - 5rem), 680px);
  min-height: 460px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-cta {
  display: none;
}

/* Intro */
.intro {
  padding: 5rem 0;
  text-align: center;
  background: var(--off-white);
}

.intro h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.4;
}

.intro-photo {
  margin-top: 3rem;
  max-height: 600px;
  overflow: hidden;
}

.intro-photo img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: 46% 39%;
}

/* Services */
.services {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.services-panel {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.services-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.services-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.services-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--primary-dark);
}

.services-divider {
  width: 48px;
  height: 1px;
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.8;
}

.services-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.services-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.service-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.services.is-visible .service-item {
  opacity: 1;
  transform: translateY(0);
}

.service-item--horizontal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: center;
  padding: 1.5rem;
  background: var(--off-white);
  border: 1px solid rgba(26, 68, 82, 0.08);
  border-radius: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.service-item--horizontal:hover {
  border-color: rgba(196, 169, 109, 0.45);
  box-shadow: 0 8px 32px rgba(15, 46, 56, 0.08);
}

.service-item--featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 440px;
  margin-inline: auto;
  padding: 2rem 1.5rem;
  background: var(--off-white);
  border: 1px solid rgba(26, 68, 82, 0.08);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(15, 46, 56, 0.06);
}

.service-photo-wrap {
  flex-shrink: 0;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  box-shadow: 0 6px 24px rgba(15, 46, 56, 0.12);
}

.service-photo-wrap--lg {
  margin-bottom: 1.5rem;
}

.service-photo-wrap--lg .service-photo {
  width: clamp(210px, 24vw, 280px);
  height: clamp(210px, 24vw, 280px);
}

.service-photo {
  width: clamp(130px, 15vw, 180px);
  height: clamp(130px, 15vw, 180px);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  background: var(--off-white);
}

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

.service-item:hover .service-photo img {
  transform: scale(1.06);
}

.service-copy h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  color: var(--primary-dark);
  text-transform: lowercase;
}

.service-copy h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin-top: 0.65rem;
  background: var(--accent);
  opacity: 0.85;
}

.service-item--featured .service-copy h3::after {
  margin-inline: auto;
}

.service-copy p {
  font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray);
}

.services-stagger {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 920px;
  margin-inline: auto;
}

.service-item--stagger-right,
.service-item--stagger-left {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: center;
  max-width: 740px;
  width: 100%;
  padding: 1.5rem;
  background: var(--off-white);
  border: 1px solid rgba(26, 68, 82, 0.08);
  border-radius: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.service-item--stagger-right:hover,
.service-item--stagger-left:hover {
  border-color: rgba(196, 169, 109, 0.45);
  box-shadow: 0 8px 32px rgba(15, 46, 56, 0.08);
}

.service-item--stagger-right {
  margin-left: auto;
}

.service-item--stagger-left {
  margin-right: auto;
}

/* Stats */
.stats {
  padding: 6rem 0;
  background: linear-gradient(160deg, #0d1b21 0%, #0f2e38 50%, #1a4452 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(42, 98, 112, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(196, 169, 109, 0.08) 0%, transparent 45%);
  pointer-events: none;
}

.stats .container {
  position: relative;
  z-index: 1;
}

.stats-eyebrow {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.stats-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  margin-bottom: 3.5rem;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem 1.25rem;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease;
}

.stat-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover {
  border-color: rgba(196, 169, 109, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.stat-chart {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
}

.stat-chart svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stat-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 8;
}

.stat-ring-fill {
  fill: none;
  stroke: url(#statGradient);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  max-width: 180px;
  margin-inline: auto;
}

.stats-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* Story */
.story .story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story {
  padding: 5rem 0;
}

.story h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 2rem;
}

.story-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 500px;
}

/* Quote */
.quote {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f2e38 0%, #1a4452 50%, #234e5c 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(42, 98, 112, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(196, 169, 109, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.quote-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.quote.is-visible .quote-inner {
  opacity: 1;
  transform: translateY(0);
}

.quote-mark {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 10vw, 6rem);
  line-height: 0.6;
  color: rgba(196, 169, 109, 0.4);
  margin-bottom: 1rem;
}

.quote-text {
  margin: 0;
}

.quote-text p {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.quote-text em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-size: 1.1em;
}

.quote-divider {
  width: 48px;
  height: 2px;
  margin: 2rem auto;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.8;
}

.quote-author {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-info p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-info a {
  color: var(--accent);
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-locations {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-locations li {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.footer-locations strong {
  color: var(--white);
  font-weight: 400;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition);
}

.social-links a:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

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

.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.cro {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .main-nav,
  .header-cta-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 0 0;
    gap: 0;
  }

  .hero-content {
    max-width: none;
    padding: 3rem 0 1.5rem;
    text-align: center;
    align-items: center;
  }

  .hero-subtitle {
    max-width: 480px;
  }

  .hero-cta-desktop {
    display: none;
  }

  .hero-media {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
    border-radius: 0;
    background: none;
  }

  .hero-photo {
    min-height: 420px;
    height: auto;
    flex: none;
    object-position: center center;
  }

  .hero-cta {
    display: block;
    flex-shrink: 0;
    padding: 1.75rem 1.5rem 2.5rem;
    text-align: center;
    background: var(--primary-dark);
  }

  .hero-cta .btn-green {
    min-width: 220px;
  }

  .services-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-item--horizontal,
  .service-item--stagger-right,
  .service-item--stagger-left {
    grid-template-columns: 1fr;
    text-align: center;
    margin-inline: auto;
    padding: 1.75rem 1.25rem;
  }

  .service-item--horizontal .service-photo-wrap,
  .service-item--stagger-right .service-photo-wrap,
  .service-item--stagger-left .service-photo-wrap {
    margin-inline: auto;
  }

  .service-item--featured {
    max-width: none;
  }

  .service-copy h3::after {
    margin-inline: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story .story-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #20bd5a;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float:active {
  transform: scale(0.96);
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
