:root {
  --primary: #d8c4cc;
  --primary-dark: #6f696b;
  --secondary: #615674;
  --dark: #12121a;
  --dark-2: #1c1c28;
  --text: #f7f7fb;
  --muted: #c9c9d6;
  --white: #ffffff;
  --bg-soft: #f5f1f8;
  --card: rgba(255,255,255,0.08);
  --shadow: 0 20px 50px rgba(0,0,0,.18);
  --radius: 22px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(92%, var(--max)); margin: 0 auto; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
  border: 0;
  cursor: pointer;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline { border: 2px solid rgba(155, 155, 155, 0.75); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #a29e9e;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(18,18,26,.82);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .03em;
}
.logo span { color: #ff8ec1; }
.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav a {
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  opacity: .92;
}
.nav a:hover, .nav a.active { color: #ff9ac7; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.4rem;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .15rem;
  padding: 0 0 1rem;
}
.mobile-menu a {
  color: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  font-weight: 600;
}
.mobile-menu.open { display: flex; }

.hero{
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 20px;
  color: white;

  background:
  linear-gradient(rgba(218, 208, 222, 0.6), rgba(199, 148, 216, 0.6)),
  url("../img/hero-despedida22.jpg");

  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.25));
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 82vh;
  display: grid;
  align-items: center;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  padding: 60px 0;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin: 1rem 0;
}
.hero p {
  font-size: 1.08rem;
  color: #fafafa;
  max-width: 650px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}
