/* Tatiana Wasques Psicologia — LTMIA digital presence */

:root {
  --teal: #3d9b8f;
  --teal-dark: #2d7a70;
  --teal-light: #e8f5f3;
  --teal-soft: #d4ebe7;
  --charcoal: #2f3d3a;
  --charcoal-light: #3d504c;
  --dark: #1a2220;
  --white: #ffffff;
  --gray-50: #f7faf9;
  --gray-100: #eef2f1;
  --gray-200: #d8e0de;
  --gray-400: #8a9a96;
  --gray-600: #5a6b67;
  --gray-800: #2f3d3a;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --shadow-sm: 0 2px 8px rgba(47, 61, 58, 0.08);
  --shadow-md: 0 8px 28px rgba(47, 61, 58, 0.1);
  --shadow-lg: 0 16px 48px rgba(47, 61, 58, 0.14);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.3s ease;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --header-h: 76px;
  --focus: 0 0 0 3px rgba(61, 155, 143, 0.35);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--teal-dark); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

ul, ol { list-style: none; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 2000;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.section { padding: 5rem 0; }

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.section-label--center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-title--center { text-align: center; }

.section-desc {
  text-align: center;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

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

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

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(47, 61, 58, 0.25);
}

.btn--ghost:hover {
  background: var(--white);
  border-color: var(--charcoal);
  color: var(--charcoal);
}

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

.btn--dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

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

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  color: var(--white);
}

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

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header.scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
  flex-shrink: 0;
}

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

.logo__mark {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__text strong {
  font-size: 0.88rem;
  font-weight: 700;
}

.logo__text small {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--gray-600);
}

.nav__list {
  display: flex;
  gap: 0.2rem;
}

.nav__link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
  background: var(--teal);
  color: var(--white);
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.header__phone:hover { color: var(--teal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero — abstract composition, no photography */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  margin-top: var(--header-h);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(61, 155, 143, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(61, 155, 143, 0.12), transparent 50%),
    linear-gradient(165deg, #f4f9f8 0%, #eef5f3 45%, #e6f1ef 100%);
}

.hero__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--teal);
}

.blob {
  position: absolute;
  border-radius: 60% 40% 55% 45%;
  filter: blur(2px);
  opacity: 0.45;
  animation: float-blob 18s ease-in-out infinite;
}

.blob--1 {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  right: -6%;
  top: 8%;
  background: linear-gradient(145deg, rgba(61, 155, 143, 0.35), rgba(232, 245, 243, 0.8));
}

.blob--2 {
  width: min(28vw, 280px);
  height: min(28vw, 280px);
  right: 18%;
  bottom: 12%;
  background: linear-gradient(200deg, rgba(45, 122, 112, 0.2), rgba(61, 155, 143, 0.1));
  animation-delay: -6s;
  border-radius: 45% 55% 40% 60%;
}

.blob--3 {
  width: min(18vw, 180px);
  height: min(18vw, 180px);
  left: 8%;
  top: 22%;
  background: rgba(61, 155, 143, 0.12);
  animation-delay: -11s;
}

.hero__rings {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42vw, 420px);
  height: auto;
  opacity: 0.85;
  animation: spin-slow 48s linear infinite;
}

@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-12px, 18px) rotate(8deg); }
}

@keyframes spin-slow {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 4.5rem 0 5.5rem;
}

.hero__eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--teal-soft);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--charcoal);
  margin-bottom: 1.15rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 400;
  color: var(--gray-600);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Quick contact */
.quick-contact {
  position: relative;
  z-index: 5;
  margin-top: -2.5rem;
  padding-bottom: 0.5rem;
}

.quick-contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: 1.75rem 2rem;
}

.quick-contact__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.quick-contact__hint {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 1.1rem;
}

.quick-contact__fields {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: var(--focus);
  background: var(--white);
}

.form-group input.error { border-color: #c0392b; }

.form-note {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* Intro */
.intro {
  background: var(--charcoal);
  color: var(--white);
  padding: 4.5rem 0;
}

.intro__inner {
  text-align: center;
  max-width: 720px;
}

.intro__mark {
  display: block;
  font-size: 2.5rem;
  color: var(--teal);
  margin-bottom: 0.85rem;
  opacity: 0.85;
}

.intro__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 2.1rem);
  font-weight: 600;
  margin-bottom: 1.1rem;
  line-height: 1.3;
}

.intro__text {
  font-size: 1.02rem;
  font-weight: 300;
  opacity: 0.92;
  line-height: 1.8;
}

