/* Importar fuente Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

/* Estilo de las cards horizontales */
.horizontal-card {
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 17%, rgba(235,235,235,1) 89%);
    border-radius: 2rem;
    border: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
    padding: 20px;
}

/* Imagen dentro de la card */
.horizontal-card img {
    max-width: 100%;
    border-radius: 10px;
    padding: 15px;
}

/* Título de la card */
.horizontal-card .card-title {
    font-size: 1.8rem; /* Aumentado el tamaño */
    font-weight: bold;
    color: #333;
}

/* Texto de la card */
.horizontal-card .card-text {
    font-size: 1.2rem; /* Aumentado el tamaño */
}

/* Título principal */
h2 {
    font-size: 2.5rem; /* Aumentado el tamaño */
    font-weight: bold;
    text-align: center;
}

/* Botón con estilo personalizado */
.btn-outline-custom {
    color: #ED1C24;
    border-color: #ED1C24;
    font-weight: 400;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-outline-custom:hover {
    background-color: #ED1C24;
    color: white;
}
