/* ================= HERO FOTO ================= */
.home-hero{
width:100vw;
margin-left:calc(50% - 50vw);
height:260px;
position:relative;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:30px;
}

/* IMAGEN CONTROLADA */
.home-hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background-image:url("https://homenajejm.es/Img_Generales/Img_HJM.png");
background-size:cover;
background-position:center;
transform:scale(0.80); 
transform-origin:center;

z-index:0;
}

/* CAPA OSCURA */
.home-hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
z-index:1;
}

/* TEXTO */
.hero-overlay{
position:relative;
z-index:2;
text-align:center;
padding:12px 25px;
max-width:600px;   /* 👈 antes 1000px → ahora más estrecha */
width:80%;         /* 👈 evita que se haga gigante */
margin:0 auto;     /* 👈 centrada */
background:rgba(0,0,0,0.08);
border-radius:8px;
backdrop-filter:blur(2px);
animation:fadeIn 1.2s ease;
}

.home-hero::before{
top:-15%;
left:-15%;
width:130%;
height:130%;
}

/* TITULO */
.hero-title {
    color: white;
    font-size: 38px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    margin: 0;

    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* SUBTITULO */
.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-top: 10px;
    font-weight: 300;

    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

/* ANIMACION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================= CAJA HISTORIA ================= */

.home-intro-box {
    max-width: 1000px;
    margin: 0 auto 50px auto;
    background: white;
    padding: 18px 30px 30px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #dfe6ff;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

/* TITULO HISTORIA */
.intro-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #150b9b;
    font-size: 22px;
    margin-bottom: 8px;
}

/* ICONO */
.intro-icon {
    font-size: 24px;
    color: #150b9b;
}

/* PARRAFOS */
.home-intro-box p {
    margin-bottom: 14px;
}


/* ================= TEXTO HISTORIA ================= */

.home-intro {
    max-width: 1000px;
    margin: 0 auto 50px auto;
    text-align: justify;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.home-intro p {
    margin-bottom: 14px;
}


/* ================= GRID TARJETAS ================= */
.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

/* TARJETAS */

.home-card {
    text-decoration: none;
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    transition: 0.2s;
    color: #222;
}

.home-card:hover {
    transform: translateY(-6px);
}


/* ICONO TARJETAS */

.card-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}


/* COLORES */

.card-blue .card-icon {
    background: #4a6fd1;
}

.card-orange .card-icon {
    background: #d68636;
}

.card-green .card-icon {
    background: #3f9b63;
}

.card-red .card-icon {
    background: #d44863;
}


/* TITULOS TARJETAS */

.home-card h3 {
    margin: 10px 0 8px 0;
    font-size: 20px;
}

.home-card p {
    font-size: 14px;
    color: #555;
}