/* RESET GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.6;
}


/* SECCIÓN BENEFICIOS */
.benefits-section {
    padding: 60px 5%;
    background-color: #f8fafc;
    text-align: center;
}

.section-title {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #e11d48; /* Rojo de la marca */
    margin: 0 auto 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* CÍRCULOS DE ICONOS */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Colores de fondo de los iconos (Pastel/Suave como la imagen) */
.bg-blue { background-color: #e0f2fe; color: #0369a1; }
.bg-green { background-color: #dcfce7; color: #15803d; }
.bg-red { background-color: #fee2e2; color: #b91c1c; }
.bg-yellow { background-color: #fef9c3; color: #a16207; }

/* HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.slider-text {
    text-align: center;
    margin-bottom: 20px;
}

.slider-text p {
    font-size: 1.2rem;
    margin: 5px 0;
}

.btn-aliado {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-aliado:hover {
    background-color: white;
    color: black;
}

h1.slider-title {
    font-weight: bold;
    margin: 0;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: 3.75rem;
    line-height: 1;
}
h1.slider-title2 {
    font-weight: bold;
    margin: 0;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: 3.75rem;
    line-height: 1;
    background-image: linear-gradient(to right, #ef4444, #f97316);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
h1.slider-title3 {
    font-weight: bold;
    margin: 0;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
}

/* CARD HEADER */
.card-header {
    background-color: rgb(30, 58, 138);
}