/* Estilos específicos para la página "Crear Eventos" */

@charset "utf-8";

/* Cabecera personalizada para la página de eventos */
.crear-eventos-page .header-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.crear-eventos-page .header-banner .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.crear-eventos-page .header-banner .container {
    position: relative;
    z-index: 2;
}

.crear-eventos-page .header-banner h1 {
    font-size: 3rem;
    font-weight: bold;
}

.crear-eventos-page .header-banner p {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

/* Sección "¿Cómo Funciona?" y tarjetas */
.crear-eventos-page .features {
    background-color: #f2f2f2; /* Unifica el color de fondo */
    padding: 40px 0;
    text-align: center; /* Asegura que el título queda centrado */
}

.crear-eventos-page .features h2 {
    text-align: center; /* Mantiene "¿Cómo Funciona?" centrado */
}

.crear-eventos-page .event-feature-grid p { line-height: 1.6; }

.crear-eventos-page .event-feature-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    justify-content: flex-start;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.crear-eventos-page .event-feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 25px;
    width: 100%;
    min-height: 100px;
    background-color: #f2f2f2; /* Mismo color que la sección */
    padding: 20px;
    border-radius: 5px;
    box-shadow: none;
}

.crear-eventos-page .event-feature-item img {
    width: 80px;
    margin-bottom: 0;
}

/* Sección de la imagen de ejemplo de entrada con explicaciones */
.ticket-section {
    background-color: #ffffff;
    padding: 40px 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.ticket-description {
    flex: 1;
    text-align: left;
}

.ticket-description h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.ticket-description ul {
    list-style: none;
    padding: 0;
}

.ticket-description ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #666;
}

.ticket-image {
    flex: 1;
    max-width: 500px;
    height: auto;
}

/* Secciones con alternancia de color */
.crear-eventos-page .light-bg {
    background-color: #f2f2f2;
    padding: 40px 0;
}

.crear-eventos-page .dark-bg {
    background-color: #2C3E50;
    color: white;
    padding: 40px 0;
}

/* Botón principal */
.crear-eventos-page .btn-primary {
    display: inline-block;
    background-color: #2980b9;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease;
}

.crear-eventos-page .btn-primary:hover {
    background-color: #1f6690;
}

/* Sección de llamada a la acción */
.crear-eventos-page .cta-section {
    background-color: #f39c12;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.ticket-image { display:none; }
.ticket-image1 { display:block; }

@media (max-width: 768px) {
    .ticket-section {
        flex-direction: column;
        text-align: center;
    }
    .ticket-description {
        text-align: center;
    }
    .ticket-image {
        max-width: 100%;
        padding: 10px;
        display: block;
    }
    .ticket-image1 { display:none; }    
}










 
