/* ==========================================================================
   Funerarias Perú — Catering para Velatorios
   ========================================================================== */

:root {
  --navy-dark: #06284A;
  --navy: #0B3A68;
  --navy-light: #12508c;
  --gold: #C49A4A;
  --gold-light: #d9b978;
  --white: #FFFFFF;
  --offwhite: #F7F5F0;
  --ink: #1c2b3a;
  --text-muted: #5c6b7a;
  --border-soft: #e7e2d8;

  --font-heading: 'Inter', -apple-system, Segoe UI, sans-serif;
  --font-body: 'Inter', -apple-system, Segoe UI, sans-serif;

  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 10px 30px rgba(6, 40, 74, 0.08);
  --shadow-card: 0 14px 40px rgba(6, 40, 74, 0.10);
  --transition: 0.25s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

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

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

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

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy-dark);
  margin: 0 0 0.5em;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

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

.section { padding: 80px 0; }
@media (max-width: 640px) {
  .section { padding: 56px 0; }
}

.section-heading { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-text { color: var(--text-muted); }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.eyebrow-light { color: var(--gold-light); }

.icon { width: 22px; height: 22px; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 30px; height: 30px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-block { width: 100%; white-space: normal; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  box-shadow: 0 10px 24px rgba(196, 154, 74, 0.35);
}
.btn-gold:hover { box-shadow: 0 14px 30px rgba(196, 154, 74, 0.45); }

.btn-navy {
  background: var(--navy-dark);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(6, 40, 74, 0.3);
}
.btn-navy:hover { background: var(--navy); }

.btn-outline-light {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-navy {
  border-color: var(--navy-dark);
  color: var(--navy-dark);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--navy-dark); color: var(--white); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--navy-dark);
  transition: gap var(--transition), color var(--transition);
}
.link-arrow:hover { gap: 10px; color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.25); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}

.brand-logo { height: 46px; width: auto; }

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a, .dropdown-toggle {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  background: none;
  border: none;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 8px 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover::after { width: 100%; }

.has-dropdown { position: relative; }
.dropdown {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  width: max-content;
  min-width: 230px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open-click .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  color: var(--navy-dark);
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
  white-space: nowrap;
}
.dropdown li a::after { display: none; }
.dropdown li a:hover { background: var(--offwhite); color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 18px; }

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition);
}
.whatsapp-btn:hover { background: var(--navy-light); }
.whatsapp-btn .icon { color: var(--gold-light); }
.whatsapp-btn-text { display: flex; flex-direction: column; line-height: 1.2; }
.whatsapp-btn-text strong { font-size: 0.9rem; }
.whatsapp-btn-text small { color: rgba(255,255,255,0.7); font-size: 0.72rem; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 84vw);
  background: var(--navy-dark);
  z-index: 200;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; }
.mobile-close { background: none; border: none; color: var(--white); cursor: pointer; }

.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list a {
  color: var(--white);
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1.05rem;
  display: block;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 40, 74, 0.55);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.mobile-menu-backdrop.is-open { opacity: 1; visibility: visible; }

@media (max-width: 960px) {
  .main-nav, .header-actions .whatsapp-btn-text { display: none; }
  .header-actions .whatsapp-btn { padding: 10px; }
  .hamburger { display: inline-flex; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 60px 0;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 3000ms ease;
}

.hero-slide.is-active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(6,40,74,0.8) 0%, rgba(6,40,74,0.55) 32%, rgba(6,40,74,0.22) 55%, rgba(6,40,74,0) 78%);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(6,40,74,0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover { background: rgba(6,40,74,0.6); border-color: rgba(255,255,255,0.8); }
.hero-arrow .icon { width: 22px; height: 22px; }
.hero-arrow-prev { left: 18px; }
.hero-arrow-prev .icon { transform: rotate(90deg); }
.hero-arrow-next { right: 18px; }
.hero-arrow-next .icon { transform: rotate(-90deg); }

.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot:hover { background: rgba(255,255,255,0.55); }
.hero-dot.is-active { background: var(--gold-light); border-color: var(--gold-light); transform: scale(1.15); }

.hero-inner { position: relative; z-index: 1; width: 100%; }
.hero-content { max-width: 620px; }

.hero h1 { color: var(--white); }

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
}

