:root {
  --navy: #0f2e3a;
  --navy-2: #1c4a5c;
  --navy-3: #091e26;
  --wine: #6b1d2a;
  --wine-dark: #4e1420;
  --sky: #f7f9fb;
  --paper: #ffffff;
  --paper-2: #f7f9fb;
  --gold: #c8a96a;
  --gold-2: #e6d3a3;
  --ink: #0f2e3a;
  --ink-soft: #5a6b75;
  --line: #e5eaf0;
  --line-strong: rgba(14, 46, 58, 0.18);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.04);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(200, 169, 106, 0.08), transparent 26%),
    linear-gradient(180deg, #f7f9fb 0%, #ffffff 38%, #f7f9fb 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.035;
  background-image: radial-gradient(circle, rgba(13, 43, 82, 0.7) 0.6px, transparent 0.7px);
  background-size: 16px 16px;
  mask-image: linear-gradient(180deg, transparent, black 10%, black 90%, transparent);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-space { padding: 110px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--gold);
}

.eyebrow::before {
  content: '';
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.title-serif {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.reveal,
.reveal-up,
.reveal-scale,
.stagger-item {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.16,1,.3,1);
}

.js-loaded .reveal,
.js-loaded .reveal-up,
.js-loaded .stagger-item {
  opacity: 0;
  transform: translateY(32px);
}

.js-loaded .reveal-scale {
  opacity: 0;
  transform: translateY(20px) scale(.97);
}

.visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, border-color .28s ease, color .28s ease;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 25%, transparent 50%);
  transform: translateX(-130%);
  transition: transform .65s ease;
  z-index: -1;
}

.btn:hover::before { transform: translateX(130%); }
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(13, 43, 82, 0.22);
}

.btn-primary:hover { box-shadow: 0 22px 48px rgba(13, 43, 82, 0.28); }

.btn-secondary {
  background: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
  color: var(--navy);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--navy);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}

#nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(13, 43, 82, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(13, 43, 82, 0.06);
}

.nav-wrap {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.nav-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 100%);
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 14px 26px rgba(13, 43, 82, 0.22);
  overflow: hidden;
}

.nav-logo svg { width: 24px; height: 24px; }

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-brand-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.nav-brand-text span {
  margin-top: 4px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  position: relative;
  padding: 10px 14px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { transform: translateY(-1px); }

.nav-cta { white-space: nowrap; }

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.9);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 2px 0;
  transition: .25s ease;
}

#inicio {
  position: relative;
  min-height: 100vh;
  padding-top: 118px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(200, 169, 106, 0.16), transparent 18%),
    radial-gradient(circle at 0% 25%, rgba(15, 46, 58, 0.06), transparent 22%),
    linear-gradient(180deg, #f2f6f8 0%, #ffffff 40%, #f7f9fb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 118px);
  padding: 28px 0 56px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow { margin-bottom: 24px; }

.hero-title {
  font-size: clamp(3rem, 6.4vw, 6rem);
  color: var(--navy);
  max-width: 11ch;
  margin-bottom: 22px;
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.hero-text {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.9;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(13, 43, 82, 0.1);
  background: rgba(255,255,255,0.8);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 34px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero-note-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 0 6px rgba(199, 155, 75, 0.12);
  animation: pulseDot 2.8s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(199,155,75,.22); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(199,155,75,0); }
}

.hero-card-wrap {
  position: relative;
  z-index: 2;
}

.hero-orb {
  position: absolute;
  inset: auto -60px -60px auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 155, 75, 0.24) 0%, rgba(199, 155, 75, 0.02) 65%, transparent 70%);
  filter: blur(2px);
  animation: floatOrb 5s ease-in-out infinite;
}

@keyframes floatOrb {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-card {
  position: relative;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(244,249,255,0.96) 100%);
  border: 1px solid rgba(13, 43, 82, 0.08);
  box-shadow: 0 30px 80px rgba(13, 43, 82, 0.12);
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13, 43, 82, 0.08);
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.15rem;
  line-height: 1.02;
  color: var(--navy);
  margin-bottom: 12px;
}

.hero-card-text {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 22px;
  font-size: 0.98rem;
}

.hero-card-list {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-card-item {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(13, 43, 82, 0.08);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.hero-card-item:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 155, 75, 0.35);
  box-shadow: var(--shadow-soft);
}

.hero-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(13,43,82,.1), rgba(199,155,75,.15));
  color: var(--navy);
  flex: 0 0 38px;
}

.hero-card-icon i {
  font-size: 1rem;
  color: var(--navy);
}

.hero-card-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 2px;
  font-size: 0.96rem;
}

