/*EVENTOS*/

.header-section {
    position: relative;
    background-color: var(--gold2);
    color: #fff;
    text-align: center;
    padding: 80px 15px;
    overflow: hidden;
  }
  
  /* Capa oscura encima del fondo dorado */
  .header-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4); /* oscuridad ajustable */
    z-index: 1;
  }
  
  /* Asegura que el texto quede por encima de la capa oscura */
  .header-section h1,
  .header-section p,
  .header-section a {
    position: relative;
    z-index: 2;
  }

/* Tarjetas limpias y elegantes */
.ev-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    position: relative;
    overflow: hidden;
}

.ev-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0 auto;
    width: 4px;
    height: 100%;
    background: var(--gold);
    opacity: .9;
    border-radius: .75rem 0 0 .75rem;
}

/* Lista estilizada */
.ev-list {
    padding-left: 0;
}

.ev-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    padding: .6rem .25rem;
    border-bottom: 1px dashed rgba(0, 0, 0, .06);
    font-size: 22px;
}

.ev-item:last-child {
    border-bottom: none;
}

/* Íconos */
.ev-icon {
    color: var(--gold);
}

.ev-bullet {
    color: var(--gold);
    font-size: 1.2rem;
    line-height: 1;
    margin-top: .05rem;
}

/* Responsivo */
@media (max-width: 576px) {
    .ev-item {
        font-size: 22px;
    }
}

/* Fondo suave */

/* Tarjetas */
.serv-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.serv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

/* Imagen superior */
.serv-img {
    width: 100%;
    height: 200px;
    /* altura fija elegante */
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

/* Lista con checks */
.serv-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.serv-list li {
    position: relative;
    padding-left: 1.4rem;
    margin: .4rem 0;
    line-height: 1.6;
    font-size: 20px;
}

.serv-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: 900;
    opacity: .9;
}



/* Tarjeta principal */
.incluye-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
}

/* Lista con “check” elegante (sin iconos externos) */
.incluye-list li {
    position: relative;
    padding-left: 1.6rem;
    margin: .5rem 0;
    line-height: 1.7;
    font-size: 22px;
}

.incluye-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45rem;
    width: .9rem;
    height: .9rem;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: inset 0 0 0 2px #fff;
    background: radial-gradient(circle at 50% 50%, var(--gold) 0 45%, transparent 47% 100%);
}

/* Remate destacado */
.incluye-highlight {
    border: 1px solid rgba(212, 175, 55, .35);
    background: linear-gradient(180deg, #fff, #fffaf2);
    color: #3b2f09;
    border-radius: .75rem;
    padding: 1rem 1.25rem;
    font-weight: 600;
    text-align: center;
}


/* Sección CTA con parallax */
.cta-section {
    position: relative;
    min-height: 400px;
    background: url("../../img/eventos/bg-cta-caserisimo2.webp") center/cover no-repeat fixed;
    /* cambia la imagen */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    /* overlay oscuro */
}

.cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 720px;
}