.blog-section {
    position: relative;
    background-image: var(--bg-image);
    /* o directamente la URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* <- esto es el parallax básico */
    overflow: hidden;
    padding-bottom: 3rem;
    z-index: 0;
}


.blog-section .section-title {
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.plan-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 1rem 2rem rgb(0 0 0 / 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 2rem 3rem rgb(0 0 0 / 0.25);
}

.plan-card-header {
    background: linear-gradient(135deg, #FFDD00 0%, #FBCB12 100%);
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon-circle {
    background: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(255, 221, 0, 0.8);
}

.icon-circle i {
    color: #FFDD00;
    font-size: 1.6rem;
}

.ribbon {
    position: relative;
    background: #ffbe00;
    color: #3b2f00;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(255, 190, 0, 0.7);
    user-select: none;
    white-space: nowrap;
    text-transform: uppercase;
}

.plan-card-body {
    flex-grow: 1;
    padding: 2rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b2f00;
    margin-bottom: 0.5rem;
}

.plan-description {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    min-height: 60px;
}

.price-wrapper {
    align-items: center;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 8px rgba(255, 221, 0, 0.9);
}

.price-original {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    user-select: none;
}


.btn-buy {
    background-color: #FFDD00;
    /* Amarillo dorado */
    border: none;
    border-radius: 30px;
    color: #3b2f00;
    /* Marrón oscuro para buen contraste */
    font-weight: 700;
    padding: 10px 20px;
    font-size: 1.1rem;
    width: 100%;
    box-shadow: 0 5px 15px rgba(255, 221, 0, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-buy:hover,
.btn-buy:focus {
    background-color: #f7ca00;
    /* Un amarillo más intenso */
    box-shadow: 0 0 15px rgba(255, 221, 0, 0.8);
    color: #3b2f00;
    outline: none;
    transform: scale(1.05);
    text-decoration: none;
}


#horarios {
    background: #f9f9f9;
    position: relative;
}

#horarios .section-title {
    color: #222;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
}

#horarios p {
    color: #6c757d;
    /* text-secondary */
    font-weight: 600;
    font-size: 1.05rem;
}

#horarios .nav-tabs {
    font-weight: 600;
    border: none;
    justify-content: center;
    margin-bottom: 1.5rem;
}

#horarios .nav-tabs .nav-link {
    border: none;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    color: #555;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 30px;
}

#horarios .nav-tabs .nav-link.active,
#horarios .nav-tabs .nav-link:hover {
    background-color: #FFDD00;
    color: #3b2f00;
}

#horarios .table-responsive {
    box-shadow: 0 0 12px rgb(0 0 0 / 0.05);
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
}

#horarios table {
    border-collapse: separate;
    border-spacing: 0 0.75rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
}

#horarios thead tr {
    background-color: #FFDD00;
    color: #3b2f00;
    font-weight: 700;
}

#horarios thead th {
    padding: 1rem 1.5rem;
}

#horarios thead th:first-child {
    border-top-left-radius: 12px;
}

#horarios thead th:last-child {
    border-top-right-radius: 12px;
}

#horarios tbody tr {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#horarios tbody tr:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#horarios tbody td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
    color: #555;
}

#horarios tbody td:first-child {
    color: #222;
    font-weight: 600;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

#horarios tbody td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    text-align: center;
}

#horarios .btn {
    padding: 0.375rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

#horarios .btn-warning {
    background-color: #FFDD00;
    border-color: #FFDD00;
    color: #3b2f00;
}

#horarios .btn-warning:hover,
#horarios .btn-warning:focus {
    background-color: #f7ca00;
    border-color: #f7ca00;
    color: #2e2700;
    box-shadow: 0 0 8px rgba(247, 202, 0, 0.6);
}

#horarios .text-muted {
    font-style: italic;
}

#horarios .line-decor {
    height: 6px;
    background: linear-gradient(90deg, #FFDD00, #FBCB12);
    margin-top: 3rem;
    border-radius: 3px 3px 0 0;
}

/* Modal Fondo */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

/* Contenido centrado */
.video-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    position: relative;
}

.video-content iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}

/* Botón cerrar */
.close-btn {
    position: absolute;
    top: -40px;
    right: -10px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.form-control {
    font-size: 11px !important;
    padding: 10px;
}

#contact-section .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

#contact-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#contact-section .btn-warning {
    transition: all 0.3s;
}

#contact-section .btn-warning:hover {
    background-color: #ff5722;
    border-color: #ff5722;
    color: #fff;
}

.line-decor {
    border-radius: 5px 5px 0 0;
}