:root{
  --red: #8C0F2A;         /* similar a la captura */
  --orange: #F08A00;      /* barra naranja */
  --orange-dark: #DA7D00;
  --text: #333;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --card-shadow: 0 10px 18px rgba(0,0,0,.12);
  --card-radius: 6px;
}

/* Tipografía: sin cargar fuentes externas para que sea portable.
   Si quieres lo hacemos idéntico con las fonts reales. */
body{
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
}

/* ===== TOP BAR ROJA (sticky) ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 64px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.brand__logo{
  font-weight: 700;
  color: #fff;
  letter-spacing: .2px;
  font-size: 20px;
}

.topbar__right{
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__icon{
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.topbar__burger{
  width: 38px;
  height: 28px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}
.topbar__burger span{
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* ===== SUBBAR NARANJA (pegada a la derecha) ===== */
/* ===== SUBBAR (fondo blanco) + BLOQUE NARANJA pegado a la derecha ===== */
.subbar{
  width: 100%;
  height: 64px;           /* deja la franja blanca debajo del rojo */
  background: #fff;
  display: flex;
  justify-content: flex-end; /* todo a la derecha */
  align-items: flex-end;     /* el bloque naranja se pega abajo */
  padding: 0;                /* IMPORTANTÍSIMO: sin padding para que pegue al borde */
}

/* El “bloque” naranja (no full width) */
.subbar__block{
  height: 44px;
  background: var(--orange);
  display: flex;
  align-items: center;

  /* En la imagen: redondeado del lado izquierdo y pegado al borde derecho */
  border-radius: 8px 0 0 8px;

  /* Pegado al borde derecho */
  margin-right: 0;

  /* Espaciado interno similar */
  padding: 0 22px;
}

.subbar__nav{
  display: flex;
  align-items: center;
  gap: 28px;
  height: 44px;
}

.subbar__link{
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 44px;
  padding: 0 2px;
  opacity: .98;
  white-space: nowrap;
}
.subbar__link.is-active{
  opacity: 1;
}

.subbar__link.is-active{
  opacity: 1;
}

/* ===== HERO ===== */
.page{ width: 100%; }

.hero{
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 520px;
  background: #fff;
}

.hero__media{
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
}
.hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content{
  padding: 28px 34px;
}

.hero__kicker{
  font-size: 14px;
  font-weight: 800;
  color: var(--orange-dark);
  letter-spacing: .2px;
  margin-bottom: 8px;
}

.hero__title{
  margin: 0 0 30px 0;
  font-size: 44px;
  font-weight: 800;
  color: #2a2a2a;
}

.hero__text{
  margin: 0 0 20px 0;
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgb(107 114 128 / 1);
}

