/* ========================================
   TOLDO VELA - Landing Page Premium v2
   ======================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #FC5E00;
  --orange-dark: #d94f00;
  --orange-glow: rgba(252,94,0,.3);
  --blue-dark: #305486;
  --blue-light: #337ABC;
  --blue-glow: rgba(51,122,188,.25);
  --black: #101010;
  --dark: #1a1a1a;
  --gray-900: #212121;
  --gray-700: #424242;
  --gray-500: #757575;
  --gray-300: #bdbdbd;
  --gray-100: #f7f8fa;
  --white: #ffffff;
  --red-muted: #c0392b;
  --green-muted: #1a7a4c;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.1);
  --shadow-card: 0 8px 32px rgba(0,0,0,.06);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SECTION BADGE --- */
.section-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(252,94,0,.08);
  padding: 8px 20px;
  border-radius: 60px;
  margin-bottom: 16px;
}
.section-badge--light {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

/* --- SECTION TITLES --- */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.section-title--light { color: var(--white); }
.section-title strong { display: block; }

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: .95rem;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 16px 36px;
  box-shadow: 0 4px 20px var(--orange-glow);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(252,94,0,.45);
}
.btn--lg { font-size: 1.05rem; padding: 20px 48px; }
.btn--sm { font-size: .88rem; padding: 14px 28px; }
.btn--header {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 60px;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0 2px 12px var(--orange-glow);
}
.btn--header:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--orange-glow); }
.btn__icon { flex-shrink: 0; position: relative; z-index: 1; }

.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 14px 34px;
}
.btn--outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--orange-glow);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  padding: 14px 34px;
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-3px);
}

.btn--pulse { animation: btnPulse 2.5s ease-in-out infinite; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 20px var(--orange-glow); }
  50% { box-shadow: 0 4px 40px rgba(252,94,0,.5); }
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: all var(--transition);
}
.header--scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 4px 30px rgba(0,0,0,.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.header__logo img { height: 44px; width: auto; }

.header__trust {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: .02em;
}
.header__trust-item svg { color: var(--blue-dark); }

/* --- HERO --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 160px 24px 140px;
  min-height: 105vh;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(48,84,134,.4) 0%, transparent 60%),
    linear-gradient(180deg, rgba(16,16,16,.75) 0%, rgba(16,16,16,.6) 50%, rgba(16,16,16,.8) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,.2);
  padding: 10px 24px;
  border-radius: 60px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  animation: fadeInDown .8s ease both;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.hero__title {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -.02em;
  animation: fadeInUp .8s ease .15s both;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp .8s ease .3s both;
}
.hero__cta-wrapper {
  animation: fadeInUp .8s ease .45s both;
}
.hero__tag {
  display: block;
  margin-top: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: .4; }
  50% { transform: scaleY(.5); opacity: 1; }
}

/* --- PROOF BAR --- */
.proof-bar {
  background: var(--black);
  padding: 24px 0;
}
.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.proof-bar__item {
  text-align: center;
  color: var(--white);
}
.proof-bar__number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.2;
}
.proof-bar__item span {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.proof-bar__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
}

/* --- TRUST LOGOS --- */
.trust-logos {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.trust-logos__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.trust-logos__label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
}
.trust-logos__grid {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-logos__item {
  display: flex;
  align-items: center;
  opacity: .45;
  transition: opacity var(--transition);
  filter: grayscale(1);
}
.trust-logos__item:hover {
  opacity: .8;
  filter: grayscale(0);
}
.trust-logos__item img {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.trust-logos__item--badge {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .55;
  filter: none;
  color: var(--gray-700);
}
.trust-logos__item--badge:hover { opacity: .8; }
.trust-logos__item--badge svg { color: var(--blue-dark); flex-shrink: 0; }
.trust-logos__item--badge span {
  font-size: .7rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--gray-700);
}

/* --- SECTION CTA (reusable) --- */
.section-cta {
  text-align: center;
  margin-top: 48px;
}
.section-cta__note {
  margin-top: 12px;
  font-size: .82rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* --- PROBLEMS --- */
.problems {
  padding: 96px 0;
  background: var(--white);
  position: relative;
  text-align: center;
}
.problems .section-title { margin-bottom: 64px; }
.problems__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,.06);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-muted), rgba(192,57,43,.3));
  transform: scaleX(0);
  transition: transform .4s ease;
  transform-origin: left;
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.08);
  border-color: rgba(192,57,43,.12);
}
.problem-card__icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(192,57,43,.08), rgba(192,57,43,.04));
  border-radius: 16px;
  margin-bottom: 20px;
  color: var(--red-muted);
  transition: all var(--transition);
}
.problem-card:hover .problem-card__icon {
  background: linear-gradient(135deg, rgba(192,57,43,.12), rgba(192,57,43,.06));
  transform: scale(1.05);
}
.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.problem-card p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.problems__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  height: 400px;
}
.problems__showcase.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.problems__showcase-img {
  position: relative;
  overflow: hidden;
}
.problems__showcase-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.problems__showcase:hover .problems__showcase-img img {
  transform: scale(1.05);
}
.problems__showcase-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  background: linear-gradient(135deg, var(--black) 0%, #1a2332 100%);
  position: relative;
}
.problems__showcase-text::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue-light), var(--orange));
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
}
.problems__quote-text {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  text-align: center;
}

