/* ============================================================
   CALAZANS PSICOLOGIA – style.css
   ============================================================ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --green:       #4a7212;
  --green-light: #5d8f17;
  --green-pale:  #eaf3d8;
  --green-tint:  #f3f9e8;
  --navy:        #081331;
  --navy-mid:    #0d1f4a;
  --navy-light:  #152455;
  --white:       #ffffff;
  --off-white:   #f8f9fb;
  --gray-100:    #f2f4f7;
  --gray-200:    #e4e7ed;
  --gray-400:    #9aa3b2;
  --gray-600:    #5c6475;
  --gray-800:    #2d3340;

  --font-sans: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(8,19,49,.06), 0 1px 2px rgba(8,19,49,.04);
  --shadow-md:  0 4px 16px rgba(8,19,49,.08), 0 2px 6px rgba(8,19,49,.04);
  --shadow-lg:  0 12px 40px rgba(8,19,49,.12), 0 4px 12px rgba(8,19,49,.06);
  --shadow-xl:  0 24px 64px rgba(8,19,49,.16);

  --transition: 220ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 400ms cubic-bezier(.4,0,.2,1);

  --container: 1160px;
  --header-h:  96px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 48px);
}

/* ── Utility ───────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}
.section-label--light { color: var(--green-pale); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.section-title em { color: var(--green); font-style: normal; }
.section-title--light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 56ch;
  margin-inline: auto;
}

.section-subtitle--note {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: .875rem;
  color: var(--gray-400);
  font-style: italic;
  margin-top: .5rem;
}

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

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-size: .9375rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(74,114,18,.30);
}
.btn--primary:hover {
  background: var(--green-light);
  box-shadow: 0 8px 24px rgba(74,114,18,.38);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
}
.btn--white:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.24);
  background: var(--off-white);
}

.btn--sm  { padding: .5rem 1.25rem; font-size: .875rem; }
.btn--lg  { padding: .9rem 2.25rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Animations ────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-animate="fade-left"]  { transform: translateX(28px); }
[data-animate="fade-right"] { transform: translateX(-28px); }

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 900;
  background: rgba(8,19,49,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow var(--transition-slow);
}
.header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.18);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  flex-shrink: 0;
}
.header__logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer__logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.5rem, 2vw, 2rem);
}
.nav__link {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
  padding: .25rem 0;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }

.header__cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0a1d3a 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.hero__circle {
  position: absolute;
  border-radius: 50%;
  opacity: .07;
}
.hero__circle--1 {
  width: 600px; height: 600px;
  background: var(--green);
  top: -200px; right: -150px;
}
.hero__circle--2 {
  width: 360px; height: 360px;
  background: var(--green);
  bottom: 60px; left: -100px;
}
.hero__circle--3 {
  width: 200px; height: 200px;
  background: var(--white);
  top: 40%; left: 38%;
  opacity: .03;
}

.hero__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(74,114,18,.15), transparent);
  height: 1px;
  width: 100%;
}
.hero__line--1 { top: 35%; }
.hero__line--2 { top: 65%; }

.hero__deco {
  position: absolute;
  right: 8%;
  top: 20%;
  width: 300px;
  opacity: .5;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(74,114,18,.2);
  border: 1px solid rgba(74,114,18,.4);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a8d45e;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-style: normal;
  color: #a8d45e;
}

.hero__subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.75);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

/* Hero photo */
.hero__visual { display: flex; justify-content: flex-end; }

.hero__photo-wrap {
  position: relative;
  width: min(480px, 100%);
}

.hero__photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 480/560;
}

.hero__photo-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  aspect-ratio: 480/560;
  background: rgba(255,255,255,.06);
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  color: rgba(255,255,255,.4);
  font-size: .875rem;
}
.hero__photo-placeholder svg { width: 80px; height: 80px; }

.hero__badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.hero__badge-float--1 {
  top: 10%;
  left: -10%;
  color: var(--green);
}
.hero__badge-float--2 {
  bottom: 12%;
  right: -8%;
  color: var(--navy);
}
.hero__badge-float svg { color: var(--green); }