.hero-mini-services {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 28px 0 32px;
}
.hero-mini-services li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}
.hero-mini-services .icon { color: var(--gold-light); width: 20px; height: 20px; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 26px; }

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin: 0;
}
.hero-note .icon { color: var(--gold-light); }

@media (max-width: 640px) {
  .hero {
    min-height: 560px;
    padding: 40px 0;
  }
  .hero-slide { background-position: center 30%; }
  .hero-overlay {
    background-image: linear-gradient(180deg, rgba(6,40,74,0.88) 0%, rgba(6,40,74,0.82) 55%, rgba(6,40,74,0.94) 100%);
  }
  .hero-arrow { width: 36px; height: 36px; }
  .hero-arrow .icon { width: 18px; height: 18px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) {
  .cards-row { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.service-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 2px solid var(--navy-dark);
  color: var(--navy-dark);
  margin-bottom: 20px;
}
.service-card-accent .service-icon { border-color: var(--gold); color: var(--gold); }

.service-card p { color: var(--text-muted); }

.service-card-primary {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}
.service-card-primary h3,
.service-card-primary p { color: var(--white); }
.service-card-primary .service-icon { border-color: var(--gold-light); color: var(--gold-light); }
.service-card-primary .link-arrow { color: var(--white); }
.service-card-primary .link-arrow:hover { color: var(--gold-light); }

/* ==========================================================================
   PLANS
   ========================================================================== */
.plans { background: var(--offwhite); }

.people-selector {
  display: inline-flex;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  padding: 6px;
  margin-top: 24px;
}
.people-btn {
  border: none;
  background: transparent;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy-dark);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.people-btn.is-active { background: var(--navy-dark); color: var(--white); }

.plans-row { align-items: stretch; }

.plan-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.plan-header {
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
  padding: 20px;
}
.plan-header h3 {
  color: var(--white);
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.plan-card-featured {
  border: 2px solid var(--gold);
  transform: scale(1.03);
}
.plan-card-featured:hover { transform: scale(1.03) translateY(-6px); }
.plan-card-featured .plan-header { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.plan-card-featured .plan-header h3 { color: var(--navy-dark); }

.plan-badge {
  position: absolute;
  top: 18px;
  right: -34px;
  transform: rotate(45deg);
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 40px;
  z-index: 2;
}

.plan-body { padding: 28px; text-align: center; display: flex; flex-direction: column; flex: 1; }

.plan-price-label { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2px; }
.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}
.price-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-dark);
}
.price-igv { color: var(--text-muted); font-size: 0.85rem; }
.plan-for { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 22px; }

.plan-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink);
}
.plan-features .icon { color: var(--gold); }

.plans-footnote {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ==========================================================================
   COMPARE + GALLERY
   ========================================================================== */
.compare-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.compare-grid > * { min-width: 0; }
@media (max-width: 960px) {
  .compare-grid { grid-template-columns: 1fr; }
}

.table-scroll { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 480px;
}
.compare-table thead th {
  background: var(--navy-dark);
  color: var(--white);
  font-weight: 600;
  padding: 16px;
  text-align: center;
  font-size: 0.9rem;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table th.highlight-col { background: var(--gold); color: var(--navy-dark); }

.compare-table tbody th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border-soft);
  white-space: nowrap;
}
.compare-table tbody td {
  text-align: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-muted);
}
.compare-table td.highlight-col { background: rgba(196, 154, 74, 0.08); }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }

.icon-check { color: var(--gold); }
.icon-dash { color: #c9c2b3; }
.compare-table .icon { margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.gallery-item {
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--offwhite), #ece5d4);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-link { justify-content: center; display: flex; }

/* ==========================================================================
   MISA DE MES Y AÑO
   ========================================================================== */
.misa {
  background: var(--navy-dark);
  color: var(--white);
}
.misa-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .misa-grid { grid-template-columns: 1fr; }
}

.misa-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}

