/* ===================== ASESORÍA ===================== */

.asesoria-hero {
    background-image: linear-gradient(rgba(33, 1, 0, 0.4), rgba(33, 1, 0, 0.4)), url("../imagenes/asesoria-hero3.webp");
    background-size: cover;
    background-position: center 90%;
    background-attachment: fixed;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FDF6E3;
}

.asesoria-hero h1 {
    color: #FDF6E3;
    text-shadow: 0 3px 16px rgba(33, 1, 0, 0.9);
}

.asesoria-hero-texto {
    max-width: 700px;
    margin: 1rem auto 0;
    font-size: 1.5rem;
    text-shadow: 0 3px 14px rgba(33, 1, 0, 0.9);
}

/* ---- Servicios ---- */

.asesoria-servicios {
    padding-top: 6rem;
    margin-bottom: 8rem;
}

.servicios-row {
    row-gap: 3rem;
}

.servicio-bloque {
    text-align: center;
    padding: 3rem 2.5rem;
    background-color: #FEF9F0;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(33, 1, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.servicio-bloque:hover {
    box-shadow: 0 16px 32px rgba(33, 1, 0, 0.18);
    transform: translateY(-4px);
}

.servicio-bloque h2 {
    color: #210100; /* primario */
    margin-bottom: 1rem;
}

.servicio-icono {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #E6A341; /* secundario */
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.servicio-icono img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.servicio-bloque p {
    margin-bottom: 1.5rem;
}

/* ---- Botones estandarizados ---- */

.btn-asesoria {
    display: inline-block;
    background-color: #E6A341; /* secundario */
    color: #210100;
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-asesoria:hover {
    background-color: #8C0902; /* terciario */
    color: #FDF6E3;
}

/* ---- Compra de colmenas ---- */

.asesoria-colmenas {
    background: linear-gradient(160deg, #210100 0%, #3a0f0a 100%); /* primario con degradado */
    padding: 6rem 0;
}

.colmenas-contenido {
    max-width: 600px;
    margin: 0 auto;
}

.asesoria-colmenas h2 {
    color: #FDF6E3;
    margin-bottom: 1rem;
}

.asesoria-colmenas p {
    color: #FDF6E3;
    margin-bottom: 2rem;
}

.asesoria-ilust {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.btn-colmena {
    display: inline-block;
    background-color: transparent;
    color: #FDF6E3;
    border: 2px solid #E6A341; /* secundario */
    padding: 0.5rem 1.75rem;
    font-size: 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-colmena:hover {
    background-color: #8C0902; /* terciario */
    border-color: #8C0902;
    color: #FDF6E3;
}

/* ==========================
   TABLETS (<=992px)
========================== */
@media (max-width: 992px) {
    .asesoria-hero {
        background-image: none;
        background-color: #FDF6E3;
        background-attachment: scroll;
        height: auto;
        padding: 4rem 2rem;
        color: #210100;
    }

    .asesoria-hero h1 {
        color: #210100;
        text-shadow: none;
    }

    .asesoria-hero-texto {
        color: #210100;
        text-shadow: none;
    }

    .servicio-icono {
        width: 120px;
        height: 120px;
    }

    .asesoria-ilust {
        max-width: 280px;
        margin-top: 2rem;
    }
}

/* ==========================
   CELULARES (<=768px)
========================== */
@media (max-width: 768px) {
    .asesoria-hero {
        text-align: center;
        padding: 2.5rem 1rem 4rem;
    }

    .asesoria-hero-texto {
        font-size: 1rem;
    }

    .servicio-bloque {
        padding: 2rem 1rem;
    }

    .asesoria-colmenas {
        text-align: center;
    }
}