.hero-card-item span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.stat-card {
  padding: 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(13, 43, 82, 0.08);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow-soft);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(199, 155, 75, 0.35);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 6px;
}

.stat-label {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 600;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.section-head h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.section-head p {
  color: var(--ink-soft);
  line-height: 1.9;
  font-size: 1rem;
  max-width: 58ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f6 100%);
  border: 1px solid rgba(14, 46, 58, 0.07);
  box-shadow: var(--shadow-soft);
  transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(14, 46, 58, 0.12);
  border-color: rgba(200, 169, 106, 0.4);
}

.service-card:hover::after { opacity: 1; }

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: rgba(13, 43, 82, 0.2);
  line-height: 1;
  font-weight: 700;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(199, 155, 75, 0.12);
  color: #9f6f22;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 14px;
}

.service-card p {
  color: var(--ink-soft);
  line-height: 1.85;
  font-size: 0.97rem;
}

.service-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

#productores {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(200, 169, 106, 0.14), transparent 18%),
    linear-gradient(135deg, #4e1420 0%, #6b1d2a 55%, #7a2236 100%);
  overflow: hidden;
}

#productores::before,
#productores::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

#productores::before {
  width: 460px;
  height: 460px;
  top: -180px;
  right: -120px;
}

#productores::after {
  width: 260px;
  height: 260px;
  bottom: -80px;
  left: -80px;
}

.prod-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.prod-left .eyebrow { margin-bottom: 22px; }

.prod-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  color: #fff;
  margin-bottom: 18px;
}

.prod-title strong {
  display: block;
  color: var(--gold-2);
  font-weight: 700;
}

.prod-text {
  color: rgba(255,255,255,0.8);
  line-height: 1.95;
  font-size: 1rem;
  max-width: 60ch;
  margin-bottom: 28px;
}

.steps {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.step-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 18px 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.step-item:hover {
  transform: translateX(6px);
  border-color: rgba(229, 197, 138, 0.35);
  background: rgba(255,255,255,0.08);
}

.step-n {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(199,155,75,.28), rgba(255,255,255,.08));
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 0.88rem;
}

.step-item h3 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-family: 'Cormorant Garamond', serif;
}

.step-item p {
  color: rgba(255,255,255,0.76);
  line-height: 1.75;
  font-size: 0.94rem;
}

.prod-panel-old-removed {}

#nosotros {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 40px;
  align-items: start;
}

.quote-card {
  position: relative;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border: 1px solid rgba(13, 43, 82, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(199, 155, 75, 0.16);
  pointer-events: none;
}

.quote-card p {
  position: relative;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 2.8vw, 2.6rem);
  line-height: 1.25;
  color: var(--navy);
}

.quote-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.quote-logo {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  box-shadow: var(--shadow-soft);
}

.quote-foot strong {
  display: block;
  color: var(--navy);
  font-size: 0.96rem;
}

.quote-foot span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-top: 3px;
}

.about-copy .eyebrow { margin-bottom: 22px; }

.about-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 0.98;
  color: var(--navy);
  margin-bottom: 18px;
}

.about-copy h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.about-copy p {
  color: var(--ink-soft);
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 14px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(13, 43, 82, 0.08);
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}

.area-item:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 155, 75, 0.3);
  box-shadow: var(--shadow);
}

.area-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  flex: 0 0 10px;
}

#contacto {
  position: relative;
  background:
    radial-gradient(circle at 10% 10%, rgba(200, 169, 106, 0.12), transparent 22%),
    radial-gradient(circle at 90% 90%, rgba(15, 46, 58, 0.3), transparent 24%),
    linear-gradient(135deg, #4e1420 0%, #6b1d2a 55%, #7a2236 100%);
  overflow: hidden;
}

.contact-top {
  text-align: center;
  margin-bottom: 50px;
}

.contact-top .eyebrow {
  justify-content: center;
  margin-bottom: 22px;
  color: var(--gold-2);
}

.contact-top .eyebrow::before {
  background: linear-gradient(90deg, var(--gold-2), transparent);
}

.contact-top h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.96;
  color: white;
}

.contact-top h2 strong {
  display: block;
  color: var(--gold-2);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.contact-card,
.form-card {
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.14);
  padding: 30px;
}

.contact-card h3,
.form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: white;
  margin-bottom: 10px;
  line-height: 1;
}

.contact-card > p,
.form-card > p {
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 22px;
}

.contact-rows {
  display: grid;
  gap: 4px;
}

.contact-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.88);
}

.contact-row:first-child { border-top: 1px solid rgba(255,255,255,0.1); }

.contact-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--gold-2);
}

.contact-icon-wrap i {
  font-size: 1.2rem;
  color: var(--gold-2);
  width: 20px;
  text-align: center;
}