.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 1.4rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}
.metric {
  background: rgba(255,255,255,.08);
  padding: 1rem;
  border-radius: 20px;
  text-align: center;
}
.metric strong { display: block; font-size: 1.55rem; }
.metric span { color: #f6dff0; font-size: .92rem; }

section { padding: 78px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 2.4rem; }
.section-head h2 { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; margin-bottom: .8rem; }
.section-head p { color: #666; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  border: 1px solid #f0ebf5;
}
.card-media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(255,45,122,.20), rgba(124,58,237,.25)), url('../img/card.svg') center/cover no-repeat;
}
.card-body { padding: 1.35rem; }
.card-body h3 { margin-top: 0; margin-bottom: .5rem; }
.card-body p { color: #666; margin-bottom: 1rem; }
.price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: .8rem;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
}
.info-box {
  background: linear-gradient(180deg,#fff,#fcf9ff);
  border: 1px solid #eee5f5;
  padding: 1.3rem;
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(0,0,0,.04);
}
.info-box h3 { margin: .2rem 0 .4rem; }
.info-box p { color: #666; margin: 0; }
.cta-band {
  background: linear-gradient(135deg, var(--dark), #281743 60%, var(--primary) 140%);
  color: #fff;
  border-radius: 30px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.page-hero {
  background: linear-gradient(135deg, #140f26, #3b1b5a 55%, #ff2d7a 135%);
  color: #fff;
  padding: 90px 0 70px;
}
.page-hero h1 { font-size: clamp(2.1rem, 4vw, 4rem); margin: .7rem 0; }
.page-hero p { color: #f0e8f8; max-width: 780px; }
.two-col {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: start;
}
.panel {
  background: #fff;
  border: 1px solid #f0ebf5;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.panel ul { margin: 0; padding-left: 1.1rem; }
.panel li + li { margin-top: .6rem; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}
input, textarea, select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid #ddd4e9;
  font: inherit;
  background: #fff;
}
textarea { min-height: 150px; resize: vertical; }
.footer {
  background: #11111a;
  color: #fff;
  padding: 28px 0;
  margin-top: 50px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer p { margin: 0; color: #cfcfe0; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.kicker { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .84rem; }
.blog-list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.3rem;
}
.blog-card { background: #fff; border-radius: 22px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,.08); }
.blog-card .card-media { aspect-ratio: 16/9; }
.blog-card .card-body small { color: #8a8197; display:block; margin-bottom:.5rem; }
.map-embed { border: 0; width: 100%; min-height: 320px; border-radius: 24px; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 15px 25px rgba(0,0,0,.18);
  font-weight: 800;
}

@media (max-width: 1024px) {
  .hero-inner, .two-col, .cards, .blog-list, .info-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
  .hero-card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero-inner, .two-col, .cards, .blog-list, .info-grid, .contact-grid, .form-grid { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; padding: 40px 0 60px; }
  .cta-band, .footer-inner { flex-direction: column; align-items: flex-start; }
  .section-head { margin-bottom: 1.6rem; }
  .hero h1 { font-size: clamp(2rem, 10vw, 3.3rem); }
  section { padding: 62px 0; }
}

@media (max-width: 540px) {
  .container { width: min(94%, var(--max)); }
  .nav-wrap { min-height: 72px; }
  .hero p, .page-hero p { font-size: 1rem; }
  .btn { width: 100%; }
  .hero-buttons { flex-direction: column; }
  .whatsapp-float { left: 14px; right: 14px; text-align: center; }
}
.card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.servicios{
  padding: 120px 20px;
  text-align: center;
  color: #fff;

  background:
    linear-gradient(rgba(105, 101, 107, 0.78), rgba(221, 179, 249, 0.78)),
    url("../img/despedidas-sevilla1.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.servicios-titulo{
  font-size: 32px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #f3dff0;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-head h2{
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0,0,0,0.45);
}

.section-head p{
  font-size: 22px;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px){
  .servicios-titulo{
    font-size: 22px;
    letter-spacing: 2px;
  }

  .section-head h2{
    font-size: 42px;
  }

  .section-head p{
    font-size: 18px;
  }
}

.section-head h2{
font-size:42px;
margin-bottom:20px;
}

.section-head p{
font-size:18px;
opacity:0.9;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.card{
background:rgb(255, 255, 255);
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.card-img img{
width:100%;
height:220px;
object-fit:cover;
}

.card-content{
padding:25px;
color:#fffcfc;
}

.card-content h3{
margin-bottom:10px;
}

.card-content p{
margin-bottom:20px;
}

.btn-card{
display:inline-block;
padding:10px 20px;
background:#fffdff;
color:white;
border-radius:25px;
text-decoration:none;
font-weight:600;
}
.cta-sevilla{

padding:140px 20px;
text-align:center;
color:white;


background:
linear-gradient(rgba(101, 101, 101, 0.75), rgba(169, 169, 169, 0.75)),
url("../img/despedidas-sevilla11234.jpg");

background-size:cover;
background-position:center;
background-repeat:no-repeat;

}

.cta-content{
max-width:800px;   /* antes 900 */
margin:auto;
}

.cta-social{
letter-spacing:4px;
font-size:13px;
opacity:0.8;
margin-bottom:15px;
}

.cta-redes{
display:flex;
justify-content:center;
gap:30px;
margin-bottom:25px;
flex-wrap:wrap;
}

.cta-redes a{
color:white;
text-decoration:none;
letter-spacing:3px;
font-size:13px;
}

.cta-sevilla h2{
font-size:40px;
margin-bottom:15px;
}

.cta-text{
font-size:18px;
line-height:1.6;
opacity:0.9;
}
/* OPTIMIZACIÓN MÓVIL GENERAL */

@media (max-width: 768px){

.container{
padding:0 20px;
}

h1{
font-size:34px;
line-height:1.2;
}

h2{
font-size:28px;
line-height:1.2;
}

p{
font-size:16px;
}

/* tarjetas */

.cards{
grid-template-columns:1fr;
gap:20px;
}

/* imágenes */

.card-img img{
width:100%;
height:auto;
}

/* stats botones */

.stats-box{
grid-template-columns:1fr;
gap:15px;
}

/* sección fondo */

.cta-sevilla{
padding:60px 20px;
}

.cta-sevilla h2{
font-size:32px;
}
}
.despedidas-opciones{
background:#757474;
padding:100px 20px;
text-align:center;
color:white;
}

.despedidas-opciones h2{
font-size:36px;
margin-bottom:60px;
}

.opciones-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;
max-width:1100px;
margin:auto;
}

.opcion{
position:relative;
display:block;
overflow:hidden;
border-radius:6px;
text-decoration:none;
color:white;
}

.opcion img{
width:100%;
height:420px;
object-fit:cover;
transition:0.4s;
}

.opcion:hover img{
transform:scale(1.08);
}

.opcion-top{
position:absolute;
top:0;
left:0;
width:100%;
background:rgba(255,255,255,0.7);
color:#333;
font-weight:bold;
padding:15px;
letter-spacing:2px;
}

.opcion-bottom{
position:absolute;
bottom:0;
left:0;
width:100%;
background:rgba(255,255,255,0.7);
color:#333;
font-weight:bold;
padding:15px;
letter-spacing:2px;
}
.texto-seo{

max-width:900px;
margin:60px auto;

font-size:19px;
line-height:1.8;

color:#f5f5f5;
text-align:center;

letter-spacing:0.3px;

padding:0 20px;

font-weight:300;

}
/* =========================
   PACKS DESTACADOS ELEGANTE
========================= */

.packs-destacados{
  background:#1f2024;
  padding:90px 20px;
  color:#f2f2f2;
  text-align:center;
}

.packs-destacados .container{
  max-width:1280px;
  margin:0 auto;
}

.packs-destacados h2{
  font-size:38px;
  line-height:1.2;
  margin-bottom:18px;
  color:#ffffff;
  font-weight:600;
  letter-spacing:0.5px;
}

.packs-grid{
  max-width: 1450px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.packs-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(280px,1fr));
  gap:28px;
}

.pack-card{
  background:#2a2c31;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,0.22);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
  display:flex;
  flex-direction:column;
}

.pack-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 30px rgba(0,0,0,0.28);
}

.pack-header{
  background:#bfc3c9;
  color:#22252b;
  padding:18px 14px;
  font-size:16px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
}

.pack-price{
  font-size:54px;
  line-height:1;
  font-weight:700;
  color:#d7dbe0;
  padding:26px 16px 22px;
  background:#2a2c31;
}

.pack-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.pack-card p{
  padding:24px 24px 10px;
  margin:0;
  font-size:16px;
  line-height:1.75;
  color:rgba(255,255,255,0.85);
  flex-grow:1;
}

.btn-pack{
  display:inline-block;
  margin:22px auto 28px;
  padding:12px 24px;
  background:#c9cdd3;
  color:#202329;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.5px;
  border-radius:999px;
  transition:all 0.25s ease;
}

.btn-pack:hover{
  background:#e0e3e7;
  transform:translateY(-2px);
}

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

/* MÓVIL */
@media (max-width:768px){
  .packs-destacados{
    padding:70px 16px;
  }

  .packs-destacados h2{
    font-size:30px;
  }

  .packs-intro{
    font-size:16px;
    margin-bottom:30px;
  }

  .packs-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .pack-header{
    font-size:15px;
    padding:16px 12px;
  }

  .pack-price{
    font-size:44px;
    padding:22px 14px 18px;
  }

  .pack-card img{
    height:210px;
  }

  .pack-card p{
    font-size:15px;
    padding:20px 18px 8px;
  }

  .btn-pack{
    width:calc(100% - 36px);
    text-align:center;
    margin:18px auto 22px;
  }
}
/* SECCION SEVILLA */

.sevilla-info{
background: linear-gradient(135deg,#73588a,#5c4774);
padding:100px 20px;
color:white;
}

.sevilla-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.sevilla-texto h2{
font-size:42px;
line-height:1.2;
margin-bottom:20px;
}

.sevilla-texto span{
background:#f6edc9;
color:#222;
padding:6px 10px;
border-radius:4px;
}

.sevilla-texto p{
font-size:18px;
line-height:1.8;
margin-bottom:20px;
opacity:0.9;
}

.boton-sevilla{
display:inline-block;
margin-top:10px;
background:#b6af93;
color:#222;
padding:14px 30px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
}

.boton-sevilla:hover{
opacity:0.9;
}

.sevilla-img img{
width:100%;
border-radius:12px;
}

/* RESPONSIVE */

@media (max-width:900px){

.sevilla-container{
grid-template-columns:1fr;
}

.sevilla-texto h2{
font-size:32px;
}

}
.texto-seo{
max-width:1400px;
margin:40px auto;
text-align:center;
font-size:20px;
line-height:1.8;
color:#f2f2f2;
}
.faq-despedidas{
  background:#f5f5f5;
  padding:100px 20px;
}

.faq-head{
  max-width:900px;
  margin:0 auto 50px;
  text-align:center;
}

.faq-mini-title{
  font-size:14px;
  letter-spacing:3px;
  font-weight:700;
  color:#8a8a8a;
  margin-bottom:15px;
}

.faq-head h2{
  font-size:42px;
  line-height:1.2;
  margin-bottom:20px;
  color:#222;
}

.faq-head p{
  font-size:18px;
  line-height:1.7;
  color:#555;
}

.faq-accordion{
  max-width:1000px;
  margin:0 auto;
}

.faq-item{
  background:#ffffff;
  border-radius:16px;
  margin-bottom:18px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.06);
  border:1px solid rgba(0,0,0,0.05);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  padding:24px 28px;
  font-size:24px;
  font-weight:700;
  color:#222;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.faq-icon{
  font-size:28px;
  font-weight:400;
  color:#ff4fa3;
  margin-left:20px;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease;
}

.faq-answer p{
  padding:0 28px 24px;
  margin:0;
  font-size:17px;
  line-height:1.8;
  color:#555;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
}

@media (max-width:768px){
  .faq-despedidas{
    padding:70px 16px;
  }

  .faq-head h2{
    font-size:30px;
  }

  .faq-head p{
    font-size:16px;
  }

  .faq-question{
    font-size:20px;
    padding:20px;
  }

  .faq-answer p{
    padding:0 20px 20px;
    font-size:15px;
  }
}
.seo-sevilla{
padding:100px 20px;
background:#f5f5f5;
}

.seo-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

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

.seo-text h2{
font-size:38px;
line-height:1.2;
margin-bottom:20px;
}

.seo-text span{
background:#cdc08f;
padding:4px 10px;
font-weight:700;
}

.seo-text p{
font-size:17px;
line-height:1.8;
margin-bottom:18px;
color:#444;
}

.seo-btn{
display:inline-block;
background:#c0baa7;
padding:14px 30px;
border-radius:40px;
font-weight:700;
text-decoration:none;
color:#000;
margin-top:10px;
}

.seo-btn:hover{
background:#ad9f72;
}

@media(max-width:900px){

.seo-container{
grid-template-columns:1fr;
gap:40px;
}

.seo-text h2{
font-size:28px;
}

}
.pack-builder{
  padding: 100px 20px;
  background: linear-gradient(180deg, #f7f7fb 0%, #f1f1f7 100%);
}

.pack-builder-container{
  max-width: 1320px;
  margin: 0 auto;
}

.pack-builder-head{
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.pack-builder-mini{
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 700;
  color: #8e8e99;
  margin-bottom: 14px;
}

.pack-builder-head h2{
  font-size: 46px;
  line-height: 1.15;
  color: #1f1f28;
  margin-bottom: 18px;
}

.pack-builder-head p{
  font-size: 18px;
  line-height: 1.8;
  color: #5f5f69;
}

.pack-builder-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.builder-personas-box{
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}

.builder-personas-box label{
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #2a2a33;
  margin-bottom: 12px;
}

.builder-personas-box input{
  width: 100%;
  height: 58px;
  border: 1px solid #dcdce7;
  border-radius: 14px;
  padding: 0 18px;
  font-size: 20px;
  background: #fafafe;
}

.builder-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.builder-tab{
  border: none;
  background: #ffffff;
  color: #31313b;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}

.builder-tab.active{
  background: linear-gradient(135deg, #ff4fa3 0%, #ff7cbc 100%);
  color: #ffffff;
}

.builder-panel{
  display: none;
}

.builder-panel.active{
  display: block;
}

.builder-accordion-item{
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.builder-accordion-title{
  width: 100%;
  border: none;
  background: #ffffff;
  color: #1f1f28;
  padding: 24px 28px;
  font-size: 22px;
  font-weight: 800;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.builder-accordion-title span{
  font-size: 30px;
  line-height: 1;
  color: #ff4fa3;
  transition: transform 0.25s ease;
}

.builder-accordion-item.active .builder-accordion-title span{
  transform: rotate(45deg);
}

.builder-accordion-content{
  display: none;
  padding: 0 22px 22px;
  flex-direction: column;
  gap: 14px;
}

.builder-accordion-item.active .builder-accordion-content{
  display: flex;
}

.builder-option{
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 16px;
  align-items: center;
  background: #f8f8fc;
  border: 1px solid #ececf4;
  border-radius: 16px;
  padding: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.builder-option:hover{
  background: #fffafd;
  border-color: rgba(255,79,163,0.35);
}

.builder-option input{
  width: 18px;
  height: 18px;
}

.builder-option-name{
  font-size: 17px;
  color: #262631;
  font-weight: 600;
}

.builder-option-price{
  font-size: 15px;
  color: #ff4fa3;
  font-weight: 800;
}

.builder-sidebar{
  position: sticky;
  top: 100px;
}

.builder-summary{
  background: #1f2027;
  color: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 35px rgba(0,0,0,0.20);
}

.builder-summary-mini{
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}

.builder-summary h3{
  font-size: 28px;
  margin-bottom: 22px;
}

.builder-selected-items{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  max-height: 360px;
  overflow: auto;
}

.builder-selected-item{
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 12px 14px;
}

.builder-selected-item-name{
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.builder-selected-item-price{
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}

.builder-empty{
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.6;
}

.builder-total{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 22px;
}

.builder-total span{
  font-size: 16px;
  color: rgba(255,255,255,0.86);
}

.builder-total strong{
  font-size: 34px;
  color: #ff6fb5;
}

.builder-btn{
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, #ff4fa3 0%, #ff7cbc 100%);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.builder-btn:hover{
  transform: translateY(-2px);
  opacity: 0.96;
}

@media (max-width: 1100px){
  .pack-builder-layout{
    grid-template-columns: 1fr;
  }

  .builder-sidebar{
    position: static;
  }
}

@media (max-width: 768px){
  .pack-builder{
    padding: 70px 16px;
  }

  .pack-builder-head h2{
    font-size: 32px;
  }

  .pack-builder-head p{
    font-size: 16px;
  }

  .builder-tab{
    width: 100%;
    text-align: center;
  }

  .builder-accordion-title{
    font-size: 18px;
    padding: 20px;
  }

  .builder-accordion-content{
    padding: 0 16px 16px;
  }

  .builder-option{
    grid-template-columns: 20px 1fr;
  }

  .builder-option-price{
    grid-column: 2 / 3;
  }

  .builder-summary{
    padding: 22px;
  }

  .builder-summary h3{
    font-size: 24px;
  }

  .builder-total strong{
    font-size: 28px;
  }
}
/* BOTÓN SOLICITAR PACK */

.builder-btn{
    width:100%;
    padding:18px 30px;
    font-size:18px;
    font-weight:600;
    color:#fff;
    border:none;
    border-radius:40px;
    cursor:pointer;

    background:linear-gradient(135deg,#ff4fa3,#ff7ab8);

    transition:all 0.25s ease;
}

.builder-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.builder-btn:active{
    transform:scale(0.97);
}
.botellas{

padding:8px 12px;
border-radius:8px;
border:1px solid #ddd;
font-size:14px;
margin-left:auto;
margin-right:10px;

}

.builder-option{

display:flex;
align-items:center;
justify-content:space-between;
background:#f4f4f4;
padding:18px;
border-radius:12px;
margin-bottom:10px;

}
.pack-builder-head{
  max-width: 980px;
  margin: 0 auto 55px;
  text-align: center;
}

.pack-builder-mini{
  display: inline-block;
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 800;
  color: #7c7c89;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.pack-builder-head h2{
  font-size: 68px;
  line-height: 1.05;
  color: #191926;
  margin-bottom: 22px;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.pack-builder-subtext{
  max-width: 860px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.7;
  color: #62626f;
  font-weight: 400;
}

@media (max-width: 768px){
  .pack-builder-head{
    margin-bottom: 38px;
  }

  .pack-builder-mini{
    font-size: 11px;
    letter-spacing: 3px;
    padding: 8px 14px;
  }

  .pack-builder-head h2{
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
  }

  .pack-builder-subtext{
    font-size: 18px;
    line-height: 1.6;
  }
}
.pack-builder-head h2{
  font-size: 52px;
  line-height: 1.1;
  color: #191926;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -1px;
}
.badge{
display:inline-block;
padding:10px 26px;
border-radius:50px;
background:linear-gradient(135deg,#ff4fa3,#ff7abf);
color:#fff;
font-weight:600;
font-size:14px;
letter-spacing:1px;
box-shadow:0 10px 30px rgba(255,80,150,0.35);
}
/* MENU MOVIL */

.mobile-menu{
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: #2f2f35;
  display: none;
  flex-direction: column;
  padding: 20px;
  z-index: 9999;
}

.mobile-menu a{
  color: white;
  padding: 15px 10px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 18px;
}

.mobile-menu a:hover{
  background: rgba(255,255,255,0.05);
}

.mobile-menu.active{
  display: flex;
}
.blog-home{
padding:90px 20px;
background:#f7f7fb;
}

.blog-title{
text-align:center;
font-size:36px;
font-weight:700;
margin-bottom:10px;
}

.blog-subtitle{
text-align:center;
max-width:700px;
margin:auto;
color:#666;
margin-bottom:50px;
}

.blog-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.blog-card{
background:white;
border-radius:14px;
overflow:hidden;
text-decoration:none;
color:#222;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
padding-bottom:25px;
}

.blog-card:hover{
transform:translateY(-5px);
}

.blog-card img{
width:100%;
height:200px;
object-fit:cover;
}

.blog-card h3{
padding:20px 20px 10px;
font-size:20px;
}

.blog-card p{
padding:0 20px;
font-size:15px;
color:#666;
}

.blog-btn{
display:inline-block;
margin:20px;
padding:10px 20px;
border:2px solid #e55aa3;
border-radius:30px;
font-size:14px;
color:#e55aa3;
}
.confianza-sevilla{
  padding:100px 20px;
  background:#f7f7f7;
}

.confianza-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  max-width:1200px;
  margin:0 auto 50px;
}

.confianza-col{
  background:#ffffff;
  border-radius:22px;
  padding:35px 30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.confianza-col h2{
  font-size:34px;
  line-height:1.2;
  margin-bottom:28px;
  color:#1f1f28;
}

.confianza-item{
  margin-bottom:24px;
}

.confianza-item:last-child{
  margin-bottom:0;
}

.confianza-item h3{
  font-size:18px;
  line-height:1.4;
  margin-bottom:8px;
  color:#222;
}

.confianza-item p{
  font-size:16px;
  line-height:1.7;
  color:#5f5f69;
  margin:0;
}

.confianza-cta{
  text-align:center;
}

.confianza-btn{
  display:inline-block;
  padding:18px 34px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  font-size:20px;
  color:#fff;
  background:linear-gradient(135deg,#f07a4f,#f25d7a);
  box-shadow:0 12px 28px rgba(240,100,90,0.25);
  transition:transform .25s ease, box-shadow .25s ease;
}

.confianza-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 34px rgba(240,100,90,0.32);
}

@media (max-width:900px){
  .confianza-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  .confianza-col{
    padding:28px 22px;
  }

  .confianza-col h2{
    font-size:28px;
  }

  .confianza-item h3{
    font-size:17px;
  }

  .confianza-item p{
    font-size:15px;
  }

  .confianza-btn{
    width:100%;
    max-width:420px;
    font-size:18px;
    padding:16px 24px;
  }
}
/* =========================
   FOOTER PRO
========================= */

.site-footer{
  background: linear-gradient(180deg, #11121a 0%, #0b0c13 100%);
  color: #ffffff;
  padding: 80px 20px 25px;
  margin-top: 80px;
}

.footer-container{
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-logo{
  display: inline-block;
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-logo span{
  color: #ff6fb5;
}

.footer-text{
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 22px;
}

.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a{
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  opacity: 0.88;
  transition: opacity .25s ease, transform .25s ease;
}

.footer-contact a:hover{
  opacity: 1;
  transform: translateX(4px);
}

.footer-links h3,
.footer-cta h3{
  font-size: 22px;
  margin-bottom: 20px;
  color: #ffffff;
}

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

.footer-links a{
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 16px;
  transition: color .25s ease, transform .25s ease;
}

.footer-links a:hover{
  color: #ff6fb5;
  transform: translateX(4px);
}

.footer-cta p{
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin-bottom: 22px;
}

.footer-btn{
  display: inline-block;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff4fa3 0%, #ff7cbc 100%);
  box-shadow: 0 12px 28px rgba(255,79,163,0.25);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.footer-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255,79,163,0.32);
  opacity: .98;
}

.footer-bottom{
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p{
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
}

.footer-mini-links{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-mini-links a{
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 15px;
  transition: color .25s ease;
}

.footer-mini-links a:hover{
  color: #ff6fb5;
}

@media (max-width: 1100px){
  .footer-top{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px){
  .site-footer{
    padding: 60px 16px 25px;
    margin-top: 60px;
  }

  .footer-top{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo{
    font-size: 28px;
  }

  .footer-text{
    font-size: 16px;
  }

  .footer-links h3,
  .footer-cta h3{
    font-size: 20px;
    margin-bottom: 14px;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}
.packs-grid{
  max-width: 1450px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 36px;
}

.pack-card{
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.pack-card-img{
  width: 100%;
  height: 290px;
  overflow: hidden;
}

.pack-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pack-card-body{
  padding: 34px 28px 30px;
}

.pack-price{
  display: block;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  color: #756d73;
  margin-bottom: 24px;
}

.pack-card-body h3{
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  color: #1f1f28;
  margin: 0 0 18px;
}

.pack-card-body p{
  font-size: 18px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 28px;
}

.pack-btn{
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg,#d8c3d8,#6e5c88);
  box-shadow: 0 10px 24px rgba(110,92,136,0.20);
}

.pack-btn:hover{
  opacity: 0.95;
  transform: translateY(-2px);
}

@media (max-width: 1100px){
  .packs-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px){
  .packs-grid{
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 16px;
  }

  .pack-card-img{
    height: 240px;
  }

  .pack-card-body{
    padding: 26px 22px 24px;
  }

  .pack-price{
    font-size: 26px;
    margin-bottom: 18px;
  }

  .pack-card-body h3{
    font-size: 22px;
  }

  .pack-card-body p{
    font-size: 16px;
    margin-bottom: 22px;
  }

  .pack-btn{
    font-size: 16px;
    padding: 14px 24px;
  }
}
.actividades-showcase{
  padding: 90px 20px;
  background: #f7f7fb;
}

.actividades-head{
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.actividades-badge{
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg,#ff4fa3,#ff7cbc);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.actividades-head h2{
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #1d1d26;
}

.actividades-head p{
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.actividades-grid{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(260px,1fr));
  gap: 28px;
}

.actividad-card{
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.actividad-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(0,0,0,0.14);
}

.actividad-img{
  height: 230px;
  overflow: hidden;
}

.actividad-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.actividad-body{
  padding: 24px 22px 24px;
}

.actividad-body h3{
  font-size: 24px;
  margin: 0 0 12px;
  color: #1f1f28;
}

.actividad-body p{
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 20px;
}

.actividad-body a{
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg,#ff4fa3,#ff7cbc);
}

.actividad-body a:hover{
  opacity: .95;
}

@media (max-width: 1200px){
  .actividades-grid{
    grid-template-columns: repeat(3, minmax(240px,1fr));
  }
}

@media (max-width: 900px){
  .actividades-grid{
    grid-template-columns: repeat(2, minmax(220px,1fr));
  }

  .actividades-head h2{
    font-size: 36px;
  }
}

@media (max-width: 640px){
  .actividades-showcase{
    padding: 70px 16px;
  }

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

  .actividad-img{
    height: 220px;
  }

  .actividades-head h2{
    font-size: 30px;
  }

  .actividades-head p{
    font-size: 16px;
  }
}
.salas-cenas{
  padding: 90px 20px;
  background: #f7f7fb;
}

.salas-head{
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.salas-badge{
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg,#ff4fa3,#ff7cbc);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.salas-head h2{
  font-size: 46px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #1d1d26;
}

.salas-head p{
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.salas-grid{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(260px,1fr));
  gap: 28px;
}

.sala-card{
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.sala-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(0,0,0,0.14);
}

.sala-img{
  height: 250px;
  overflow: hidden;
}

.sala-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sala-body{
  padding: 24px 22px 24px;
}

.sala-body h3{
  font-size: 26px;
  margin: 0 0 12px;
  color: #1f1f28;
}

.sala-body p{
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 20px;
}

.sala-body a{
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg,#ff4fa3,#ff7cbc);
}

.sala-body a:hover{
  opacity: .95;
}

@media (max-width: 1200px){
  .salas-grid{
    grid-template-columns: repeat(2, minmax(260px,1fr));
  }
}

@media (max-width: 768px){
  .salas-cenas{
    padding: 70px 16px;
  }

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

  .salas-head h2{
    font-size: 32px;
  }

  .salas-head p{
    font-size: 16px;
  }

  .sala-img{
    height: 220px;
  }
}
.discotecas-grid{
  max-width:1300px;
  margin:auto;
  padding:60px 20px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.discoteca-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  transition:.3s;
}

.discoteca-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.discoteca-img{
  height:220px;
  overflow:hidden;
}

.discoteca-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.discoteca-body{
  padding:26px;
}

.discoteca-body h3{
  font-size:22px;
  margin-bottom:10px;
  color:#222;
}

.discoteca-body p{
  color:#666;
  line-height:1.6;
}
.packs-hero{

  background:linear-gradient(135deg,#1e0c36,#6c1f5d);

  padding:120px 20px;

  text-align:left;

  color:white;

}

.packs-hero-content{

  max-width:900px;

  margin:auto;

}

.packs-badge{

  display:inline-block;

  background:linear-gradient(135deg,#ff4fa3,#ff7cbc);

  padding:10px 24px;

  border-radius:40px;

  font-weight:700;

  margin-bottom:25px;

}

.packs-hero h1{

  font-size:56px;

  line-height:1.1;

  margin-bottom:20px;

}

.packs-hero p{

  font-size:20px;

  opacity:0.9;

  line-height:1.7;

}
.actividades-grid{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(260px,1fr));
  gap: 28px;
}

.actividad-card{
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.actividad-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(0,0,0,0.14);
}

.actividad-img{
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.actividad-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.actividad-body{
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.actividad-price{
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  color: #ff4fa3;
  margin-bottom: 12px;
}

.actividad-body h3{
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 14px;
  color: #1f1f28;
}

.actividad-body p{
  font-size: 17px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 22px;
  flex-grow: 1;
}

.actividad-btn{
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg,#ff4fa3,#ff7cbc);
  text-align: center;
}

.actividad-btn:hover{
  opacity: .95;
}

@media (max-width: 1200px){
  .actividades-grid{
    grid-template-columns: repeat(3, minmax(240px,1fr));
  }
}

@media (max-width: 900px){
  .actividades-grid{
    grid-template-columns: repeat(2, minmax(220px,1fr));
  }
}

@media (max-width: 640px){
  .actividades-grid{
    grid-template-columns: 1fr;
  }

  .actividad-img{
    height: 220px;
  }

  .actividad-body h3{
    font-size: 24px;
  }

  .actividad-body p{
    font-size: 16px;
  }
}
html, body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}
.salas-privadas{
  padding: 40px 20px 80px;
}

.salas-grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.sala-card{
  background: #f3f3f5;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.sala-img{
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #e9e9ec;
}

.sala-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sala-content{
  padding: 34px 30px 34px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sala-content h3{
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 800;
  color: #1f2030;
  margin: 0 0 20px;
}

.sala-content p{
  font-size: 1.15rem;
  line-height: 1.7;
  color: #666;
  margin: 0 0 30px;
}

.activity-link{
  display: inline-block;
  align-self: flex-start;
  background: linear-gradient(135deg,#ff4fa3,#f07ab7);
  color: #fff;
  padding: 18px 34px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.activity-link:hover{
  transform: translateY(-2px);
}

@media (max-width: 991px){
  .salas-grid{
    grid-template-columns: 1fr;
  }

  .sala-content h3{
    font-size: 2.4rem;
  }

  .sala-img{
    height: 260px;
  }
}

@media (max-width: 600px){
  .salas-privadas{
    padding: 30px 16px 60px;
  }

  .sala-content{
    padding: 28px 22px 28px;
  }

  .sala-content h3{
    font-size: 2rem;
  }

  .sala-content p{
    font-size: 1.05rem;
  }

  .activity-link{
    width: 100%;
    text-align: center;
  }
}
.menus-cena{
padding:80px 20px;
background:#f5f5f7;
}

.titulo-menus{
text-align:center;
font-size:42px;
margin-bottom:60px;
}

.menus-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
}

.menu-box{
position:relative;
border-radius:25px;
overflow:hidden;
}

.menu-box img{
width:100%;
height:420px;
object-fit:cover;
display:block;
}

.menu-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
background:linear-gradient(transparent, rgba(0,0,0,0.8));
color:white;
padding:30px;
}

.menu-overlay h3{
font-size:28px;
margin-bottom:15px;
}

.menu-overlay ul{
list-style:none;
padding:0;
}

.menu-overlay li{
margin-bottom:8px;
font-size:16px;
}

@media(max-width:800px){

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

}
.reservados-discotecas{
padding:80px 20px;
background:#f5f5f7;
}

.titulo-discotecas{
text-align:center;
font-size:42px;
margin-bottom:60px;
}

.discotecas-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.discoteca-card{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
}

.discoteca-card h3{
font-size:28px;
margin-bottom:15px;
}

.precio{
font-size:24px;
font-weight:bold;
color:#ff4fa3;
margin-bottom:20px;
}

.discoteca-card ul{
list-style:none;
padding:0;
margin-bottom:25px;
}

.discoteca-card li{
margin-bottom:10px;
}

.boton-reserva{
display:inline-block;
background:linear-gradient(135deg,#ff4fa3,#ff7ab8);
color:white;
padding:15px 30px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
}

@media(max-width:900px){

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

}
.blog-home{
  padding: 90px 20px;
  background: #f5f5f7;
}

.blog-home-container{
  max-width: 1280px;
  margin: 0 auto;
}

.blog-home-head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 55px;
}

.blog-home-badge{
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg,#ff4fa3,#f29dd2);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 10px 25px rgba(255,79,163,0.18);
}

.blog-home-head h2{
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 800;
  color: #1f2030;
  margin-bottom: 18px;
}

.blog-home-head p{
  font-size: 1.15rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.blog-card{
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.10);
}

.blog-card-link{
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.blog-card-img{
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg,#f9d8e8,#d8c5f4);
}

.blog-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-content{
  padding: 28px 28px 30px;
}

.blog-card-cat{
  display: inline-block;
  font-size: 0.95rem;
  color: #8a7f92;
  margin-bottom: 16px;
}

.blog-card-content h3{
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
  color: #1f2030;
  margin: 0 0 16px;
}

.blog-card-content p{
  font-size: 1.08rem;
  line-height: 1.7;
  color: #666;
  margin: 0 0 24px;
}

.blog-card-btn{
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg,#cdb2c8,#7f688f);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(127,104,143,0.20);
}

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

  .blog-home-head h2{
    font-size: 2.4rem;
  }

  .blog-card-content h3{
    font-size: 1.75rem;
  }
}

@media (max-width: 700px){
  .blog-home{
    padding: 70px 16px;
  }

  .blog-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .blog-home-head{
    margin-bottom: 40px;
  }

  .blog-home-head h2{
    font-size: 2rem;
  }

  .blog-home-head p{
    font-size: 1rem;
  }

  .blog-card-img{
    height: 220px;
  }

  .blog-card-content{
    padding: 24px 22px 26px;
  }

  .blog-card-content h3{
    font-size: 1.55rem;
  }

  .blog-card-btn{
    width: 100%;
    text-align: center;
  }
}
.packs-despedidas{
background:linear-gradient(180deg,#1f2228,#1a1c21);
padding:90px 20px;
color:white;
text-align:center;
}

.packs-container{
max-width:1200px;
margin:auto;
}

.packs-despedidas h2{
font-size:42px;
margin-bottom:15px;
}

.packs-texto{
color:#cfcfcf;
margin-bottom:60px;
}

.packs-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.pack-card{
background:#2a2d33;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

.pack-header{
background:#dcdcdc;
color:#111;
font-weight:bold;
padding:18px;
letter-spacing:2px;
}

.pack-precio{
background:#1f2228;
font-size:38px;
padding:25px 0;
font-weight:bold;
}

.pack-img img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

.pack-info{
padding:25px;
color:#d9d9d9;
font-size:16px;
line-height:1.6;
}

@media(max-width:900px){

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

}
/* PARCHE TEXTO PACKS */

.pack-card,
.pack-card p,
.pack-card span,
.pack-card h1,
.pack-card h2,
.pack-card h3,
.pack-card h4{
color:#ffffff !important;
}

.pack-card p{
color:#e6e6e6 !important;
}

.pack-precio{
color:#ffffff !important;
font-weight:700;
}
.soltero-home{
padding:100px 20px;
background:#f5f5f7;
}

.soltero-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.badge-soltero{
background:linear-gradient(135deg,#ff4fa3,#ff8cc7);
padding:10px 20px;
border-radius:30px;
color:white;
font-weight:bold;
font-size:14px;
display:inline-block;
margin-bottom:20px;
}

.soltero-texto h2{
font-size:40px;
margin-bottom:20px;
}

.soltero-texto p{
font-size:17px;
line-height:1.8;
margin-bottom:20px;
color:#555;
}

.soltero-img img{
width:100%;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.boton-soltero{
display:inline-block;
margin-top:10px;
background:linear-gradient(135deg,#ff4fa3,#ff7ab8);
color:white;
padding:16px 30px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

@media(max-width:900px){

.soltero-container{
grid-template-columns:1fr;
}

.soltero-texto h2{
font-size:32px;
}

}
.soltero-home{
padding:100px 20px;
background:#f5f5f7;
}

.soltero-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.badge-soltero{
background:linear-gradient(135deg,#ff4fa3,#ff8cc7);
padding:10px 20px;
border-radius:30px;
color:white;
font-weight:bold;
font-size:14px;
display:inline-block;
margin-bottom:20px;
}

.soltero-texto h2{
font-size:40px;
margin-bottom:20px;
}

.soltero-texto p{
font-size:17px;
line-height:1.8;
margin-bottom:20px;
color:#555;
}

.soltero-img img{
width:100%;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.boton-soltero{
display:inline-block;
margin-top:10px;
background:linear-gradient(135deg,#ff4fa3,#ff7ab8);
color:white;
padding:16px 30px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

@media(max-width:900px){

.soltero-container{
grid-template-columns:1fr;
}

.soltero-texto h2{
font-size:32px;
}

}
/* SECCION ORGANIZA TU DESPEDIDA */

.home-opciones{
padding:100px 20px;
background:#f5f5f7;
text-align:center;
}

.opciones-container{
max-width:1200px;
margin:auto;
}

.home-opciones h2{
font-size:42px;
margin-bottom:15px;
color:#1f2030;
}

.opciones-sub{
font-size:18px;
color:#666;
margin-bottom:60px;
}

.opciones-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.opcion-card{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:0.3s;
}

.opcion-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

.opcion-card h3{
font-size:24px;
margin-bottom:15px;
color:#1f2030;
}

.opcion-card p{
color:#666;
line-height:1.6;
margin-bottom:25px;
}

.btn-opcion{
display:inline-block;
padding:12px 26px;
border-radius:30px;
background:linear-gradient(135deg,#ff4fa3,#ff7ab8);
color:white;
font-weight:bold;
text-decoration:none;
}

.btn-opcion:hover{
opacity:0.9;
}

/* RESPONSIVE */

@media(max-width:900px){

.opciones-grid{
grid-template-columns:1fr;
gap:25px;
}

}