/* =================================================================
   BARRENECHE ABOGADO — Landing Page Luxury
   Hoja de estilos principal
   Paleta oficial de marca (archivo .ase):
   Crema #F0E6D5 · Crema claro #FDE7D7 · Azul marino #0C0F19 / #222841
   Oro rosa #F6D3C7 · Malva #B0A0A7
   ================================================================= */

/* ===== TOKENS ===== */
:root {
  --cream:        #F0E6D5;
  --cream-light:  #FDE7D7;
  --cream-pale:   #FCE5D5;
  --navy:         #0C0F19;
  --navy-2:       #222841;
  --navy-soft:    #2D2F7C;
  --rose:         #F6D3C7;
  --rose-deep:    #E5B9A9;
  --mauve:        #B0A0A7;

  --gold-grad: linear-gradient(135deg, #F6D3C7 0%, #E5B9A9 50%, #C9A492 100%);

  --line:       rgba(12, 15, 25, 0.15);
  --line-soft:  rgba(12, 15, 25, 0.08);

  --shadow-deep: 0 30px 60px -20px rgba(12, 15, 25, 0.35);
  --shadow-soft: 0 10px 30px -10px rgba(12, 15, 25, 0.18);

  --display:   'Cinzel', 'Times New Roman', serif;
  --editorial: 'Cormorant Garamond', Georgia, serif;
  --sans:      'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--navy); color: var(--cream); }

/* Subtle film-grain overlay for tactile, luxury feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' /%3E%3C/svg%3E");
}

/* ===== SHARED UTILITIES ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--navy-2);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--navy-2); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1.1rem var(--gutter);
  transition: all 0.4s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(240, 230, 213, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding: 0.7rem var(--gutter);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-brand img { height: 46px; width: auto; transition: height 0.3s; }
.nav.scrolled .nav-brand img { height: 38px; }
.nav-brand-text {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--navy);
  display: none;
}
@media (min-width: 768px) { .nav-brand-text { display: block; } }

.nav-links { display: none; gap: 2.2rem; list-style: none; align-items: center; }
@media (min-width: 920px) { .nav-links { display: flex; } }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 0.5rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--navy);
  transition: width 0.35s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--navy);
  color: var(--cream);
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.nav-cta svg { width: 14px; height: 14px; }

.menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
@media (min-width: 920px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 24px; height: 1.5px; background: var(--navy); transition: all 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  color: var(--cream);
  z-index: 49;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--display); font-size: 1.6rem; letter-spacing: 0.16em; color: var(--cream); }
.mobile-menu a:hover { color: var(--rose); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg::before {
  content: '';
  position: absolute;
  top: 50%; right: -10%;
  width: 90vh; height: 90vh;
  background: radial-gradient(circle at center, rgba(246, 211, 199, 0.5) 0%, rgba(246, 211, 199, 0) 65%);
  transform: translateY(-50%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 80px, rgba(12,15,25,0.03) 80px, rgba(12,15,25,0.03) 81px);
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) { .hero-inner { grid-template-columns: 1.15fr 1fr; gap: 4rem; } }

.hero-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero-title .accent {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 400;
  display: block;
  color: var(--navy-2);
  font-size: 0.55em;
  margin-top: 0.4rem;
  letter-spacing: 0.01em;
}
.hero-lead {
  font-family: var(--editorial);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 400;
  color: var(--navy);
  max-width: 38ch;
  margin: 1.5rem 0 2.5rem;
  line-height: 1.45;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.1rem 2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.35s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: var(--cream); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--navy-2); transform: translateY(-3px); box-shadow: var(--shadow-deep); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--cream); }
.btn svg { width: 16px; height: 16px; }

.hero-meta {
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 0.35rem; }
.hero-meta-num { font-family: var(--display); font-size: 1.8rem; font-weight: 600; color: var(--navy); line-height: 1; }
.hero-meta-label { font-family: var(--sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy-2); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual-frame { position: relative; padding: 2.5rem; }
.hero-visual-frame::before,
.hero-visual-frame::after { content: ''; position: absolute; width: 70px; height: 70px; border: 1px solid var(--navy-2); }
.hero-visual-frame::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero-visual-frame::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.hero-logo {
  width: 100%;
  max-width: 340px;
  filter: drop-shadow(0 20px 30px rgba(12, 15, 25, 0.18));
  animation: float 8s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
}
.scroll-cue::after { content: ''; width: 1px; height: 40px; background: var(--navy-2); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(0.3); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

/* ===== SECTIONS BASE ===== */
.section { padding: clamp(5rem, 10vw, 8rem) var(--gutter); position: relative; }
.section-head { max-width: var(--container); margin: 0 auto 4rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .section-head { grid-template-columns: 0.4fr 1fr; align-items: end; gap: 4rem; } }
.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--navy);
}
.section-intro {
  font-family: var(--editorial);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--navy-2);
  line-height: 1.5;
  max-width: 55ch;
  margin-top: 1.5rem;
}

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.services-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.service:hover { background: var(--navy); color: var(--cream); transform: translateY(-8px); box-shadow: var(--shadow-deep); border-color: var(--navy); }
.service-icon { width: 56px; height: 56px; margin-bottom: 1.5rem; color: var(--navy); transition: color 0.5s; }
.service:hover .service-icon { color: var(--rose); }
.service-num {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--navy-2);
  opacity: 0.5;
  transition: color 0.5s;
}
.service:hover .service-num { color: var(--rose); opacity: 1; }
.service-title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.service-text { font-family: var(--editorial); font-size: 1.05rem; line-height: 1.5; flex: 1; }
.service-cta {
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  position: relative;
  padding-bottom: 4px;
}
.service-cta::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(0.4);
  transition: transform 0.4s;
}
.service:hover .service-cta::after { transform: scaleX(1); transform-origin: left; }

