/* =============================================
   SECCIÓN "TODOS NUESTROS SERVICIOS INCLUYEN"
   ============================================= */
.mp-pricing {
  padding: 100px 5% 90px;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(180,225,245,0.30) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(210,235,255,0.25) 0%, transparent 50%),
    linear-gradient(160deg, #f0f8ff 0%, #f8faff 40%, #fffdf9 100%);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #193D70;
  position: relative;
  overflow: hidden;
}

/* ---- Decoración de fondo ---- */
.inc-bg-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.inc-deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.inc-deco-c1 {
  width: 420px; height: 420px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, #4DB8DA, transparent 70%);
  animation: inc-float 12s ease-in-out infinite;
}
.inc-deco-c2 {
  width: 300px; height: 300px;
  bottom: -80px; right: -60px;
  background: radial-gradient(circle, #6ebbf6, transparent 70%);
  animation: inc-float 16s ease-in-out infinite reverse;
}
.inc-deco-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' fill-opacity='0.5' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,30 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom/cover;
  opacity: 0.6;
}

@keyframes inc-float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(20px,-15px) scale(1.05); }
  66%     { transform: translate(-10px,10px) scale(0.97); }
}

/* ---- Header ---- */
.inc-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.inc-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4DB8DA;
  background: rgba(77,184,218,0.08);
  border: 1px solid rgba(77,184,218,0.25);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.mp-title {
  text-align: center;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 14px;
  line-height: 1.25;
}

.inc-subtitle {
  display: block;
  font-size: 15px;
  color: #6a8aab;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* ---- Grid ---- */
.mp-includes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

/* ---- Tarjeta ---- */
.include-card {
  background: #ffffff;
  padding: 40px 28px 32px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;

  /* Sombra en capas para profundidad real */
  box-shadow:
    0 2px 4px rgba(25,61,112,0.04),
    0 8px 20px rgba(25,61,112,0.07),
    0 20px 40px rgba(25,61,112,0.06);

  /* Borde sutil */
  border: 1px solid rgba(77,184,218,0.10);

  /* Transición suave */
  transition:
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

/* Línea de acento superior */
.include-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4DB8DA, #6ebbf6, #4DB8DA);
  background-size: 200%;
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Brillo de fondo en hover */
.include-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(77,184,218,0.06) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.include-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 4px 8px rgba(25,61,112,0.06),
    0 16px 36px rgba(25,61,112,0.12),
    0 32px 56px rgba(77,184,218,0.12);
  border-color: rgba(77,184,218,0.30);
}

.include-card:hover::before { opacity: 1; }
.include-card:hover::after  { opacity: 1; }

/* ---- Ícono ---- */
.inc-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 22px;
}

.inc-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(77,184,218,0.10), rgba(110,187,246,0.08));
  border: 1.5px solid rgba(77,184,218,0.18);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              background 0.3s ease,
              border-color 0.3s ease;
}

.include-card:hover .inc-icon-ring {
  transform: scale(1.12);
  background: linear-gradient(135deg, rgba(77,184,218,0.16), rgba(110,187,246,0.13));
  border-color: rgba(77,184,218,0.35);
}

.inc-icon-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.include-card:hover .inc-icon-wrap img {
  transform: scale(1.10) translateY(-2px);
}

/* ---- Texto ---- */
.inc-label {
  font-size: 16px;
  font-weight: 600;
  color: #1a3a5c;
  margin: 0 0 8px;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}

.include-card:hover .inc-label {
  color: #4DB8DA;
}

.inc-desc {
  display: block;
  font-size: 13px;
  color: #8aabcc;
  line-height: 1.55;
  font-weight: 400;
}

/* ---- Entrada escalonada con animación ---- */
.include-card {
  opacity: 0;
  transform: translateY(28px);
  animation: inc-card-in 0.6s ease forwards;
}
.include-card:nth-child(1) { animation-delay: 0.05s; }
.include-card:nth-child(2) { animation-delay: 0.15s; }
.include-card:nth-child(3) { animation-delay: 0.25s; }
.include-card:nth-child(4) { animation-delay: 0.35s; }

@keyframes inc-card-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  .mp-includes { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .include-card { padding: 28px 18px 24px; }
  .inc-icon-wrap { width: 80px; height: 80px; }
  .inc-icon-wrap img { width: 44px; height: 44px; }
}


.mp-weight {
  text-align: center;
  margin-bottom: 60px;
}

.mp-weight label {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}

.mp-weight select {
  padding: 14px 22px;
  border-radius: 30px;
  border: 1px solid #cfdff0;
  font-size: 16px;
}

