*{
    margin:0px;
    padding:0px;
}

.framePrincipal {
    min-width: 400px;
    max-width: 1200px;
    padding: 5px 25px;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);

}

.frameCarrito{
    display: flex; 
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.0);
    transition: all 0.6s ease;
}

.detalleEvento{
    font-family: "Trebuchet MS", sans-serif;
    letter-spacing: 8px;
    padding-top: 10px;
    color: white;
    background-color: black;
    border-radius: 10px;
    margin-top: 10px;
    width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.6s ease;
    transform: skewY(-3deg); 
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

.detalleEvento:hover{
    box-shadow: 0 4px 8px rgba(200, 0, 0, 0.1);
}

.frameCarrito:hover{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
}

.frameEvento{
    overflow: hidden;  
    text-align: center;
    display: table-cell; 
    vertical-align: middle;  
}

.frameEvento p{
    margin: 5px 10px ;
    text-align: justify;
}

.frameEvento img{
    
    width: 95%; 
    background-color: red;
    
}

.frameSecundario h3{
    font-family: Arial Black, sans-serif;
    font-size: 26px;
    font-weight: bold;
}


.frameEvento-svg {
    
    align-items: center;
    height: 50px;
    margin-top: 20px;
} 

.frameEvento-inscrip {
    align-items: center;
    width: 80%;
    margin-top: 20px;
    background-color: red;
} 


.imagen-svg{
    margin-top: 5px;
    width: 50px;
    height: 50px;
    transition: filter 0.6s ease;
} 

.imagen-svg:hover {
    filter: invert(0%) sepia(100%) saturate(31%) hue-rotate(329deg) brightness(101%) contrast(102%); 
}


.imagen-svg{
    float: left;
}


.texto-svg-titulo{
    margin-left: 10px;
    color: red;
    font-family: Arial Black;
    font-size: 18px;
    float: left;
}


.texto-svg-detalle{
    margin-left: 10px;
    text-align: left;
    width: 80%;
    font-size: 18px;
    float: left;
}

.boton-inscripcion {
    width: 100%; /* Ancho del 100% del contenedor */
    background-color: #4CAF50; /* Color de fondo */
    border: none; /* Sin borde */
    color: white; /* Color del texto */
    padding: 12px 85px; /* Espaciado interno */
    text-align: center; /* Alineación del texto */
    text-decoration: none; /* Sin subrayado */
    display: inline-block; /* Mostrar como bloque en línea */
    font-size: 16px; /* Tamaño de fuente */
    border-radius: 4px; /* Bordes redondeados */
    cursor: pointer; /* Cursor al pasar el mouse */
    transition: background-color 0.3s; /* Transición suave del color de fondo */
}

.boton-inscripcion:hover {
    background-color: #45a049; /* Cambio de color al pasar el mouse */
}



.enlace-boton {
    display: inline-block;
    text-decoration: none;
}


/* Pantallas grandes */
@media (min-width: 800px) {
    .framePrincipal {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* Pantallas pequeñas */
@media (max-width: 800px) {
    .framePrincipal {
        display: grid;
        grid-template-columns: 1fr; /* Cambia a una sola columna para pantallas pequeñas */
        width: 100%;
        text-align: center;
    }
}
