/* ===========================================================
   Página "Quiénes somos" (CMS id 14)
   =========================================================== */

/* --- Hero / cabecera --- */
.presentation-hero {
    position: relative;
    margin: 0 calc(50% - 50vw) 0;
    padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
    background:
        radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0.12) 0 60px, transparent 61px),
        radial-gradient(circle at 22% 25%, rgba(255, 255, 255, 0.08) 0 34px, transparent 35px),
        radial-gradient(circle at 48% 92%, rgba(255, 255, 255, 0.07) 0 22px, transparent 23px),
        radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.09) 0 46px, transparent 47px),
        linear-gradient(135deg, #c2762a 0%, #c2762a 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.presentation-hero::after,
.presentation-hero::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.presentation-hero::after {
    right: -120px;
    bottom: -120px;
}

.presentation-hero::before {
    left: -120px;
    top: -120px;
}

.presentation-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.presentation-hero__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 0.75rem;
}

.presentation-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 1000;
    margin: 0 0 1rem;
    color: #fff;
}

.presentation-hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.7;
    margin: 0;
    color: #fff;
}

/* --- Contenedor de bloques --- */
.presentation-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1040px;
    margin: clamp(2.5rem, 6vw, 4rem) auto;
    padding: 0 1rem;
}

/* --- Bloque individual (zig-zag) --- */
.presentation-container .block-presentation {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    background-color: #fff;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.presentation-container .block-presentation:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
}

/* Alterna el lado del icono en bloques pares */
.presentation-container .block-presentation:nth-child(even) {
    flex-direction: row-reverse;
}

/* --- Texto --- */
.presentation-container .info-block-presentation {
    flex: 1 1 auto;
}

.presentation-container .info-block-presentation h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.85rem;
    padding-left: 0.9rem;
    border-left: 4px solid #d58735;
    line-height: 1.2;
}

.presentation-container .info-block-presentation p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: normal;
    color: #555;
    line-height: 1.75;
    margin: 0;
}

/* --- Icono --- */
.presentation-container .image-block-presentation {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d58735 0%, #e89b4f 100%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(213, 135, 53, 0.35);
}

.presentation-container .image-block-presentation i {
    font-size: 4.5rem;
}

/* --- Bloque CTA destacado --- */
.presentation-container .block-presentation--cta {
    background: #fff7f0;
    border: 1px solid #f0d8bf;
}

.presentation-container .contact-presentacion-button {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    background-color: #d58735;
    color: #fff;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.presentation-container .contact-presentacion-button:hover {
    background-color: #b9752e;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .presentation-container .block-presentation,
    .presentation-container .block-presentation:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .presentation-container .info-block-presentation h3 {
        border-left: none;
        padding-left: 0;
    }

    .presentation-container .image-block-presentation {
        width: 110px;
        height: 110px;
    }

    .presentation-container .image-block-presentation i {
        font-size: 3.5rem;
    }
}