.mp-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 35px;
}

.package {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  position: relative;
  transition: transform .3s ease;
}

.package:hover {
  transform: translateY(-8px);
}

.package img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
}

.package h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price {
  font-size: 24px;
  font-weight: 600;
  color: #254F8A;
}

.featured {
  border: 2px solid #6ECFE8;
}

.tag {
  position: absolute;
  top: -14px;
  right: 20px;
  background: #6ECFE8;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}
.urnas-section {
  padding: 90px 6%;
  background: #193D70;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #193D70;
}

.urnas-header {
  text-align: center;
  margin-bottom: 70px;
}

.urnas-subtitle {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  color: #ffffff;
}


.urnas-header strong {
    color: #ffffff !important;
}
.urnas-header h2 {
    color: #ffffff !important;
}

.urnas-header h2 {
  font-size: 42px;
  font-weight: 300;
}

.urnas-header strong {
  font-weight: 600;
}

.urnas-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
}

.urnas-column {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.column-head {
  text-align: center;
  margin-bottom: 40px;
}

.column-head p {
  font-size: 14px;
  color: #6b7c93;
}

.column-head h3 {
  font-size: 30px;
  margin: 8px 0;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: #254F8A;
}

.urnas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 25px;
}

.urna-card {
  background: #f9fcff;
  border-radius: 20px;
  padding: 18px;
  text-align: center;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}

.urna-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.urna-card img {
  width: 100%;
  border-radius: 14px;
}

.code {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #7a8ca6;
}
.mp-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.mp-modal-content {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 30px;
  border-radius: 16px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.mp-modal-content h2 {
  text-align: center;
  margin-bottom: 20px;
}

.mp-modal-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.mp-modal-form input[readonly] {
  background: #f3f3f3;
  font-weight: 600;
}

.mp-modal-form button {
  width: 100%;
  padding: 14px;
  background: #193D70;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

.mp-modal-form button:hover {
  background: #254F8A;
}

.mp-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 24px;
  cursor: pointer;
}

@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.mp-modal-help {
  background: #f4f7fb;
  border-left: 4px solid #193D70;
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 8px;
  text-align: center;
}

.mp-modal-help p {
  margin: 0;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}
.eco-urnas {
  padding: 90px 6%;
  background: #f7faf8;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1f3d2b;
}

.eco-header {
  text-align: center;
  margin-bottom: 70px;
}

.eco-header h2 {
  font-size: 40px;
  font-weight: 500;
}

.eco-header p {
  color: #6b8f7a;
  margin-top: 10px;
}

.eco-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
}

.eco-column {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.eco-column.featured {
  border: 2px solid #8ad9b6;
}

.eco-head {
  text-align: center;
  margin-bottom: 40px;
}

.eco-head span {
  font-size: 13px;
  color: #7da98b;
  text-transform: uppercase;
}

.eco-head h3 {
  font-size: 28px;
  margin: 6px 0;
}

.eco-head strong {
  font-size: 18px;
  color: #2f7a56;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
}

.eco-card {
  background: #f9fcfa;
  border-radius: 22px;
  padding: 20px;
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease;
}

.eco-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.eco-card img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 15px;
}

.eco-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.eco-card span {
  font-size: 13px;
  color: #7da98b;
}
.memorial-breeds {
  padding: 100px 6%;
  background: #193D70;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #193D70;
}

.memorial-visual {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 70px;
}

.memorial-visual img {
  width: 180px;
  height: 180px;
  border-radius: 16px; /* Menos redondeado, look premium */
  object-fit: cover;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

/* Hover */
.memorial-visual img:hover {
  transform: scale(1.12); /* Se agranda */
  box-shadow: 0 22px 45px rgba(0,0,0,0.28);
}


/* ===== PRICE HEADER — card premium ===== */
.memorial-header {
  text-align: center;
  margin-bottom: 60px;
}

.memorial-header h2 {
  display: inline-block;
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #193D70 0%, #254F8A 50%, #4DB8DA 100%);
  padding: 28px 56px 20px;
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(77,184,218,0.25),
    0 8px 32px rgba(25,61,112,0.25),
    0 0 60px rgba(77,184,218,0.12);
  margin-bottom: 16px;
  letter-spacing: -1px;
  position: relative;
}

/* Glow sutil detrás del precio */
.memorial-header h2::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(77,184,218,0.3), transparent 60%);
  z-index: -1;
  filter: blur(12px);
}

.memorial-header p:first-of-type {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4DB8DA;
  margin-bottom: 8px;
}