/* --- COMPARISON --- */
.comparison {
  padding: 80px 0;
  background: linear-gradient(170deg, var(--gray-100) 0%, #eef2f7 50%, var(--gray-100) 100%);
  text-align: center;
}
.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 48px;
}
.comparison__col {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  opacity: 0;
  transform: translateY(28px);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.comparison__col.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.comparison__col--good.is-visible {
  transform: translateY(0) scale(1.02);
}
.comparison__col--bad {
  background: var(--white);
  border: 1px solid rgba(192,57,43,.1);
  box-shadow: var(--shadow);
}
.comparison__col--good {
  background: linear-gradient(160deg, #0f1923 0%, var(--black) 100%);
  color: var(--white);
  border: 1px solid rgba(51,122,188,.15);
  box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 0 80px rgba(252,94,0,.06);
  transform: scale(1.02);
}
.comparison__col--good::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(252,94,0,.08) 0%, transparent 70%);
  pointer-events: none;
}
.comparison__col--good::after {
  content: 'RECOMENDADO';
  position: absolute;
  top: 28px;
  right: -35px;
  background: var(--orange);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 6px 44px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(252,94,0,.3);
  z-index: 3;
}
.comparison__badge-inline {
  display: none;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  padding: 5px 14px;
  border-radius: 60px;
  margin-bottom: 16px;
}
.comparison__col h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid;
}
.comparison__col--bad h3 { border-color: rgba(192,57,43,.2); color: var(--red-muted); }
.comparison__col--good h3 { border-color: rgba(252,94,0,.4); color: var(--orange); }
.comparison__col li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: .95rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.comparison__col--good li { border-bottom-color: rgba(255,255,255,.05); }
.comparison__col li:last-child { border-bottom: none; }
.comparison__col--bad li { color: var(--gray-700); }
.comparison__col--good li { color: rgba(255,255,255,.85); }
.comparison__col li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 1rem;
}
.comparison__col--bad li::before { content: '\2715'; color: var(--red-muted); }
.comparison__col--good li::before { content: '\2713'; color: var(--orange); }

.comparison__cost-note {
  text-align: center;
  font-size: .95rem;
  color: var(--gray-700);
  margin-bottom: 28px;
  font-weight: 500;
  line-height: 1.6;
}
.comparison__cost-note strong {
  color: var(--orange);
}
.comparison__cta {
  text-align: center;
}

/* --- SOLUTION --- */
.solution {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.solution__bg {
  position: absolute;
  inset: 0;
}
.solution__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.solution__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(48,84,134,.3) 0%, transparent 50%),
    linear-gradient(180deg, rgba(16,16,16,.9) 0%, rgba(16,16,16,.85) 100%);
}
.solution__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.solution__desc {
  text-align: center;
  color: rgba(255,255,255,.65);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 64px;
  line-height: 1.75;
}
.solution__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.solution-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  opacity: 0;
  transform: translateY(28px);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(252,94,0,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}
.solution-card:hover::before { opacity: 1; }
.solution-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.solution-card:hover {
  border-color: rgba(252,94,0,.2);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}
.solution-card__number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  opacity: .5;
  line-height: 1;
}
.solution-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
}
.solution-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  position: relative;
}