/* ===== ABOUT (DR. GABRIEL) ===== */
.about { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%); position: relative; overflow: hidden; }
.about::before {
  content: 'BA';
  position: absolute;
  font-family: var(--display);
  font-size: clamp(20rem, 50vw, 45rem);
  font-weight: 700;
  color: var(--rose);
  opacity: 0.18;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -0.05em;
  line-height: 1;
  z-index: 0;
}
.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 900px) { .about-inner { grid-template-columns: 1fr 1.2fr; gap: 5rem; } }

.about-image { position: relative; }
.about-image-frame {
  position: relative;
  border: 1px solid var(--navy-2);
  padding: 14px;
  background: rgba(255,255,255,0.25);
}
.about-image-frame img { width: 100%; filter: drop-shadow(0 18px 30px rgba(12,15,25,0.22)); }
.about-image-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--navy);
  color: var(--cream);
  padding: 0.85rem 1.4rem;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.about-name {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.about-role {
  font-family: var(--editorial);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--navy-2);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-role::before { content: ''; width: 30px; height: 1px; background: var(--navy-2); }
.about-bio { font-family: var(--editorial); font-size: 1.15rem; line-height: 1.6; color: var(--navy); margin-bottom: 2rem; }
.about-credentials { display: grid; gap: 1rem; margin-bottom: 2.5rem; }
.credential {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.45);
  border-left: 2px solid var(--navy-2);
  backdrop-filter: blur(4px);
}
.credential-icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--navy-2); margin-top: 2px; }
.credential-text { font-family: var(--editorial); font-size: 1rem; line-height: 1.4; color: var(--navy); }
.credential-text strong { font-weight: 600; display: block; letter-spacing: 0.02em; }

/* ===== FIRM ===== */
.firm { background: var(--navy); color: var(--cream); position: relative; overflow: hidden; }
.firm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 80px, rgba(246,211,199,0.04) 80px, rgba(246,211,199,0.04) 81px);
}
.firm .section-title { color: var(--cream); }
.firm .section-intro { color: var(--rose); }
.firm .eyebrow { color: var(--rose); }
.firm .eyebrow::before { background: var(--rose); }

.firm-grid { max-width: var(--container); margin: 0 auto; position: relative; display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .firm-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.firm-text { font-family: var(--editorial); font-size: 1.15rem; line-height: 1.65; color: var(--cream); }
.firm-text p { margin-bottom: 1.2rem; }
.firm-text strong { color: var(--rose); font-weight: 600; }

.firm-pillars { display: grid; gap: 1.5rem; }
.pillar { padding: 1.5rem; border: 1px solid rgba(246, 211, 199, 0.2); background: rgba(246, 211, 199, 0.04); position: relative; transition: all 0.4s; }
.pillar:hover { background: rgba(246, 211, 199, 0.08); border-color: var(--rose); transform: translateX(8px); }
.pillar-num { font-family: var(--display); font-size: 0.75rem; letter-spacing: 0.2em; color: var(--rose); margin-bottom: 0.75rem; }
.pillar-title { font-family: var(--display); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.04em; color: var(--cream); margin-bottom: 0.5rem; text-transform: uppercase; }
.pillar-text { font-family: var(--editorial); font-size: 1.02rem; line-height: 1.5; color: var(--cream); opacity: 0.85; }

/* ===== MARQUEE ===== */
.marquee {
  background: var(--cream-light);
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.marquee-track { display: flex; gap: 4rem; animation: marquee 35s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--navy);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  white-space: nowrap;
}
.marquee-item::after { content: '✦'; color: var(--navy-2); font-size: 1.2rem; opacity: 0.5; }

/* ===== CONTACT (FORM + QR + CHANNELS) ===== */
.contact { background: var(--cream); position: relative; }
.contact-inner { max-width: var(--container); margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: start; } }

.contact-heading { margin-bottom: 2.5rem; }
.contact-title {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin: 1.25rem 0;
}
.contact-title em { font-family: var(--editorial); font-style: italic; font-weight: 400; color: var(--navy-2); letter-spacing: 0; }
.contact-lead { font-family: var(--editorial); font-size: 1.2rem; color: var(--navy-2); line-height: 1.55; max-width: 48ch; }