/* Stats bar */
.hero__stats {
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}
.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
}
.hero__stat {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero__stat:last-child { border-right: none; }
.hero__stat svg { color: var(--green); flex-shrink: 0; }
.hero__stat strong {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.hero__stat span {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.about__photo-wrap {
  position: relative;
  max-width: 440px;
}

.about__photo {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 440/520;
  box-shadow: var(--shadow-xl);
}

.about__photo-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  aspect-ratio: 440/520;
  background: var(--green-tint);
  border: 2px dashed var(--green-pale);
  border-radius: var(--radius-xl);
  color: var(--green);
  font-size: .875rem;
}
.about__photo-placeholder svg { width: 72px; height: 72px; }

.about__crp-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--navy);
  color: var(--white);
  padding: .75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  line-height: 1.2;
}
.about__crp-badge span {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}
.about__crp-badge strong {
  font-size: .95rem;
  color: #a8d45e;
}

.about__role {
  font-size: .875rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
}

.about__text {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about__values {
  margin: 1.75rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.about__values li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9375rem;
  color: var(--gray-800);
  font-weight: 500;
}
.about__values li svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
  background: var(--green-tint);
  padding: 3px;
  border-radius: 50%;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--off-white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}

.service-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--green-tint);
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__img { transform: scale(1.04); }

.service-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .625rem;
}

.service-card__text {
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--green);
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}
.service-card__cta svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card__cta:hover { color: var(--green-light); }
.service-card__cta:hover svg { transform: translateX(4px); }

/* ============================================================
   DIFFERENTIALS
   ============================================================ */
.differentials {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.diff__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.diff__card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.diff__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.diff__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: var(--green-tint);
  border-radius: var(--radius-md);
  color: var(--green);
  margin-bottom: 1rem;
}
.diff__icon svg { width: 28px; height: 28px; }

.diff__card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .5rem;
}
.diff__card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================================
   FOR WHOM
   ============================================================ */
.forwhom {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--green-tint);
}

.forwhom__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.forwhom__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-pale);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.forwhom__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--green-pale);
}

.forwhom__icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: var(--green-tint);
  border-radius: 50%;
  color: var(--green);
}
.forwhom__icon svg { width: 22px; height: 22px; }

.forwhom__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.forwhom__cta p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 50ch;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  background: var(--navy);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.benefits__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.benefits__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 52ch;
}

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

.benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefits__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(74,114,18,.25);
  border: 1px solid rgba(74,114,18,.4);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
  color: #a8d45e;
}

.benefits__item strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: .2rem;
}
.benefits__item p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

.benefits__visual {
  display: flex;
  justify-content: center;
}
.benefits__visual svg {
  width: 100%;
  max-width: 320px;
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--off-white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote svg {
  width: 32px;
  color: var(--green-pale);
}

.testimonial-card__text {
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--green-tint);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-card__avatar svg { width: 44px; height: 44px; }

.testimonial-card__name {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  font-style: normal;
}
.testimonial-card__service {
  font-size: .78rem;
  color: var(--green);
  font-weight: 600;
}

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--off-white);
}

.instagram__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.instagram__desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 2rem;
}

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

.instagram__post {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  background: var(--gray-200);
}

.instagram__post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.instagram__post:hover img { transform: scale(1.06); }

.instagram__placeholder {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: var(--green-tint);
  color: var(--green);
}

.instagram__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,19,49,.45);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram__post:hover .instagram__overlay { opacity: 1; }

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

@media (max-width: 480px) {
  .instagram__grid { gap: .5rem; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  overflow: hidden;
}

.cta-section__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-section__shape {
  position: absolute;
  border-radius: 50%;
  background: var(--green);
  opacity: .06;
}
.cta-section__shape--1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.cta-section__shape--2 { width: 300px; height: 300px; bottom: -150px; left: -50px; }

.cta-section__inner { position: relative; z-index: 1; }

.cta-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}

.cta-section__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.contact {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.contact__desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__detail-icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: var(--green-tint);
  border-radius: var(--radius-md);
  color: var(--green);
  flex-shrink: 0;
}
.contact__detail-icon svg { width: 22px; height: 22px; }