.hero__actions{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

/* Select estilo "pill" */
.select{
  position: relative;
  width: 240px;
}
.select__btn{
  width: 100%;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #333;
}
.select__menu{
  position: absolute;
  top: 44px;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  display: none;
}
.select.is-open .select__menu{ display: block; }

.select__item{
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  font-size: 13px;
}
.select__item:hover{
  background: #f4f4f4;
}

.btn{
  height: 38px;
  padding: 0 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

.btn--orange{
  background: var(--orange);
  color: #fff;
}
.btn--orange:hover{ background: var(--orange-dark); }

/* ===== THEMES (bloque naranja) ===== */
.themes{
  width: 100%;
  background: var(--orange);
  padding: 35px 0 35px 0;
}

.themes__head{
  text-align: center;
  color: #fff;
  padding: 0 18px 18px 18px;
}

.themes__headTitle{
  font-weight: 900;
  font-size: 24px;
  letter-spacing: .3px;
}

.themes__headText{
  margin-top: 8px;
  font-size: 1.40rem;
  opacity: .95;
  width: 70%;
  margin: 20px auto 20px;
}

.themes__grid{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 330px);
  gap: 26px;
  justify-content: center;
  align-items: start;
  position: relative;
}

.themeCard{
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.themeCard__img{
  width: 100%;
  height: 300px;
  background: #f2f2f2;
}
.themeCard__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themeCard__label{
  padding: 10px 0 12px 0;
  text-align: center;
  font-weight: 800;
  color: var(--red);
  font-size: 18px;
}

/* cuarta tarjeta centrada abajo como en la captura */
.themeCard--center{
  grid-column: 2;
  margin-top: -8px;
}

/* ===== PAQUETES ===== */
.packages{
  width: 100%;
  background: #fff;
  padding: 28px 0 20px 0;
}

.packages__title{
  text-align: center;
  color: var(--red);
}

.packages__small{
  display: block;
  font-weight: 800;
  font-size: 14px;
  color: var(--orange-dark);
  margin-bottom: 6px;
}

.packages__title h2{
  margin: 0;
  font-size: 30px;
  font-weight: 900;
}

.packages__grid{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 420px);
  gap: 28px;
  justify-content: center;
  padding: 22px 18px 0 18px;
}

.packageCard{
  background: #fff;
  border-radius: 4px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.packageCard__img{
  width: 100%;
  height: 300px;
  background: #eee;
}
.packageCard__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.packageCard__body{
  padding: 14px 14px 16px 14px;
}

.packageCard__name{
  font-weight: 900;
  color: var(--red);
  font-size: 20px;
  text-align: center;
  padding-bottom: 15px;
}

.packageCard__sub{
  text-align: center;
  font-size: 1.25rem;
  margin-top: 4px;
  color: #666;
}

.packageCard__prices{
  margin-top: 10px;
  font-size: 1.25rem;
  color: #444;
  line-height: 1.45;
  text-align: center;
}

.packageCard__include{
  margin-top: 10px;
  padding-top: 10px;
  font-weight: 900;
  color: var(--red);
}

.packageCard__list{
  margin-top: 10px;
  font-size: 1.25rem;
  color: #555;
}
.packageCard__list li{
  padding-left: 14px;
  position: relative;
  margin: 7px 0;
}
.packageCard__list li::before{
  content: "•";
  position: absolute;
  left: 2px;
  top: 0;
  color: var(--orange-dark);
  font-weight: 900;
}

.packageCard__note{
  margin-top: 25px;
  font-size: 14px;
  color: #888;
  line-height: 1.4;
}

/* ===== EXTRAS ===== */
.extras{
  width: 100%;
  padding: 22px 18px 26px 18px;
}

.extras__title{
  margin: 0;
  text-align: center;
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.extras__subtitle{
  text-align: center;
  margin-top: 6px;
  font-size: 1.25rem;
  color: #666;
}

.extras__grid{
  width: 100%;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.extraItem{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.extraItem__icon{
  color: var(--red);
  font-size: 22px;
  line-height: 1;
}

.extraItem__h{
  font-weight: 900;
  color: var(--red);
  font-size: 14px;
}

.extraItem__p{
  font-size: 1.25rem;
  color: #666;
  line-height: 1.45;
}

.extraItem__list{
  font-size: 1.25rem;
  color: #666;
}
.extraItem__list li{
  margin: 6px 0;
}

/* ===== CONTACTO (bloque rojo + imagen pastel) ===== */
.contact{
  width: 100%;
  background: var(--red);
  color: #fff;
  padding: 20px 18px;
}

.contact__row{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: start;
}

.contact__title{
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 10px;
}

.contact__label{
  font-weight: 800;
  font-size: 1.25rem;
  opacity: .95;
  margin-top: 10px;
}

.contact__value{
  font-size: 1.25rem;
  opacity: .95;
  margin-top: 6px;
}

.contact__banner{
  width: 100%;
  min-height: 160px;
  border-radius: 6px;
  background: url("../assets/cake-bg.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 18px;
}

.contact__bannerText{
  font-weight: 900;
  font-size: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.btn--wa{
  width: 220px;
  background: #1bbf5c;
  color: #fff;
  border-radius: 22px;
}
.btn--wa:hover{ filter: brightness(.95); }

/* ===== FOOTER ===== */
.footer{
  width: 100%;
  background: #fff;
  padding: 16px 18px 22px 18px;
}

.footer__partners{
  display: flex;
  justify-content: center;
  padding: 8px 0 10px 0;
}
.footer__partners img{
  max-height: 44px;
  width: auto;
}

.footer__links{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 11px;
  color: #777;
  padding-top: 10px;
}

.footer__bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #777;
  padding-top: 12px;
}

.footer__social{
  letter-spacing: 6px;
}

/* ===== Responsive mínimo (sin “blog look”) ===== */
@media (max-width: 1100px){
  .hero{
    grid-template-columns: 1fr;
  }
  .hero__media{
    height: 340px;
  }

  .themes__grid{
    grid-template-columns: repeat(2, 220px);
  }
  .themeCard--center{
    grid-column: auto;
    margin-top: 0;
  }

  .packages__grid{
    grid-template-columns: repeat(2, 320px);
  }

  .extras__grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__row{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px){
  .subbar{
    overflow-x: auto;
    justify-content: flex-end;
  }
  .subbar__nav{
    gap: 14px;
    white-space: nowrap;
  }

  .themes__grid{
    grid-template-columns: 1fr;
  }

  .packages__grid{
    grid-template-columns: 1fr;
  }

  .extras__grid{
    grid-template-columns: 1fr;
  }

  .hero__title{
    font-size: 34px;
  }
}

.heroimage{
  border-top-right-radius: 60%;
  border-top-left-radius: 30%;
  border-bottom-right-radius: 60%;
  border-bottom-left-radius: 30%;
  background-color: #fff;
}

/* =========================
   SERVICIOS ADICIONALES
========================= */
.extras{
  background:#fff;
  padding:64px 0 72px;
}

.extras__inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 28px;
}

.extras__head{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-bottom:34px;
}

.extras__badge{
  width:44px;
  height:44px;
  flex:0 0 44px;
  margin-top:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.extras__badgeSvg{
  width:44px;
  height:44px;
  fill:#9b0035; /* rojo vino */
}

.extras__title{
  font-size:56px;
  line-height:1.05;
  margin:0;
  color:#9b0035;
  font-weight:800;
  letter-spacing:-0.5px;
}

.extras__subtitle{
  margin:8px 0 0;
  font-size:18px;
  line-height:1.45;
  color:#6b6b6b;
  max-width:980px;
}

.extras__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:120px;
  row-gap:46px;
}

.extras__item{
  display:flex;
  align-items:flex-start;
  gap:18px;
}

.extras__icon{
  width:56px;
  height:56px;
  flex:0 0 56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.extras__iconSvg{
  width:56px;
  height:56px;
  fill:#9b0035;
}

.extras__content{
  min-width:0;
}

.extras__h{
  margin:2px 0 8px;
  font-size:34px;
  line-height:1.1;
  color:#2b2b2b;
  font-weight:800;
}

.extras__p{
  margin:0;
  font-size:16px;
  line-height:1.5;
  color:#6b6b6b;
}

.extras__list{
  margin:10px 0 0;
  padding:0;
  list-style:none;
}

.extras__list li{
  position:relative;
  padding-left:18px;
  margin:8px 0;
  font-size:16px;
  color:#6b6b6b;
  line-height:1.35;
}

.extras__list li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.55em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#9b0035;
  transform:translateY(-50%);
}

.extras__note{
  margin:10px 0 0;
  color:#6b6b6b;
  font-size:14px;
  line-height:1.45;
}

.extras__note em{
  font-style:italic;
}

.extras__note strong{
  letter-spacing:0.3px;
}

/* Responsive */
@media (max-width: 980px){
  .extras__title{ font-size:44px; }
  .extras__grid{
    grid-template-columns:1fr;
    column-gap:0;
    row-gap:28px;
  }
}

@media (max-width: 560px){
  .extras{ padding:44px 0 54px; }
  .extras__inner{ padding:0 18px; }
  .extras__title{ font-size:36px; }
  .extras__h{ font-size:28px; }
  .extras__subtitle{ font-size:16px; }
}

/* =========================
   CONTACTO (igual a la imagen)
========================= */
.contact{
  /* color vino/morado de la captura */
  background: #7a4a58;
  color: #fff;
  width: 100%;
  padding: 54px 0 60px;
}

.contact__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */
.contact__head{
  display:flex;
  align-items:center;
  gap: 18px;
  margin-bottom: 32px;
}

.contact__headIcon{
  position: relative;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
}

/* círculo translúcido detrás (como la captura) */
.contact__headIcon::before{
  content:"";
  position:absolute;
  left: 6px;
  top: 6px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}

.contact__headSvg{
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  fill: none;
  stroke: #f2b23d;            /* amarillo lineal */
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__title{
  margin: 0;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.6px;
}

/* Grid 2 columnas */
.contact__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 90px;
  row-gap: 40px;
  align-items:start;
}

/* Cada columna */
.contact__col{
  display:flex;
  flex-direction: column;
  min-height: 260px;
}

.contact__colHead{
  display:flex;
  align-items:flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

/* Badge circular detrás del icono */
.contact__badge{
  position: relative;
  width: 74px;
  height: 54px;
  flex: 0 0 74px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* cápsula/círculo translúcido (como la captura) */
.contact__badge::before{
  content:"";
  position:absolute;
  left: 6px;
  top: 6px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}

.contact__badgeSvg{
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  fill:none;
  stroke:#f2b23d;
  stroke-width: 3.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.contact__colTitle{
  font-size: 34px;
  font-weight: 900;
  margin-top: 6px;
}

.contact__address{
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.35;
  opacity: .95;
}

/* líneas con iconos */
.contact__lines{
  margin-top: 14px;
  display:flex;
  flex-direction: column;
  gap: 14px;
}

.contact__line{
  display:flex;
  align-items:center;
  gap: 12px;
  font-size: 26px;            /* grande como en la captura */
  font-weight: 800;
  letter-spacing: .1px;
}

.contact__miniIcon{
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.contact__miniSvg{
  width: 28px;
  height: 28px;
  fill:none;
  stroke:#fff;
  stroke-width: 3.0;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.contact__miniIcon--wa{
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}
.contact__miniSvg--wa{
  width: 30px;
  height: 30px;
  /* el de whatsapp en la captura se ve verde, aquí lo simulamos con un “halo” */
  filter: drop-shadow(0 0 0 rgba(0,0,0,0));
}

.contact__textLink{
  color:#fff;
  text-decoration:none;
  opacity: .98;
}
.contact__textLink:hover{
  text-decoration: underline;
}

/* Botones naranjas centrados */
.contact__cta{
  margin-top: auto;           /* empuja el botón hacia abajo como en la captura */
  padding-top: 30px;
  display:flex;
  justify-content:center;
}

.contact__btn{
  width: 520px;               /* largos como en la imagen */
  max-width: 100%;
  height: 56px;
  border-radius: 8px;
  background: var(--orange);
  color:#fff;
  font-weight: 900;
  font-size: 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.contact__btn:hover{ background: var(--orange-dark); }

/* Responsive */
@media (max-width: 980px){
  .contact__title{ font-size: 44px; }
  .contact__grid{
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .contact__line{ font-size: 22px; }
  .contact__btn{ width: 420px; }
}

@media (max-width: 560px){
  .contact{ padding: 38px 0 44px; }
  .contact__inner{ padding: 0 18px; }
  .contact__title{ font-size: 36px; }
  .contact__colTitle{ font-size: 28px; }
  .contact__address{ font-size: 16px; }
  .contact__line{ font-size: 18px; }
  .contact__btn{ width: 100%; }
}