.memorial-header p:last-of-type {
  font-size: 14px;
  color: #7a95b0;
  margin: 0;
}

/* ===== BREED GRID ===== */
.breed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ===== BREED BOX — glass effect ===== */
.breed-box {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.breed-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.11);
  box-shadow:
    0 12px 36px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.15);
  border-color: rgba(77,184,218,0.35);
}

.breed-box h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== CHIPS ===== */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.88);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: default;
}

.chips span:hover {
  background: rgba(77,184,218,0.25);
  color: #ffffff;
  border-color: rgba(77,184,218,0.50);
}

.breed-box.cats .chips span {
  background: rgba(180,160,255,0.12);
  color: rgba(220,210,255,0.90);
  border-color: rgba(180,160,255,0.20);
}

.breed-box.cats .chips span:hover {
  background: rgba(180,160,255,0.28);
  color: #ffffff;
  border-color: rgba(180,160,255,0.45);
}

.breed-box.cats h3 {
  color: #ffffff;
}

/* Responsive */
@media(max-width: 1100px) {
  .breed-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 600px) {
  .breed-grid { grid-template-columns: 1fr; }
  .memorial-header h2 { font-size: 40px; padding: 22px 40px 16px; }
}
.jewelry-clean {
  padding: 100px 6%;
  background:
    radial-gradient(circle at top left, #f2f7ff, transparent 60%),
    radial-gradient(circle at bottom right, #f8f3ff, transparent 60%),
    #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #193D70;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 80px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #6ECFE8, #254F8A);
  display: block;
  margin: 18px auto 0;
  border-radius: 2px;
}

.jewelry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px;
}

.jewelry-box {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border-radius: 28px;
  padding: 28px;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform .45s ease, box-shadow .45s ease;
  overflow: hidden;
}

.jewelry-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(110,207,232,.18), transparent 60%);
  opacity: 0;
  transition: opacity .45s ease;
}

.jewelry-box:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.14);
}

.jewelry-box:hover::before {
  opacity: 1;
}

.jewelry-box h3 {
  font-size: 20px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jewelry-box h3::after {
  content: "↗";
  font-size: 14px;
  opacity: .4;
}

.items {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}

.items img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  background: linear-gradient(180deg, #f5f7fa, #ffffff);
  border-radius: 18px;
  padding: 10px;
  transition: transform .4s ease, box-shadow .4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.items img:hover {
  transform: scale(1.12) rotate(-1deg);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  z-index: 2;
}
.extras-clean {
  padding: 80px 6%;
  background: #193D70;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #193D70;
}

.extras-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
}

/* GRID 2x2 */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* CARD */
.extra-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 12px rgba(255,255,255,0.25),
    0 16px 40px rgba(0,0,0,0.12);
  transition: transform .3s ease, box-shadow .3s ease;
}


.extra-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(0,0,0,0.18);
}

/* IMAGEN – TODAS IGUALES */
.extra-card img {
  width: 100%;
  height: 260px;      /* 👈 aquí ajustas tamaño */
  object-fit: cover;
}

/* CONTENIDO */
.extra-content {
  padding: 22px;
  text-align: center;
}

.extra-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.extra-content small {
  display: block;
  margin-bottom: 8px;
  color: #7a8ca6;
}

.price {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 16px;
  background: #4DB8DA;
  color: #ffffff;
  border-radius: 14px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .extras-grid {
    grid-template-columns: 1fr;
  }
}
.velacion-section {
  padding: 90px 6%;
  background: linear-gradient(135deg, #0f2d55 0%, #193D70 50%, #1e4d8a 100%);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Patita decorativa — esquina superior derecha */
.velacion-section::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  top: -50px;
  right: -40px;
  background: url('../img/patita-nube.png') no-repeat center/contain;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

/* Patita decorativa — esquina inferior izquierda, rotada */
.velacion-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: -30px;
  left: -30px;
  background: url('../img/patita-nube.png') no-repeat center/contain;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  transform: rotate(180deg);
}

.velacion-card {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.15);
}

/* IMAGEN */
.velacion-image {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #4DB8DA;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 14px;
  font-size: 13px;
  z-index: 1;
}

/* CONTENIDO — glassmorphism */
.velacion-content {
  padding: 50px 50px 50px 40px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-left: 1px solid rgba(255, 255, 255, 0.20);
  color: #ffffff;
}

