@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* =============================================
   VARIABLES & RESET
   ============================================= */
:root {
  --teal-deep:    #0f5657;
  --teal-primary: #1a7273;
  --teal-mid:     #22909200;
  --teal-light:   #2aabac;
  --teal-pale:    #e8f4f4;
  --teal-mist:    #f0f8f8;

  --gold:         #c9a84c;
  --gold-light:   #dfc27a;

  --charcoal:     #1c1c1c;
  --slate:        #3d4a4a;
  --stone:        #6b7c7c;
  --mist:         #c8d6d6;
  --off-white:    #f7fafa;
  --white:        #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 30px rgba(26, 114, 115, 0.08);
  --shadow-hover: 0 12px 48px rgba(26, 114, 115, 0.18);
  --shadow-hero: 0 2px 60px rgba(15, 86, 87, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,114,115,0.10);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(26,114,115,0.12);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-wrap img {
  height: 44px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 0.01em;
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.main-nav a:hover {
  color: var(--teal-primary);
  background: var(--teal-pale);
}

.btn-nav-cta {
  margin-left: 0.5rem;
  background: var(--teal-primary);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 500 !important;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s !important;
  box-shadow: 0 2px 12px rgba(26,114,115,0.25);
}

.btn-nav-cta:hover {
  background: var(--teal-deep) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26,114,115,0.35) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-deep);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--teal-deep);
  position: relative;
  overflow: hidden;
  padding-top: 74px;
}

/* Geometric background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(42,171,172,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 20%, rgba(201,168,76,0.10) 0%, transparent 50%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-deco-circle:nth-child(1) {
  width: 600px; height: 600px;
  right: -200px; top: -150px;
}

.hero-deco-circle:nth-child(2) {
  width: 400px; height: 400px;
  right: -50px; top: 50px;
  border-color: rgba(201,168,76,0.10);
}

.hero-deco-circle:nth-child(3) {
  width: 200px; height: 200px;
  left: 5%; bottom: 10%;
  border-color: rgba(42,171,172,0.15);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  animation: fadeUp 0.9s ease both;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: normal;
  color: var(--teal-light);
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

/* Hero right: service cards preview */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-card-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  backdrop-filter: blur(8px);
  transition: background 0.3s, transform 0.3s;
  cursor: default;
}

.hero-card-item:hover {
  background: rgba(255,255,255,0.10);
  transform: translateX(4px);
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(42,171,172,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hero-card-text h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.hero-card-text p {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
}

/* =============================================
   SECTION COMMON
   ============================================= */
section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--stone);
  max-width: 580px;
  line-height: 1.75;
}

/* =============================================
   AREAS / SERVICES SECTION
   ============================================= */
.areas {
  background: var(--off-white);
}

.areas-header {
  margin-bottom: 3.5rem;
}

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

.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(26,114,115,0.08);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-primary), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: background 0.3s, transform 0.3s;
}

.area-card:hover .area-card-icon {
  background: var(--teal-primary);
  transform: scale(1.08);
}

.area-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 0.75rem;
}

.area-card-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.area-services {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.area-service-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--slate);
  font-weight: 400;
}

.area-service-item::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
}

/* =============================================
   VALUE PROPOSITION BAND
   ============================================= */
.value-band {
  background: var(--teal-primary);
  padding: 4rem 2rem;
}

.value-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.value-item {
  padding: 1rem;
}

.value-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-number span {
  color: var(--gold-light);
}

.value-label {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.70);
  line-height: 1.5;
}

/* =============================================
   WHY PCLTS
   ============================================= */
.why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-visual-box {
  background: var(--teal-deep);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-visual-box::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.04);
}

.why-visual-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-visual-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}

.why-visual-domain {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--teal-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

.why-badge {
  position: absolute;
  bottom: -1.5rem;
  right: 2rem;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  white-space: nowrap;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.why-feature-text h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 0.3rem;
}

.why-feature-text p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.65;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #0d4445 100%);
  text-align: center;
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(42,171,172,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
}

.cta-section .section-inner {
  position: relative;
  z-index: 2;
}

.cta-section .section-title {
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 1rem;
}

.cta-section .section-lead {
  color: rgba(255,255,255,0.65);
  margin: 0 auto 2.5rem;
  text-align: center;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name {
  color: var(--white);
  font-size: 1.1rem;
}

.footer-brand .logo-tagline {
  color: rgba(255,255,255,0.4);
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--teal-light);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
}

.footer-contact-item .icon {
  font-size: 0.9rem;
  opacity: 0.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.40);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--teal-light);
}