.contact-row span:last-child,
.contact-row a {
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  font-size: 0.95rem;
}

.contact-pull {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.06);
  border-radius: 0 18px 18px 0;
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field { margin-bottom: 16px; }

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: white;
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.form-field select option {
  color: var(--ink);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(229,197,138,0.6);
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

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

.form-note {
  margin-top: 12px;
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  line-height: 1.7;
  text-align: center;
}

footer {
  background: #2a0a10;
  color: rgba(255,255,255,0.82);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  padding: 46px 0 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 26px;
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-brand p {
  max-width: 36ch;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
  font-size: 0.94rem;
}

.footer-title {
  color: var(--gold-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  transition: color .2s ease, transform .2s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0 10px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.42);
  font-size: 0.82rem;
}

.footer-credit {
  padding: 10px 0 22px;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.footer-credit a {
  color: var(--gold-2);
  opacity: 0.75;
  transition: opacity .2s ease;
  font-weight: 600;
}

.footer-credit a:hover {
  opacity: 1;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-chip {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(13,43,82,.08);
  box-shadow: var(--shadow-soft);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: .3s ease;
  white-space: nowrap;
}

.wa-float:hover .wa-chip {
  opacity: 1;
  transform: translateX(0);
}

.wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #1e9c62, #20c26b);
  box-shadow: 0 18px 34px rgba(32, 194, 107, 0.28);
  transition: transform .28s ease, box-shadow .28s ease;
}

.wa-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 40px rgba(32, 194, 107, 0.35);
}

.wa-btn svg { width: 28px; height: 28px; }

.section-aseguradoras {
  padding: 60px 0;
  background: linear-gradient(180deg, #f7f9fb 0%, #faf6f3 50%, #f7f9fb 100%);
  border-top: 1px solid rgba(107, 29, 42, 0.1);
  border-bottom: 1px solid rgba(107, 29, 42, 0.1);
  overflow: hidden;
}

.aseg-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.aseg-head p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 46ch;
  line-height: 1.7;
}

.aseg-track-wrap {
  position: relative;
  overflow: hidden;
}

.aseg-track-wrap::before,
.aseg-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.aseg-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #faf6f3, transparent);
}

.aseg-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #faf6f3, transparent);
}

.aseg-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: scrollLogos 28s linear infinite;
  width: max-content;
}

.aseg-track:hover { animation-play-state: paused; }

@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.aseg-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(107, 29, 42, 0.1);
  box-shadow: 0 4px 16px rgba(107, 29, 42, 0.06);
  min-width: 150px;
  height: 72px;
  transition: box-shadow .28s ease, border-color .28s ease, transform .28s ease;
  flex-shrink: 0;
}

.aseg-logo-item:hover {
  box-shadow: 0 10px 30px rgba(107, 29, 42, 0.12);
  border-color: rgba(200, 169, 106, 0.5);
  transform: translateY(-3px);
}

.aseg-logo-item span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.15;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: color .28s ease;
}

.aseg-logo-item span em {
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.aseg-logo-item:hover span { color: var(--gold); }
.aseg-logo-item:hover span em { color: var(--wine); }

/* ── prod-panel: tarjeta única ── */
.prod-panel {
  padding: 36px 32px;
  border-radius: 28px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
  align-self: center;
}

.prod-panel-head {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.prod-panel-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: white;
  font-weight: 700;
  line-height: 1.1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding-left .26s ease;
}

.feature-item:last-child { border-bottom: none; padding-bottom: 0; }
.feature-item:first-of-type { padding-top: 0; }

.feature-item:hover { padding-left: 6px; }

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(199,155,75,.28), rgba(199,155,75,.1));
  color: var(--gold-2);
  flex: 0 0 36px;
  font-size: 0.88rem;
}

.feature-item h4 {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.1;
}

.feature-item p {
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .hero-grid,
  .section-head,
  .prod-grid,
  .about-grid,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(13,43,82,.08);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    gap: 4px;
  }

  .nav-links.open a { width: 100%; }
  .nav-cta { display: none; }
}

@media (max-width: 760px) {
  .section-space { padding: 88px 0; }
  #inicio { padding-top: 102px; }
  .nav-wrap { height: 74px; width: min(calc(100% - 24px), 1320px); }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero-grid { padding: 18px 0 34px; }
  .hero-title { max-width: 100%; }
  .hero-actions, .hero-badges { align-items: stretch; }
  .btn { width: 100%; }
  .hero-card, .quote-card, .contact-card, .form-card, .prod-panel { padding: 24px; }
  .stats-bar, .areas-grid, .form-grid-2 { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; gap: 6px; }
  .contact-icon-wrap { flex-direction: row; }
  .wa-chip { display: none; }
}