.contact__details strong {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact__details span,
.contact__details a {
  font-size: .9375rem;
  color: var(--gray-600);
  transition: color var(--transition);
}
.contact__details a:hover { color: var(--green); text-decoration: underline; }

/* Form */
.contact__form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

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

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

.form-label {
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
}
.form-label span { color: var(--green); }

.form-input {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: .9375rem;
  color: var(--gray-800);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,114,18,.12);
}
.form-input::placeholder { color: var(--gray-400); }
.form-input.is-invalid {
  border-color: #d0271f;
  box-shadow: 0 0 0 3px rgba(208,39,31,.1);
}
.form-input.is-valid {
  border-color: var(--green);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-error {
  font-size: .8rem;
  color: #d0271f;
  font-weight: 600;
  min-height: 1.2em;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--gray-400);
  text-align: center;
  justify-content: center;
}
.form-privacy svg { color: var(--green); flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--off-white);
}

.faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq__item:has(.faq__question[aria-expanded="true"]) {
  box-shadow: var(--shadow-md);
  border-color: var(--green-pale);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
}
.faq__question:hover { color: var(--green); }
.faq__question[aria-expanded="true"] { color: var(--green); }

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--green);
  transition: transform var(--transition);
}
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(180deg); }

.faq__answer {
  overflow: hidden;
  transition: max-height var(--transition-slow), opacity var(--transition-slow);
}
.faq__answer[hidden] { display: none; }
.faq__answer p {
  padding: 0 1.5rem 1.5rem;
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo { display: flex; align-items: center; gap: .625rem; margin-bottom: 1rem; }

.footer__desc {
  font-size: .875rem;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.footer__wa,
.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 700;
  transition: background var(--transition);
  width: fit-content;
}

.footer__wa {
  background: rgba(74,114,18,.25);
  border: 1px solid rgba(74,114,18,.4);
  color: #a8d45e;
}
.footer__wa:hover { background: rgba(74,114,18,.4); }

.footer__ig {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
}
.footer__ig:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

.footer__nav-title {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer__nav ul,
.footer__services ul {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.footer__nav a,
.footer__services a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__nav a:hover,
.footer__services a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 1.25rem 0;
}

.footer__copy { font-size: .8rem; color: rgba(255,255,255,.35); }

.footer__dev {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer__dev a {
  color: rgba(255,255,255,.7);
  text-decoration: underline;
  transition: color var(--transition);
}
.footer__dev a:hover { color: var(--white); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 800;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}

.wa-float__pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25d366;
  opacity: .5;
  animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: .5; }
  70%  { transform: scale(1.5); opacity: 0;  }
  100% { transform: scale(1.5); opacity: 0;  }
}

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

/* ── Tablet ≤ 1024px ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner   { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 1; display: flex; flex-direction: column; align-items: center; }
  .hero__visual  { order: 0; justify-content: center; }
  .hero__photo-wrap { max-width: 360px; margin-inline: auto; }
  .hero__badge-float--1 { left: 0; }
  .hero__badge-float--2 { right: 0; }

  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stat { border-right: none; }

  .about__inner { grid-template-columns: 1fr; text-align: center; }
  .about__image-col { display: flex; justify-content: center; }
  .about__crp-badge { right: 0; }
  .about__values { align-items: flex-start; text-align: left; }
  .about__values li { justify-content: flex-start; }

  .benefits__inner { grid-template-columns: 1fr; }
  .benefits__visual { display: none; }

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

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ── Mobile ≤ 768px ───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav, .header__cta { display: none; }
  .hamburger { display: flex; }

  /* Mobile nav open */
  .nav.is-open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    height: calc(100dvh - var(--header-h));
    background: rgba(8,19,49,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 850;
    animation: nav-in .25s ease;
  }
  @keyframes nav-in {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav.is-open .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .nav.is-open .nav__link {
    font-size: 1.25rem;
    color: var(--white);
  }

  .hero__actions { justify-content: center; }
  .hero__badge-float { display: none; }

  .hero__stats-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .hero__stat { padding: .75rem .5rem; gap: .5rem; }

  .services__grid  { grid-template-columns: 1fr; }
  .diff__grid      { grid-template-columns: 1fr; }
  .forwhom__grid   { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── Small Mobile ≤ 480px ────────────────────────────────── */
@media (max-width: 480px) {
  .hero__title { font-size: 1.9rem; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats-grid { grid-template-columns: 1fr; }
  .forwhom__grid { grid-template-columns: 1fr 1fr; }
  .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}