/* =============================================
   BOTÓN PAGO SEGURO — NAVBAR
   ============================================= */
.btn-nav-pago {
  margin-left: 0.25rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: var(--charcoal) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.25s !important;
  box-shadow: 0 2px 14px rgba(201,168,76,0.30);
}

.btn-nav-pago:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 22px rgba(201,168,76,0.45) !important;
  background: var(--gold-light) !important;
  color: var(--charcoal) !important;
}

/* =============================================
   SECCIÓN PAGO SEGURO (TPV VIRTUAL)
   ============================================= */
.pago-section {
  background: var(--off-white);
  padding: 6rem 2rem;
}

.pago-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pago-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

/* --- Formulario --- */
.pago-form-wrap {}

.pago-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26,114,115,0.08);
}

.pago-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.pago-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pago-step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.pago-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pago-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pago-field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.01em;
}

.pago-field label em {
  font-style: normal;
  font-weight: 300;
  color: var(--stone);
}

.pago-field input,
.pago-field select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.pago-field input:focus,
.pago-field select:focus {
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 3px rgba(26,114,115,0.10);
}

.pago-field input::placeholder {
  color: var(--mist);
  font-weight: 300;
}

.pago-field-hint {
  font-size: 0.76rem;
  color: var(--stone);
  font-weight: 300;
}

.pago-select-wrap {
  position: relative;
}

.pago-select-wrap select {
  padding-right: 2.5rem;
}

.pago-select-arrow {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--stone);
  pointer-events: none;
  font-size: 1rem;
}

.pago-importe-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pago-importe-wrap:focus-within {
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 3px rgba(26,114,115,0.10);
}

.pago-currency {
  background: var(--teal-pale);
  color: var(--teal-deep);
  font-weight: 700;
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
  border-right: 1.5px solid var(--mist);
  flex-shrink: 0;
}

.pago-importe-wrap input {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  font-size: 1.05rem;
  font-weight: 600;
  flex: 1;
}

.pago-divider {
  height: 1px;
  background: linear-gradient(to right, var(--teal-pale), transparent);
  margin: 1.5rem 0;
}

.pago-aviso {
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background: var(--teal-mist);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal-primary);
}

.btn-pago {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-deep) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(26,114,115,0.30);
  transition: transform 0.2s, box-shadow 0.25s, background 0.25s;
}

.btn-pago:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(26,114,115,0.40);
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-primary) 100%);
}

.btn-pago-lock {
  font-size: 1rem;
}

.btn-pago-arrow {
  font-size: 1.1rem;
  margin-left: 0.25rem;
}

/* --- Panel de confianza --- */
.pago-trust {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 90px;
}

.pago-trust-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26,114,115,0.07);
}

.pago-trust-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pago-cards-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pago-card-logo {
  background: var(--off-white);
  border: 1px solid var(--mist);
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  display: flex;
  align-items: center;
}

.pago-card-logo svg {
  height: 24px;
  width: auto;
}

.pago-card-logo--bizum {
  padding: 0.3rem 0.6rem;
}

.pago-security-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pago-security-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pago-security-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pago-security-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 0.1rem;
}

.pago-security-item p {
  font-size: 0.77rem;
  color: var(--stone);
  line-height: 1.5;
}

.pago-legal-note {
  background: var(--teal-mist);
  border: 1px solid rgba(26,114,115,0.12);
}

.pago-legal-note p {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.65;
}

.pago-contact-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.83rem;
  color: var(--teal-primary);
  font-weight: 500;
  transition: color 0.2s;
}

.pago-contact-link:hover {
  color: var(--teal-deep);
}

/* Responsive pago */
@media (max-width: 1024px) {
  .pago-layout {
    grid-template-columns: 1fr;
  }
  .pago-trust {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .pago-form-card {
    padding: 1.75rem 1.25rem;
  }
  .pago-trust {
    grid-template-columns: 1fr;
  }
}


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.reveal.visible {
  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; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 1.25rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-cards {
    display: none;
  }

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

  .value-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid var(--teal-pale);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
  }

  .btn-nav-cta {
    margin-left: 0 !important;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .value-band-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .value-number {
    font-size: 2rem;
  }
}