/* --- PROCESS --- */
.process {
  padding: 96px 0;
  background: var(--white);
  text-align: center;
}
.process__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  text-align: left;
}
.process__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.process__image img {
  width: 100%; height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.process__timeline {
  max-width: 720px;
  position: relative;
}
.process__timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--blue-light), rgba(51,122,188,.1));
}
.process-step {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
  transform: translateX(-24px);
}
.process-step.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.process-step__num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--white), 0 4px 16px rgba(48,84,134,.2);
  transition: all var(--transition);
}
.process-step:hover .process-step__num {
  box-shadow: 0 0 0 6px var(--white), 0 8px 24px rgba(48,84,134,.3);
  transform: scale(1.08);
}
.process-step__body {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 24px 28px;
  flex: 1;
  border: 1px solid rgba(0,0,0,.04);
  transition: all var(--transition);
}
.process-step:hover .process-step__body {
  box-shadow: var(--shadow-card);
  border-color: rgba(48,84,134,.1);
}
.process-step__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.process-step__body p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- GALLERY --- */
.gallery {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16,16,16,.45) 100%);
  opacity: 1;
  transition: opacity .4s ease;
  pointer-events: none;
}
.gallery__item:hover::after { opacity: .7; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item--large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  font-size: .75rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 60px;
  letter-spacing: .03em;
  opacity: 1;
  transition: all .4s ease;
}
.gallery__item:hover .gallery__label {
  background: rgba(252,94,0,.85);
}

/* --- TESTIMONIALS --- */
.testimonials {
  padding: 96px 0;
  background: var(--gray-100);
  text-align: center;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,.06);
  text-align: left;
  opacity: 0;
  transform: translateY(24px);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  border-color: rgba(252,94,0,.1);
}
.testimonial-card__quote {
  position: relative;
  margin-bottom: 24px;
  flex: 1;
}
.testimonial-card__quote p {
  font-size: .92rem;
  color: var(--gray-700);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-card__avatar--1 { background: linear-gradient(135deg, var(--blue-dark), var(--blue-light)); }
.testimonial-card__avatar--2 { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.testimonial-card__avatar--3 { background: linear-gradient(135deg, #2c3e50, #3498db); }
.testimonial-card__avatar--4 { background: linear-gradient(135deg, #e67e22, #d35400); }
.testimonial-card__avatar--5 { background: linear-gradient(135deg, #8e44ad, #9b59b6); }
.testimonial-card__avatar--6 { background: linear-gradient(135deg, #16a085, #1abc9c); }
.testimonials__google-link {
  display: inline-block;
  margin-left: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--orange);
  transition: color var(--transition);
}
.testimonials__google-link:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}
.testimonial-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-muted);
  background: rgba(26,122,76,.08);
  padding: 6px 14px;
  border-radius: 60px;
  margin-bottom: 12px;
}
.testimonial-card__badge-icon {
  flex-shrink: 0;
  color: var(--green-muted);
}
.testimonial-card__author strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
}
.testimonial-card__author span {
  font-size: .78rem;
  color: var(--gray-500);
}

.testimonials__scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: .78rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: .04em;
}
.testimonials__scroll-hint svg { color: var(--orange); }

/* --- AUDIENCE --- */
.audience {
  padding: 96px 0;
  background: var(--white);
  text-align: center;
}
.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.audience__col {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  text-align: left;
}
.audience__col.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.audience__col:hover {
  box-shadow: var(--shadow-lg);
}
.audience__col-header {
  position: relative;
  overflow: hidden;
}
.audience__col-header img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .6s ease;
}
.audience__col:hover .audience__col-header img {
  transform: scale(1.05);
}
.audience__col-header h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 28px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0,0,0,.7));
}
.audience__list {
  padding: 24px 28px 28px;
}
.audience__list li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  font-size: .92rem;
  color: var(--gray-700);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.audience__list li:last-child { border-bottom: none; }
.audience__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.audience__col-cta {
  padding: 0 28px 28px;
}
.audience__col-cta .btn {
  width: 100%;
}

/* --- FOUNDER --- */
.founder {
  padding: 96px 0;
  background: var(--gray-100);
}
.founder__inner {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 56px;
  align-items: center;
}
.founder__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.founder__photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  opacity: 1;
  filter: none;
}
.founder__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -.02em;
  color: var(--dark);
}
.founder__quote {
  font-size: 1.08rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  margin: 0 0 12px;
  padding-left: 20px;
  border-left: 3px solid var(--orange);
}
.founder__author-line {
  font-size: .88rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.founder__author-line strong {
  color: var(--dark);
}
.founder__text p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
}
.founder__highlights {
  display: flex;
  gap: 32px;
}
.founder__highlights li {
  font-size: .88rem;
  color: var(--gray-500);
  font-weight: 500;
}
.founder__highlights li strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--orange);
}