.misa h2 { color: var(--white); }
.misa-content p { color: rgba(255,255,255,0.82); max-width: 480px; }

.misa-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.misa-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}
.misa-list .icon { color: var(--gold-light); }

.misa-cards { display: flex; flex-direction: column; gap: 16px; }

.misa-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}
.misa-card-people {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy-dark);
  margin: 0;
}
.misa-card-people span { font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }
.misa-card-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0;
}
.misa-card-price span { font-family: var(--font-body); font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

.misa-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin: 6px 0 0;
}

/* ==========================================================================
   ADDONS
   ========================================================================== */
.addons-row { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .addons-row { grid-template-columns: 1fr; } }

.addon-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.addon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.addon-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.addon-price-label { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 2px; }
.addon-price { font-family: var(--font-heading); font-size: 1.5rem; color: var(--navy-dark); font-weight: 700; }
.addon-price span { font-family: var(--font-body); font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

.addons-footnote { text-align: center; color: var(--text-muted); font-size: 0.88rem; margin-top: 30px; }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-it-works { background: var(--offwhite); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-row::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--gold) 0 10px, transparent 10px 18px);
}
@media (max-width: 880px) {
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
}
@media (max-width: 520px) {
  .steps-row { grid-template-columns: 1fr; }
}

.step { text-align: center; position: relative; }
.step-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.step-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--offwhite);
  border: 2px solid var(--navy-dark);
  color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.step p { color: var(--text-muted); font-size: 0.92rem; }

/* ==========================================================================
   MEDIOS DE PAGO
   ========================================================================== */
.payment { background: var(--navy-dark); }
.payment .eyebrow-light { color: var(--gold-light); }
.payment-title { color: var(--white); }

.payment-row { align-items: stretch; }

.payment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

.payment-icon {
  width: 88px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 2px solid var(--navy-dark);
  color: var(--navy-dark);
  margin-bottom: 18px;
  overflow: hidden;
}

.payment-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment-card h3 { margin-bottom: 4px; }

.payment-holder {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.payment-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border-soft);
}
.payment-card h3 + .payment-field { border-top: none; padding-top: 16px; }
.payment-card .payment-holder + .payment-field { border-top: none; padding-top: 0; }

.payment-label { color: var(--text-muted); font-size: 0.78rem; margin: 0 0 2px; }
.payment-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-dark);
  margin: 0;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

@media (max-width: 480px) {
  .payment-value { font-size: 0.88rem; }
}

.copy-btn {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: var(--offwhite);
  color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.copy-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.copy-btn.is-copied { background: var(--navy-dark); border-color: var(--navy-dark); color: var(--gold-light); }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final-section {
  background: var(--navy-dark);
  background-image: linear-gradient(180deg, var(--navy-dark), var(--navy));
}

.cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.cta-card-text { max-width: 480px; }
.cta-card-text h2 { margin-bottom: 10px; }
.cta-card-text p { margin: 0; color: var(--text-muted); }

.cta-card-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}
.cta-phone .icon { color: var(--gold); }

@media (max-width: 640px) {
  .cta-card { padding: 32px 24px; flex-direction: column; text-align: center; }
  .cta-card-actions { align-items: center; width: 100%; }
  .cta-card-actions .btn { width: 100%; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.85); padding: 56px 0 24px; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
}

.footer-logo { height: 40px; margin-bottom: 12px; }
.footer-name { font-family: var(--font-heading); font-size: 1.1rem; color: var(--white); margin-bottom: 2px; }
.footer-tagline { color: var(--gold-light); font-size: 0.85rem; margin: 0; }

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 720px) { .footer-nav { align-items: center; } }
.footer-nav a { color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.footer-nav a:hover { color: var(--gold-light); }

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 6px;
}
@media (max-width: 720px) { .footer-contact a { justify-content: center; } }
.footer-contact .icon { color: var(--gold); }
.footer-contact p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin: 24px 0 0;
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy-dark);
  border: 2px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(6,40,74,0.4);
  z-index: 150;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float .icon { width: 28px; height: 28px; }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 40, 74, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  padding: 24px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 480px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}