/* Form */
.form-card {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
}
.form-card-title { font-family: var(--display); font-size: 1.05rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.5rem; }
.form-card-sub { font-family: var(--editorial); font-size: 1.05rem; color: var(--cream); opacity: 0.8; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.4rem; }
.form-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(246, 211, 199, 0.06);
  border: 1px solid rgba(246, 211, 199, 0.22);
  color: var(--cream);
  padding: 0.95rem 1.1rem;
  font-family: var(--editorial);
  font-size: 1.1rem;
  border-radius: 2px;
  transition: all 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(240, 230, 213, 0.4); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--rose);
  background: rgba(246, 211, 199, 0.1);
  box-shadow: 0 0 0 3px rgba(246, 211, 199, 0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23F6D3C7' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.6rem;
  cursor: pointer;
}
.form-select option { background: var(--navy-2); color: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 540px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-submit {
  width: 100%;
  background: var(--gold-grad);
  color: var(--navy);
  padding: 1.1rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 0.5rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(246, 211, 199, 0.5); filter: brightness(1.05); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-submit svg { width: 16px; height: 16px; }

.form-note { font-family: var(--sans); font-size: 0.72rem; color: var(--mauve); text-align: center; margin-top: 1.1rem; line-height: 1.5; }
.form-note svg { width: 12px; height: 12px; vertical-align: -2px; margin-right: 4px; }

/* Form feedback */
.form-feedback { display: none; padding: 1rem 1.2rem; border-radius: 2px; font-family: var(--editorial); font-size: 1.05rem; margin-bottom: 1.4rem; align-items: center; gap: 0.7rem; }
.form-feedback.show { display: flex; }
.form-feedback.success { background: rgba(48, 171, 104, 0.15); border: 1px solid rgba(48, 171, 104, 0.5); color: #9fe6bd; }
.form-feedback.error { background: rgba(224, 12, 25, 0.12); border: 1px solid rgba(224, 12, 25, 0.4); color: #f2b8b8; }
.form-feedback svg { width: 20px; height: 20px; flex-shrink: 0; }

.spinner { width: 16px; height: 16px; border: 2px solid rgba(12,15,25,0.3); border-top-color: var(--navy); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Direct channels + QR */
.contact-side { display: grid; gap: 1.5rem; }
.channel-list { display: grid; gap: 0.9rem; }
.channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--cream-light);
  border: 1px solid var(--line);
  transition: all 0.35s;
}
.channel:hover { background: var(--navy); color: var(--cream); transform: translateX(6px); border-color: var(--navy); }
.channel:hover .channel-icon { color: var(--rose); }
.channel:hover .channel-label { color: var(--rose); }
.channel-icon { width: 24px; height: 24px; color: var(--navy-2); flex-shrink: 0; transition: color 0.35s; }
.channel-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.channel-label { font-family: var(--sans); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy-2); transition: color 0.35s; }
.channel-value { font-family: var(--editorial); font-size: 1.1rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* QR connect block */
.qr-block { background: var(--navy); padding: 1.75rem; position: relative; overflow: hidden; }
.qr-block::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0, transparent 40px, rgba(246,211,199,0.04) 40px, rgba(246,211,199,0.04) 41px); }
.qr-block-title { position: relative; font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); text-align: center; margin-bottom: 1.4rem; }
.qr-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.qr-item { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.qr-item img { width: 100%; max-width: 150px; border-radius: 6px; box-shadow: 0 6px 18px rgba(0,0,0,0.3); }
.qr-item-label { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); }
.qr-item-label svg { width: 14px; height: 14px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: var(--cream); padding: 5rem var(--gutter) 2rem; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--rose), transparent); }
.footer-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand img { height: 130px; margin-bottom: 1.5rem; }
.footer-tag { font-family: var(--editorial); font-style: italic; color: var(--rose); font-size: 1.1rem; max-width: 30ch; line-height: 1.4; }
.footer-col-title { font-family: var(--display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose); margin-bottom: 1.25rem; }
.footer-list { list-style: none; display: grid; gap: 0.75rem; }
.footer-list a, .footer-list span { font-family: var(--editorial); font-size: 1.05rem; color: var(--cream); opacity: 0.85; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.6rem; }
.footer-list a:hover { opacity: 1; color: var(--rose); }
.footer-list svg { width: 16px; height: 16px; opacity: 0.7; flex-shrink: 0; }
.footer-bottom {
  max-width: var(--container);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(246, 211, 199, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--mauve);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 40;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  animation: pulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1) rotate(-6deg); animation: none; }
.wa-float svg { width: 28px; height: 28px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 18px rgba(37,211,102,0); }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== MOBILE FINE-TUNE ===== */
@media (max-width: 640px) {
  .hero { padding-top: 7rem; }
  .hero-meta { gap: 1.5rem; }
  .hero-meta-num { font-size: 1.4rem; }
  .service { min-height: 380px; padding: 2rem 1.5rem; }
  .about::before { font-size: 16rem; }
  .about-image-badge { right: 0; }
  .wa-float { bottom: 1rem; right: 1rem; width: 54px; height: 54px; }
  .wa-float svg { width: 24px; height: 24px; }
  .footer-bottom { font-size: 0.68rem; }
}