/* --- FAQ --- */
.faq {
  padding: 96px 0;
  background: var(--white);
  text-align: center;
  border-top: 1px solid rgba(0,0,0,.06);
}
.faq__list {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: left;
}
.faq__item {
  background: var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,.04);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.faq__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: .98rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--orange); }
.faq__chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray-500);
}
.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
  color: var(--orange);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s ease;
}
.faq__answer p {
  padding: 0 24px 20px;
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- CTA --- */
.cta {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
}
.cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(252,94,0,.15) 0%, transparent 50%),
    linear-gradient(135deg, rgba(48,84,134,.85) 0%, rgba(16,16,16,.92) 100%);
}
.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -.02em;
  color: var(--white);
}
.cta__title strong { display: block; }
.cta__subtitle {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta__microcopy {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-top: 18px;
  font-weight: 400;
}
.cta__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 28px;
}
.cta__badges span {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* --- FOOTER --- */
.footer {
  background: var(--black);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo { height: 32px; width: auto; opacity: .5; transition: opacity var(--transition); }
.footer__logo:hover { opacity: .8; }
.footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: all var(--transition);
  animation: whatsappFloat 3s ease-in-out infinite;
}
@keyframes whatsappFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.whatsapp-float:hover {
  transform: scale(1.12) !important;
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- FOCUS VISIBLE (Accessibility) --- */
.btn:focus-visible,
.faq__question:focus-visible,
.whatsapp-float:focus-visible,
.header__logo:focus-visible,
.testimonials__google-link:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--orange-glow);
}

/* --- ANIMATIONS --- */
[data-animate] {
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .problems__grid { grid-template-columns: repeat(2, 1fr); }
  .solution__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--large { grid-column: 1 / -1; grid-row: auto; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header__inner { height: 64px; }
  .header__logo img { height: 36px; }
  .header__trust { display: none; }
  .btn--header { padding: 10px 20px; font-size: .8rem; min-height: 44px; }

  .hero { padding: 130px 20px 100px; min-height: 100dvh; }
  .hero__badge { font-size: .65rem; padding: 8px 18px; }
  .btn--lg { font-size: .95rem; padding: 16px 36px; }
  .hero__scroll-indicator { display: none; }

  .trust-logos__inner { flex-direction: column; gap: 12px; text-align: center; }
  .trust-logos__grid { justify-content: center; }
  .trust-logos__item img { height: 26px; }

  .proof-bar__inner { flex-wrap: wrap; gap: 20px; }
  .proof-bar__divider { display: none; }
  .proof-bar__item { flex: 1; min-width: 120px; }

  .problems { padding: 64px 0; }
  .problems__grid { grid-template-columns: 1fr; }
  .problems__showcase { grid-template-columns: 1fr; height: auto; max-height: none; }

  .comparison { padding: 58px 0; }
  .comparison__grid { grid-template-columns: 1fr; }
  .comparison__col { padding: 32px 28px; }
  .comparison__col--good::after { display: none; }
  .comparison__badge-inline { display: inline-block; }

  .solution { padding: 64px 0; }
  .solution__grid { grid-template-columns: 1fr; }

  .process { padding: 64px 0; }
  .process__layout { grid-template-columns: 1fr; }
  .process__image { display: none; }

  .gallery { padding: 60px 0; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .testimonials { padding: 64px 0; }
  .testimonials__grid {
    grid-template-columns: repeat(6, 85vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
  }
  .testimonial-card { scroll-snap-align: center; min-width: 0; }
  .testimonials__scroll-hint { display: flex; }

  .audience { padding: 64px 0; }
  .audience__grid { grid-template-columns: 1fr; }

  .founder { padding: 64px 0; }
  .founder__inner { grid-template-columns: 1fr; gap: 32px; }
  .founder__photo img { height: 260px; }

  .faq { padding: 64px 0; }

  .cta { padding: 80px 0; }
  .cta__badges { gap: 16px; }

  .footer__inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.75rem; }
  .section-title { font-size: 1.45rem; }
  .btn--lg { font-size: .9rem; padding: 14px 28px; }
  .hero { padding: 120px 16px 80px; }
  .proof-bar__number { font-size: 1.25rem; }
  .testimonial-card { padding: 24px 20px; }
  .gallery__grid { grid-template-columns: 1fr; }
}

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