/* About */
.about { background: var(--gray-50); }

.about__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.about__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__media {
  margin: 0;
  position: relative;
}

.about__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.about__card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about__mini-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.about__mini-card span {
  color: var(--teal);
  font-size: 1.1rem;
  font-weight: 700;
}

.about__mini-card p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.35;
}

.about__content p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.about__role {
  font-weight: 600;
  color: var(--teal) !important;
  margin-bottom: 1.35rem !important;
}

.about__highlights {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}

.about__highlights svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* Services */
.services { background: var(--white); }

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

.service-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.1rem;
  color: var(--charcoal);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.65rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
}

.service-card__meta {
  margin-top: 1rem !important;
  font-size: 0.78rem !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal) !important;
}

.service-card__link {
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Process */
.process { background: var(--teal-light); }

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

.process__item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(61, 155, 143, 0.12);
  box-shadow: var(--shadow-sm);
}

.process__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--teal);
  margin-bottom: 0.65rem;
}

.process__item h3 {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.55rem;
}

.process__item p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Quotes */
.inspiration { background: var(--white); }

.quotes-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.quotes-carousel__track {
  flex: 1;
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.quote-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.quote-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.quote-card__mark {
  font-size: 2.2rem;
  color: var(--teal);
  margin-bottom: 1rem;
  opacity: 0.55;
}

.quote-card p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.quote-card cite {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--gray-400);
  font-weight: 500;
}

.quotes-carousel__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: var(--white);
  color: var(--teal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.quotes-carousel__btn:hover {
  background: var(--teal);
  color: var(--white);
}

.quotes-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.quotes-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.quotes-dots button.active {
  background: var(--teal);
  transform: scale(1.2);
}

/* Benefits */
.benefits { background: var(--gray-50); }

.benefits__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.benefits__content p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefits__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-800);
}

.benefits__list li::before {
  content: "Ψ";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
}

.benefits__visual {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
}

.benefits__photo-wrap {
  margin: 0;
}

.benefits__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.benefits__quote {
  position: relative;
  margin-top: -1.75rem;
  margin-inline: 1rem auto;
  max-width: 280px;
  background: var(--teal);
  color: var(--white);
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.benefits__quote-mark {
  font-size: 1.35rem;
  opacity: 0.7;
  display: block;
  margin-bottom: 0.25rem;
}

.benefits__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact */
.contact { background: var(--white); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.contact__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.contact__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.contact__item h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.contact__item p,
.contact__item a {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.contact__whatsapp-btn {
  margin-top: 0.5rem;
  width: 100%;
}

.contact__form {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 2rem;
}

.footer__grid {
  display: grid;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__brand .logo__mark { font-size: 1.7rem; }

.footer__brand strong {
  color: var(--white);
  font-size: 0.95rem;
  display: block;
}

.footer__brand p { font-size: 0.78rem; }

.footer__crp { margin-top: 0.25rem; opacity: 0.9; }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.footer__nav a:hover { color: var(--teal); }

.footer__contact a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer__legal {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__legal a {
  color: #9fd8d0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

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

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  color: var(--white);
  transform: scale(1.06);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Privacy page */
.page-hero {
  margin-top: var(--header-h);
  padding: 3.5rem 0 2rem;
  background: linear-gradient(165deg, #f4f9f8, #eef5f3);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--charcoal);
}

.page-content {
  padding: 2.5rem 0 4rem;
  max-width: 760px;
}

.page-content h2 {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin: 1.75rem 0 0.65rem;
}

.page-content p,
.page-content li {
  color: var(--gray-600);
  margin-bottom: 0.85rem;
}

.page-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about__layout,
  .benefits__grid,
  .contact__grid,
  .services__grid,
  .process__grid {
    grid-template-columns: 1fr;
  }

  .services__grid,
  .process__grid {
    max-width: 520px;
    margin-inline: auto;
  }

  .hero__rings {
    opacity: 0.35;
    right: -8%;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
  }

  .nav__link {
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }

  .header__contact { display: none; }

  .quick-contact__fields { grid-template-columns: 1fr; }

  .hero__content {
    padding: 3.25rem 0 4.5rem;
    text-align: left;
  }

  .quotes-carousel__btn { display: none; }

  .whatsapp-float__tooltip { display: none; }

  .logo__text strong { font-size: 0.78rem; }
  .logo__text small { font-size: 0.62rem; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .quick-contact__form,
  .contact__form { padding: 1.35rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}