.velacion-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.velacion-content h3 {
  margin-bottom: 14px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.includes {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.includes li {
  padding: 6px 0;
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.includes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7dd8f0;
  font-weight: bold;
}

/* PRECIOS */
.price-table h4 {
  margin-bottom: 16px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.prices div {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s ease;
}

.prices div:hover {
  background: rgba(255, 255, 255, 0.18);
}

.prices span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.prices strong {
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .velacion-card {
    grid-template-columns: 1fr;
  }

  .velacion-content {
    padding: 40px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
  }
}
.memorial-breeds .urnas-subtitle,
.urnas-section .urnas-subtitle,
.memorial-breeds .memorial-header,
.urnas-section .memorial-header {
    color: #ffffff;
}
.memorial-breeds .memorial-header h2,
.memorial-breeds .memorial-header p,
.urnas-section .memorial-header h2,
.urnas-section .memorial-header p {
    color: #ffffff;
}
/* Dropdown base */
.nav-item.dropdown {
    position: relative;
}

/* Menú oculto */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 240px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 8px 0;
    display: none;
    z-index: 999;
}

/* Items del dropdown */
.dropdown-menu-custom a {
    display: block;
    padding: 10px 18px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease;
}

/* Hover item */
.dropdown-menu-custom a:hover {
    background-color: #f3f3f3;
}

/* Mostrar dropdown al hover */
.nav-item.dropdown:hover .dropdown-menu-custom {
    display: block;
}
html {
    scroll-behavior: smooth;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo img {
    height: 48px; /* mismo alto visual que el texto */
    width: auto;
    object-fit: contain;
}

.brand-logo h1 {
    font-size: 2.5rem;
    line-height: 1;
    margin: 0;
    font-weight: 700;
}
.memorial-pets-btn {
  background: #4DB8DA;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(77, 184, 218, 0.35);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.memorial-pets-btn::before {
  content: none;
}

.memorial-pets-btn:hover::before {
  content: none;
}

.memorial-pets-btn:hover {
  background: #3aa8cc;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(77, 184, 218, 0.45);
}

.memorial-pets-btn:active {
  transform: scale(0.97);
  box-shadow: 0 6px 14px rgba(77, 184, 218, 0.3);
}
.memorial-pets-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.memorial-pets-btn {
  display: block;
  margin: 0 auto;
}
.memorial-btn {
  display: block;
  margin: 0 auto;
}

.memorial-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 42px;
  margin: 32px auto;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #ffffff;
  background-color: #4DB8DA; /* azul oscuro real */

  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}
.memorial-btn:hover {
  background-color: #0089b3;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.memorial-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}
.memorial-btn {
  display: block;
  margin: 32px auto;
}

.mp-btn-primary {
  font-size: 1.15rem;   /* súbelo a 1.2rem si lo quieres más notorio */
  font-weight: 600;
}

.mp-btn-primary {
  font-size: 1.15rem !important;   /* ajusta a 1.2rem si lo quieres más grande */
  font-weight: 600 !important;
  transition: all 0.25s ease !important;
}

.mp-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25) !important;
  filter: brightness(1.05) !important;
}

/* ======= URNAS SECTION FIX PROFESIONAL ======= */

.urnas-section {
  text-align: center;
}

/* Asegura que el header esté perfectamente centrado */
.urnas-header h2,
.urnas-header strong {
  text-align: center !important;
  color: rgb(255, 255, 255) !important;
}
.mp-weight span,
.mp-weight strong {
    color: #000000 !important;
}


.extras-clean h2,
.extras-clean strong {
  text-align: center !important;
  color: white !important;
}

/* Mejor distribución del grid */
.urnas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

/* Cards más equilibradas */
.urna-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 22px;
}

/* Imagen consistente */
.urna-card img {
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Nombre de la urna */
.urna-card h6 {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  margin: 8px 0;
  min-height: 48px; /* evita que unas cards queden más altas que otras */
}

/* Código modelo */
.code {
  margin-top: auto;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}

.mega-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    width: 720px;
    padding: 40px 60px;

    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0,0,0,0.18);

    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    z-index: 9999;
}

/* Mostrar al hover */
.mega-dropdown:hover .mega-menu {
    display: grid;
}

/* Columnas */
.mega-column h6 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #193D70;
    font-weight: 600;
}

.mega-column a {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-column a:hover {
    color: #4DB8DA;
    transform: translateX(6px);
}

/* Línea divisora */
.mega-menu::before {
    content: "";
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 1px;
    background: #e6eef5;
}

.mega-column {
    text-align: left !important;
}

.mega-column h6 {
    margin: 0 0 20px 0 !important;
    text-align: left !important;
}