:root {
    --gris: #5c5c5c;
    --verde: #8BBD2E;
    --verde-oscuro: #6e9624;
    --verde-oscuro2: #58791c;
    --verde-claro: #a8d44a;
    --gris-claro: #e2e2e2;
    --gris-medio: #999999;
    --gris-oscuro: #2e2e2e;
    --crema: #f0f0ee;
    --verde-rgb: 107, 140, 42;
}


/* ============================================================
   VISTA: INICIO
   Prefijo: .inicio__
   Todas las clases de esta vista usan este prefijo para
   evitar conflictos con otras vistas del proyecto.
   ============================================================ */

/* ══════════════════════════════════════════════
   CARRUSEL HERO
══════════════════════════════════════════════ */
.inicio__hero-carousel {
    position: relative;
    width: 100%;
    min-height: 520px;
    background: linear-gradient(160deg, #2e2e2e 0%, #3d3d3d 60%, #444 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.inicio__hero-carousel::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(139,189,46,0.18) 0%, transparent 55%);
    pointer-events: none;
}

.inicio__carousel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.77,0,0.175,1);
    will-change: transform;
}

.inicio__carousel-slide {
    min-width: 100%;
    padding: 90px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.inicio__carousel-slide .inicio__tag {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--verde-claro);
    margin-bottom: 18px;
}

.inicio__carousel-slide h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: #ececec;
    line-height: 1.15;
    margin-bottom: 22px;
    max-width: 700px;
}

.inicio__carousel-slide p {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 1.08rem;
    color: rgba(220,220,220,0.75);
    max-width: 560px;
    line-height: 1.75;
}

.inicio__carousel-indicators {
    position: absolute;
    bottom: 28px; left: 10%;
    display: flex; gap: 10px;
}

.inicio__carousel-dot {
    width: 32px; height: 3px;
    background: rgba(153,153,153,0.35);
    border: none; cursor: pointer;
    transition: background 0.3s, width 0.3s;
    padding: 0;
}

.inicio__carousel-dot.active { background: var(--verde); width: 52px; }

.inicio__carousel-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(153,153,153,0.15);
    border: 1px solid rgba(153,153,153,0.3);
    color: #d8d8d8;
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.inicio__carousel-arrow:hover { background: var(--verde); color: var(--gris-oscuro); }
.inicio__carousel-arrow.prev  { left: 24px; }
.inicio__carousel-arrow.next  { right: 24px; }

/* ══════════════════════════════════════════════
   INFORMACIÓN EMPRESA
══════════════════════════════════════════════ */
.inicio__empresa {
    background: var(--crema);
    padding: 80px 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.inicio__empresa .inicio__label {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gris-oscuro);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
}

.inicio__empresa .inicio__label::before {
    content: '';
    display: inline-block;
    width: 28px; height: 2px;
    background: var(--verde);
    flex-shrink: 0;
}

.inicio__empresa h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--gris-oscuro);
    line-height: 1.25;
    margin-bottom: 20px;
}

.inicio__empresa p {
    font-family: 'Trebuchet MS', sans-serif;
    color: var(--gris);
    line-height: 1.85;
    font-size: 1rem;
}

.inicio__empresa-deco {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.inicio__empresa-stat {
    background: var(--gris-claro);
    padding: 24px 20px;
    border-left: 4px solid var(--verde);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.inicio__empresa-stat:hover {
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.inicio__pilar-icono {
    width: 36px;
    height: 36px;
    background: color-mix(in srgb, var(--verde) 12%, transparent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    color: var(--verde);
    margin-bottom: 4px;
}

.inicio__pilar-icono svg {
    width: 100%;
    height: 100%;
}

.inicio__pilar-titulo {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gris-oscuro);
    line-height: 1.2;
}

.inicio__pilar-desc {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.85rem;
    color: var(--gris);
    line-height: 1.5;
    margin: 0;
}

/* ══════════════════════════════════════════════
   SERVICIOS
══════════════════════════════════════════════ */
.inicio__servicios {
    background: linear-gradient(180deg, #d5d5d5 0%, #e0e0e0 100%);
    padding: 80px 10%;
}

.inicio__section-header {
    text-align: center;
    margin-bottom: 50px;
}

.inicio__section-header .inicio__label {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gris-oscuro);
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-bottom: 12px;
}

.inicio__section-header .inicio__label::before,
.inicio__section-header .inicio__label::after {
    content: '';
    display: inline-block;
    width: 22px; height: 2px;
    background: var(--verde);
    flex-shrink: 0;
}

.inicio__section-header h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--gris-oscuro);
}

.inicio__servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding-top: 20px;
}

.inicio__servicio-card {
    position: relative;
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
    overflow: hidden;
    box-sizing: border-box;
}

.inicio__servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(139, 189, 46, 0.1);
}

.inicio__servicio-card-header {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.inicio__servicio-icon {
    background: rgba(139, 189, 46, 0.05);
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px dashed #8BBD2E;
    color: #8BBD2E;
    transition: all 0.3s ease;
}

.inicio__servicio-card:hover .inicio__servicio-icon {
    background: #8BBD2E;
    border-style: solid;
    color: #ffffff;
    transform: rotate(10deg);
}

.inicio__servicio-card h3 {
    font-family: Georgia, serif;
    color: var(--gris-oscuro);
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: normal;
    text-transform: none;
}

.inicio__servicio-card p {
    font-family: 'Trebuchet MS', sans-serif;
    color: var(--gris);
    line-height: 1.85;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.inicio__servicio-card:hover .pc-code {
    animation: typing 1s steps(3) infinite;
    stroke: #ffffff;
}

.inicio__servicio-card:hover .chart-slice {
    animation: highlightSlice 1s ease-in-out infinite;
    color: #ffffff;
}

.inicio__servicio-card:hover .wrench-tool {
    animation: tightening 0.6s ease-in-out infinite;
    transform-origin: bottom left;
    stroke: #ffffff;
}

@keyframes typing {
    0%, 100% { opacity: 0; }
    50%       { opacity: 1; }
}

@keyframes highlightSlice {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.15); }
}

@keyframes tightening {
    0%, 100% { transform: rotate(0deg); }
    50%       { transform: rotate(-15deg); }
}

.inicio__btn-ver-mas {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 10px 22px;
    background: transparent;
    color: var(--gris-oscuro);
    border: 1.5px solid rgba(139, 189, 46, 0.55);
    border-radius: 50px;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.80rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s, gap 0.2s;
}

.inicio__btn-ver-mas svg {
    transition: transform 0.25s ease;
}

.inicio__btn-ver-mas:hover {
    background: var(--verde);
    border-color: var(--verde);
    color: var(--gris-oscuro);
    gap: 12px;
}

.inicio__btn-ver-mas:hover svg {
    transform: translateX(3px);
}

/* ══════════════════════════════════════════════
   MISIÓN & VISIÓN
══════════════════════════════════════════════ */
.inicio__mv {
    padding: 80px 10%;
    background: var(--gris-oscuro);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.inicio__mv-card {
    padding: 40px;
    border: 1px solid rgba(139,189,46,0.2);
    position: relative;
    overflow: hidden;
}

.inicio__mv-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--verde);
}

.inicio__mv-card .inicio__mv-tag {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--verde-claro);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
}

.inicio__mv-card .inicio__mv-tag::before {
    content: '';
    display: inline-block;
    width: 22px; height: 2px;
    background: var(--verde-claro);
    flex-shrink: 0;
}

.inicio__mv-card h3 {
    font-family: Georgia, serif;
    font-size: 1.7rem;
    color: var(--crema);
    margin-bottom: 16px;
}

.inicio__mv-card p {
    font-family: 'Trebuchet MS', sans-serif;
    color: var(--gris-medio);
    line-height: 1.8;
    font-size: 0.97rem;
}

/* ══════════════════════════════════════════════
   EQUIPO
══════════════════════════════════════════════ */
.inicio__equipo {
    padding: 80px 0;
    background: var(--gris-claro);
}

.inicio__section-header {
    padding: 0 10%;
    margin-bottom: 40px;
}

.inicio__equipo-card-wide {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.inicio__equipo-avatares {
    background: linear-gradient(to right, #2f3b23, var(--gris-oscuro));
    padding: 60px 52px;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.inicio__avatares-left {
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%;
}

/* ── Grid 3×2 en desktop ── */
.inicio__avatar-grupo {
    display: grid;
    grid-template-columns: repeat(3, 64px);
    grid-template-rows: repeat(2, 64px);
    gap: 8px;
    flex-shrink: 0;
}

.inicio__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(139, 191, 46, 0.15);
    border: 2px solid var(--verde);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--verde);
    letter-spacing: 0.04em;
    flex-shrink: 0;
    transition: transform 0.2s, z-index 0.2s;
    position: relative;
    z-index: 1;
    margin-left: 0;
}

.inicio__avatar:hover {
    transform: translateY(-6px);
    z-index: 10;
}

.inicio__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.inicio__avatar-texto {
    flex: 1;
}

.inicio__avatar-texto h3 {
    font-family: Georgia, serif;
    font-size: clamp(1.1rem, 2.2vw, 1.55rem);
    color: var(--crema);
    margin: 0 0 14px;
    font-weight: 700;
    line-height: 1.35;
}

.inicio__avatar-texto p {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.92rem;
    color: var(--gris-medio);
    margin: 0;
    line-height: 1.65;
    max-width: 520px;
}

.inicio__equipo-cta {
    background: var(--gris-claro);
    padding: 28px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 3px solid var(--verde);
    text-align: center;
}

.inicio__btn-nosotros {
    display: inline-block;
    padding: 14px 42px;
    background: var(--verde);
    color: var(--gris-oscuro);
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
}

.inicio__btn-nosotros:hover {
    background: var(--verde-oscuro);
    color: var(--crema);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   CONTACTO
══════════════════════════════════════════════ */
.inicio__contacto {
    background: var(--crema);
    padding: 80px 10%;
    text-align: center;
}

.inicio__contacto .inicio__label {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gris-oscuro);
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-bottom: 12px;
}

.inicio__contacto .inicio__label::before,
.inicio__contacto .inicio__label::after {
    content: '';
    display: inline-block;
    width: 22px; height: 2px;
    background: var(--verde);
    flex-shrink: 0;
}

.inicio__contacto h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--gris-oscuro);
    margin-bottom: 14px;
}

.inicio__contacto .inicio__subtitulo {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 1rem;
    color: var(--gris);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.inicio__contacto-botones {
    display: flex; gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.inicio__btn-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 34px;
    background: var(--verde);
    color: var(--gris-oscuro);
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
}

.inicio__btn-whatsapp:hover { background: var(--verde-oscuro); color: var(--crema); transform: translateY(-2px); }
.inicio__btn-whatsapp svg   { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

.inicio__btn-contacto-vista {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 34px;
    background: transparent;
    border: 1.5px solid var(--gris);
    color: var(--gris);
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.2s;
}

.inicio__btn-contacto-vista:hover {
    border-color: var(--gris-oscuro);
    background: var(--gris-oscuro);
    color: var(--crema);
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */

/* ── LAPTOP (≤ 992px) ── */
@media (max-width: 992px) {
    .inicio__hero-carousel       { min-height: 420px; }
    .inicio__carousel-slide      { padding: 70px 6% 80px; }
    .inicio__carousel-arrow      { width: 38px; height: 38px; font-size: 1rem; }
    .inicio__carousel-arrow.prev { left: 12px; }
    .inicio__carousel-arrow.next { right: 12px; }
    .inicio__carousel-indicators { left: 6%; }

    .inicio__empresa             { grid-template-columns: 1fr; padding: 60px 6%; gap: 40px; }
    .inicio__pilar-desc          { display: none; }
    .inicio__empresa-stat        { align-items: center; text-align: center; }

    .inicio__servicios           { padding: 60px 6%; }
    .inicio__servicios-grid      { grid-template-columns: repeat(2, 1fr); }

    .inicio__servicio-card:nth-child(3):last-child {
        grid-column: 1 / -1;
        width: 50%;
        margin: 0 auto;
    }

    .inicio__mv                  { grid-template-columns: 1fr; padding: 60px 6%; gap: 28px; }

    .inicio__equipo              { padding: 60px 6%; }
    .inicio__equipo-overlay      { display: none; }
    .inicio__equipo-foto         { aspect-ratio: 4 / 3; }
    .inicio__equipo-cta          { padding: 24px 20px; }

    .inicio__contacto            { padding: 60px 6%; }
}

/* ── TABLET (≤ 800px): avatares en fila arriba, texto abajo ── */
@media (max-width: 800px) {
    .inicio__equipo-avatares {
        padding: 40px 28px;
        min-height: auto;
    }

    .inicio__avatares-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    /* 6 avatares en fila seguida con overlap */
    .inicio__avatar-grupo {
        display: flex;
        flex-direction: row;
        grid-template-columns: unset;
        grid-template-rows: unset;
        gap: 0;
    }

    .inicio__avatar {
        width: 52px;
        height: 52px;
        font-size: 0.75rem;
        margin-left: -12px;
    }

    .inicio__avatar:first-child {
        margin-left: 0;
    }

    .inicio__equipo-cta { padding: 22px 28px; }
}

/* ── TABLET (≤ 768px): misión/visión mobile ── */
@media (max-width: 768px) {
    .inicio__empresa             { grid-template-columns: 1fr; padding: 48px 6%; gap: 32px; }
    .inicio__empresa-deco        { grid-template-columns: 1fr 1fr; gap: 12px; }
    .inicio__empresa-stat        { padding: 18px 14px; align-items: center; text-align: center; }
    .inicio__pilar-desc          { display: none; }
    .inicio__pilar-titulo        { margin-top: 8px; font-size: 0.95rem; }
    .inicio__pilar-icono         { width: 32px; height: 32px; }
    .inicio__pilar-icono svg     { width: 32px; height: 32px; }

    .inicio__servicios-grid      { grid-template-columns: repeat(2, 1fr); }

    .inicio__servicio-card:nth-child(3):last-child {
        grid-column: 1 / -1;
        width: 50%;
        margin: 0 auto;
    }

    .inicio__mv                  { grid-template-columns: 1fr; padding: 48px 6%; gap: 16px; }
    .inicio__mv-card             { padding: 24px 20px; }

    .inicio__mv-card p {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    }
    .inicio__mv-card.abierto p   { max-height: 300px; opacity: 1; margin-top: 12px; }

    .mv-preview {
        font-family: 'Trebuchet MS', sans-serif;
        color: var(--gris-medio);
        font-size: 0.97rem;
        line-height: 1.8;
        margin-top: 12px;
        opacity: 0.7;
    }
    .inicio__mv-card.abierto .mv-preview { display: none; }

    .mv-ver-mas {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 10px;
        font-family: 'Courier New', monospace;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--verde-claro);
        cursor: pointer;
        border: none;
        background: none;
        padding: 0;
    }
    .mv-ver-mas::after                   { content: '+'; font-size: 1rem; font-weight: 300; }
    .inicio__mv-card.abierto .mv-ver-mas { display: none; }
}

/* ── MÓVIL (≤ 600px) ── */
@media (max-width: 600px) {
    .inicio__hero-carousel       { min-height: auto; overflow: hidden; }
    .inicio__carousel-slide      { flex: 0 0 100%; width: 100%; padding: 56px 5% 72px; overflow: hidden; word-break: break-word; }
    .inicio__carousel-slide .inicio__tag { font-size: 0.78rem; margin-bottom: 12px; }
    .inicio__carousel-slide h1   { font-size: clamp(1.35rem, 7vw, 2rem); margin-bottom: 14px; max-width: 100%; }
    .inicio__carousel-slide p    { font-size: 0.93rem; line-height: 1.65; max-width: 100%; }
    .inicio__carousel-arrow      { display: none; }
    .inicio__carousel-indicators { left: 50%; transform: translateX(-50%); bottom: 18px; }
    .inicio__carousel-dot        { width: 24px; }
    .inicio__carousel-dot.active { width: 38px; }

    .inicio__empresa             { padding: 50px 5%; gap: 32px; }
    .inicio__empresa h2          { font-size: 1.45rem; }
    .inicio__empresa-deco        { grid-template-columns: 1fr 1fr; gap: 12px; }
    .inicio__empresa-stat        { padding: 20px 14px; }

    .inicio__servicios           { padding: 50px 5%; }
    .inicio__servicios-grid      { grid-template-columns: 1fr; }
    .inicio__servicio-card:nth-child(3):last-child {
        grid-column: auto;
        width: 100%;
        margin: 0;
    }
    .inicio__servicio-card       { width: 100%; box-sizing: border-box; }
    .inicio__section-header      { margin-bottom: 32px; }
    .inicio__section-header h2   { font-size: 1.45rem; }
    .inicio__btn-ver-mas         { align-self: stretch; text-align: center; justify-content: center; }

    .inicio__mv                  { padding: 50px 5%; gap: 20px; }
    .inicio__mv-card             { padding: 28px 20px; }
    .inicio__mv-card h3          { font-size: 1.4rem; }

    .inicio__equipo              { padding: 50px 5%; }
    .inicio__equipo-overlay      { display: none; }
    .inicio__equipo-card-wide    { width: 100%; margin-top: 28px; }
    .inicio__equipo-foto         { aspect-ratio: 4 / 3; }
    .inicio__equipo-cta          { padding: 20px 16px; }
    .inicio__btn-nosotros        { padding: 14px 28px; font-size: 0.88rem; width: 100%; text-align: center; }

    .inicio__contacto            { padding: 50px 5%; }
    .inicio__contacto h2         { font-size: 1.45rem; }
    .inicio__contacto .inicio__subtitulo { font-size: 0.93rem; margin-bottom: 28px; }
    .inicio__contacto-botones    { flex-direction: column; align-items: stretch; }
    .inicio__btn-whatsapp,
    .inicio__btn-contacto-vista  { justify-content: center; padding: 15px 20px; font-size: 0.9rem; }

    /* Avatares más pequeños en móvil */
    .inicio__avatar {
        width: 44px;
        height: 44px;
        font-size: 0.7rem;
        margin-left: -10px;
    }
    .inicio__avatar:first-child { margin-left: 0; }
}

/* ── MÓVIL PEQUEÑO (≤ 576px) ── */
@media (max-width: 576px) {
    .inicio__servicios-grid      { grid-template-columns: 1fr; }
    .inicio__servicio-card:nth-child(3):last-child {
        grid-column: auto;
        width: 100%;
        margin: 0;
    }
    .inicio__servicio-card       { width: 100%; box-sizing: border-box; }
}

/* ── MÓVIL MUY PEQUEÑO (≤ 380px) ── */
@media (max-width: 380px) {
    .inicio__carousel-slide h1   { font-size: 1.3rem; }
    .inicio__empresa-deco        { grid-template-columns: 1fr; }

    .inicio__avatar {
        width: 38px;
        height: 38px;
        margin-left: -8px;
    }
}
a.inicio__avatar {
    cursor: pointer;
    text-decoration: none;
}

.inicio__avatar div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--verde);
}
/* ============================================================
   SERVICIOS.CSS
   Prefijo de clases: srv-
   Todas las clases de esta vista usan el prefijo "srv-"
   para evitar colisiones con otras vistas.
   ============================================================ */



/* ============================================================
   SERVICIOS.CSS — Prefijo: srv-
   Breakpoints: 576 / 768 / 992 / 1200
   ============================================================ */

/* ===== HERO ===== */
.srv-hero-inner {
    background: linear-gradient(160deg, #2e2e2e 0%, #3d3d3d 60%, #444 100%);
    padding: 90px 10%;
    position: relative;
    overflow: hidden;
}

.srv-hero-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,189,46,0.18) 0%, transparent 55%);
    pointer-events: none;
}

.srv-hero-inner .srv-tag {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--verde-claro);
    margin-bottom: 18px;
    display: block;
}

.srv-hero-inner h1 {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #ececec;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 680px;
}

.srv-hero-inner p {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 1.05rem;
    color: rgba(220,220,220,0.75);
    max-width: 560px;
    line-height: 1.75;
}

/* ===== SERVICIOS DETALLADOS ===== */
.srv-servicios-detalle {
    background: var(--crema);
    padding: 80px 10%;
    counter-reset: srv-card-counter;
}

.srv-section-label {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gris-oscuro);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.srv-section-label::before,
.srv-section-label::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--verde);
    flex-shrink: 0;
}

.srv-section-title {
    font-family: Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--gris-oscuro);
    text-align: center;
    margin-bottom: 50px;
}

/* ── Cards de servicio ── */
.srv-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
    counter-increment: srv-card-counter;
}

.srv-card.srv-card--reverse { direction: rtl; }
.srv-card.srv-card--reverse > * { direction: ltr; }

/* ── Imagen ── */
.srv-card__imagen {
    background: linear-gradient(135deg, #3a3a3a 0%, #555 100%);
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.srv-card__imagen picture { width: 100%; height: 100%; display: block; }

.srv-card__imagen picture img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    filter: brightness(0.88) contrast(1.03) saturate(0.9);
    transition: transform 0.5s ease, filter 0.4s ease;
}

.srv-card__imagen:hover picture img {
    transform: scale(1.04);
    filter: brightness(0.96) saturate(1.05);
}

/* ── Contenido ── */
.srv-card__content {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(160deg, #f8f5ef 0%, #faf8f3 100%);
    position: relative;
    overflow: hidden;
}



/* Número de sección — oculto en desktop, visible en ≤992px como badge */
.srv-card__numero {
    display: none;
}

/* Tag de sección visible en desktop */
.srv-card__numero2 {
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    color: var(--verde);
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.srv-card__numero2::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--verde);
    flex-shrink: 0;
}

.srv-card__content h3 {
    font-family: Georgia, serif;
    font-size: 1.7rem;
    color: var(--gris-oscuro);
    margin-bottom: 16px;
    line-height: 1.2;
    position: relative;
    padding-right: 70px;
}

.srv-card__content p {
    font-family: 'Trebuchet MS', sans-serif;
    color: var(--gris);
    line-height: 1.85;
    font-size: 0.97rem;
    margin-bottom: 14px;
    position: relative;
    padding-top: 14px;
    border-top: 1px solid #e8e3d8;
}

.srv-card__lista {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    position: relative;
}

.srv-card__lista li {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.92rem;
    color: var(--gris);
    padding: 5px 0 5px 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.srv-card__lista li::before {
    content: '—';
    color: var(--verde);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Botón solicitar ── */
.srv-btn-solicitar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 28px;
    background: var(--verde);
    color: #fff;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    align-self: flex-start;
    text-align: center;
    border-radius: 24px;
    position: relative;
}

.srv-btn-solicitar:hover {
    background: var(--verde-oscuro);
    transform: translateY(-2px);
}

/* ===== PROCESO ===== */
.p-srv-proceso {
    background: linear-gradient(180deg, #d5d5d5 0%, #e0e0e0 100%);
    padding: 80px 10%;
    text-align: center;
}

.p-srv-section-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #8BBD2E;
    font-weight: 600;
    margin-bottom: 12px;
}

.p-srv-section-title {
    font-family: Georgia, serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #2e2e2e;
    letter-spacing: -0.02em;
    margin-bottom: 56px;
}

.p-srv-proceso-contenedor {
    display: flex;
    gap: 40px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.p-srv-columna-izq {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 300px;
}

.p-srv-proceso-lista {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    gap: 0;
}

.p-srv-linea-vertical {
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #8BBD2E, #e2e2e2);
    z-index: 0;
}

.p-srv-proceso-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 20px 20px 16px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: background 0.25s ease, transform 0.2s ease;
    border: 2px solid transparent;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.p-srv-proceso-item:hover {
    background: rgba(139,189,46,0.06);
    transform: translateX(4px);
}

.p-srv-proceso-item.p-srv-proceso-activo {
    background: #fff;
    border-color: rgba(139,189,46,0.25);
    box-shadow: 0 4px 20px rgba(139,189,46,0.12);
    transform: translateX(6px);
}

.p-srv-paso-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e2e2e2;
    color: #999;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.p-srv-proceso-item.p-srv-proceso-activo .p-srv-paso-num {
    background: #8BBD2E;
    color: #fff;
    box-shadow: 0 4px 12px rgba(139,189,46,0.4);
}

.p-srv-paso-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.p-srv-paso-titulo {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #2e2e2e;
    transition: color 0.2s;
}

.p-srv-paso-sub {
    display: block;
    font-size: 12px;
    color: #999;
}

.p-srv-proceso-item.p-srv-proceso-activo .p-srv-paso-titulo { color: #6e9624; }
.p-srv-proceso-item.p-srv-proceso-activo .p-srv-paso-sub    { color: #8BBD2E; }

.p-srv-paso-flecha {
    display: block;
    color: #e2e2e2;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}

.p-srv-proceso-item.p-srv-proceso-activo .p-srv-paso-flecha {
    color: #8BBD2E;
    transform: translateX(4px);
}

.p-srv-proceso-panel {
    flex: 1;
    position: relative;
    min-height: 340px;
}

.p-srv-panel-card {
    display: none;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    border-radius: 20px;
    padding: 44px;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(139,189,46,0.15);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    animation: p-srv-entrada 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

.p-srv-panel-card.p-srv-panel-activo { display: flex; }

@keyframes p-srv-entrada {
    from { opacity: 0; transform: translateX(20px) scale(0.98); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}

.p-srv-panel-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px dashed #8BBD2E;
    background: rgba(139,189,46,0.05);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.p-srv-panel-card:hover .p-srv-panel-icon {
    background: #8BBD2E;
    border-style: solid;
    transform: rotate(10deg);
}

.p-srv-panel-card:hover .p-srv-panel-icon svg path,
.p-srv-panel-card:hover .p-srv-panel-icon svg circle { stroke: #fff; }
.p-srv-panel-card:hover .p-srv-panel-icon svg [fill="#8BBD2E"] { fill: #fff; }

.p-srv-panel-num {
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #8BBD2E;
    text-transform: uppercase;
}

.p-srv-panel-titulo {
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 800;
    color: #2e2e2e;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.p-srv-panel-texto {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #5c5c5c;
    max-width: 480px;
    margin: 0;
}

.p-srv-panel-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 8px;
}

.p-srv-tag {
    display: inline-block;
    background: rgba(139,189,46,0.1);
    color: #6e9624;
    border: 1px solid rgba(139,189,46,0.25);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ── Botón pausa ── */
.p-srv-btn-pausa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: transparent;
    border: 2px solid rgba(139,189,46,0.35);
    border-radius: 100px;
    color: #8BBD2E;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}

.p-srv-btn-pausa:hover         { background: rgba(139,189,46,0.08); border-color: #8BBD2E; }
.p-srv-btn-pausa.p-srv-pausado { background: #8BBD2E; border-color: #8BBD2E; color: #fff; }
.p-srv-btn-icon                { font-size: 11px; }

/* ── Barra de progreso ── */
.p-srv-progreso-bar {
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 3px;
    background: rgba(139,189,46,0.15);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.p-srv-proceso-item.p-srv-proceso-activo .p-srv-progreso-bar { opacity: 1; }

.p-srv-progreso-fill {
    height: 100%;
    width: 0%;
    background: #8BBD2E;
    border-radius: 2px;
}

/* ── Acordeón móvil ── */
.p-srv-mobile-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
    .p-srv-mobile-body { display: block; }
}

@media (min-width: 769px) {
    .p-srv-mobile-body {
        display: none !important;
        max-height: 0 !important;
        opacity: 0 !important;
    }
}

.p-srv-mobile-card {
    display: flex !important;
    flex-direction: column;
    gap: 14px;
    background: #f9f9f7;
    border-radius: 12px;
    padding: 20px;
    margin: 8px 0 4px;
    border: 1px solid rgba(139,189,46,0.15);
    animation: none !important;
}

.p-srv-mobile-card .p-srv-panel-titulo { font-size: 1.3rem; }
.p-srv-mobile-card .p-srv-panel-icon   { width: 56px; height: 56px; }
.p-srv-mobile-card .p-srv-panel-icon svg { width: 28px; height: 28px; }

/* ===== CTA ===== */
.srv-cta {
    background: var(--gris-oscuro);
    padding: 70px 10%;
    text-align: center;
}

.srv-cta__tag {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--verde-claro);
    margin-bottom: 16px;
    display: block;
}

.srv-cta h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #ececec;
    margin-bottom: 14px;
}

.srv-cta p {
    font-family: 'Trebuchet MS', sans-serif;
    color: rgba(220,220,220,0.7);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

.srv-cta__botones {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.srv-btn-verde {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    background: var(--verde);
    color: #fff;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
}

.srv-btn-verde:hover { background: var(--verde-oscuro); transform: translateY(-2px); }

.srv-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    background: transparent;
    border: 1.5px solid rgba(220,220,220,0.4);
    color: rgba(220,220,220,0.8);
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.2s;
}

.srv-btn-outline:hover { border-color: #fff; color: #fff; transform: translateY(-2px); }


/* =====================================================
   RESPONSIVE — desktop (≤1200px)
   ===================================================== */
@media (max-width: 1200px) {
    .srv-servicios-detalle { padding: 70px 8%; }
    .p-srv-proceso         { padding: 70px 8%; }
    .srv-cta               { padding: 60px 8%; }
}

/* =====================================================
   RESPONSIVE — laptop (≤992px)
   Cards apiladas: nuevo diseño crema
   ===================================================== */
@media (max-width: 992px) {
    .srv-hero-inner        { padding: 70px 7%; }
    .srv-servicios-detalle { padding: 60px 6%; }
    .p-srv-proceso         { padding: 60px 6%; }

    .srv-card,
    .srv-card.srv-card--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .srv-card__imagen { min-height: 260px; }
    .srv-card__imagen picture img { height: 260px; }

    /* Badge del número sobre la imagen */
    .srv-card__numero {
        display: block;
        position: absolute;
        bottom: 14px;
        left: 16px;
        margin-bottom: 0;
        font-size: 0.7rem;
        background: rgba(0,0,0,0.55);
        padding: 4px 10px;
        border-left: 2px solid var(--verde);
        color: var(--verde);
        z-index: 2;
    }

    /* Ocultar tag de desktop */
    .srv-card__numero2 { display: none; }

    .srv-card__content {
        padding: 22px 24px 0;
        background: linear-gradient(160deg, #f8f5ef 0%, #faf8f3 100%);
        position: relative;
        overflow: hidden;
    }



    .srv-card__content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        padding-right: 60px;
    }

    .srv-card__content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
        padding-top: 12px;
        border-top: 1px solid #e0d9c8;
    }

    .srv-card__lista { margin-bottom: 0; }
    .srv-card__lista li { font-size: 0.87rem; padding: 5px 0 5px 18px; }

    .srv-card__content .srv-btn-solicitar {
        display: inline-flex;
        align-self: flex-end;
        align-items: center;
        gap: 6px;
        padding: 9px 22px;
        border-radius: 24px;
        font-size: 0.86rem;
        margin: 16px 0 20px;
        width: auto;
    }

    .p-srv-proceso-contenedor { gap: 28px; }
    .p-srv-columna-izq        { flex: 0 0 260px; }
    .p-srv-panel-card         { padding: 32px; }
    .p-srv-panel-titulo       { font-size: 1.6rem; }
}

/* =====================================================
   RESPONSIVE — tablet (≤768px)
   ===================================================== */
@media (max-width: 768px) {
    .srv-hero-inner        { padding: 60px 6%; }
    .srv-servicios-detalle { padding: 48px 5%; }
    .p-srv-proceso         { padding: 48px 5%; }
    .srv-cta               { padding: 50px 6%; }

    .srv-card__imagen picture img { height: 220px; }
    .srv-card__content { padding: 22px 20px 0; }
    .srv-card__content h3 { font-size: 1.25rem; }

    .p-srv-proceso { text-align: left; }
    .p-srv-section-label { text-align: center; justify-content: center; }
    .p-srv-section-title { text-align: center; font-size: 1.8rem; margin-bottom: 28px; }

    .p-srv-proceso-contenedor { flex-direction: column; gap: 0; }
    .p-srv-columna-izq        { width: 100%; flex: none; }
    .p-srv-linea-vertical     { display: none; }
    .p-srv-proceso-panel      { display: none; }
    .p-srv-btn-pausa          { display: none !important; }

    .p-srv-proceso-item {
        padding: 14px 16px;
        margin-bottom: 4px;
        border-radius: 10px;
    }

    .p-srv-proceso-item:hover,
    .p-srv-proceso-item.p-srv-proceso-activo { transform: none; }

    .p-srv-paso-num    { width: 38px; height: 38px; font-size: 11px; }
    .p-srv-paso-titulo { font-size: 14px; }
    .p-srv-paso-sub    { font-size: 11px; }
    .p-srv-paso-flecha { display: none; }
}

/* =====================================================
   RESPONSIVE — móvil (≤576px)
   ===================================================== */
@media (max-width: 576px) {
    .srv-hero-inner        { padding: 50px 5%; }
    .srv-servicios-detalle { padding: 40px 5%; }
    .p-srv-proceso         { padding: 40px 5%; }
    .srv-cta               { padding: 44px 5%; }

    .srv-card__imagen picture img { height: 200px; }
    .srv-card__content { padding: 20px 18px 0; }
    .srv-card__content h3 { font-size: 1.15rem; }
    .srv-card__content::after { font-size: 4.5rem; }

    .srv-btn-solicitar {
        width: 100%;
        align-self: stretch;
        display: block;
        box-sizing: border-box;
        padding: 13px;
        text-align: center;
        border-radius: 24px;
    }

    .p-srv-section-title { font-size: 1.6rem; }
    .p-srv-proceso-item  { padding: 12px 14px; }
    .p-srv-paso-num      { width: 34px; height: 34px; font-size: 10px; }

    .p-srv-mobile-card { padding: 16px; }
    .p-srv-mobile-card .p-srv-panel-titulo { font-size: 1.15rem; }
    .p-srv-mobile-card .p-srv-panel-texto  { font-size: 0.85rem; }

    .srv-cta__botones { flex-direction: column; align-items: stretch; }
    .srv-btn-verde,
    .srv-btn-outline  { text-align: center; justify-content: center; padding: 13px; }
    .p-srv-btn-pausa  { display: none !important; }
}



/* ============================================================
   VISTA: NOSOTROS  —  estilos completos
   Prefijo: .nosotros__
   ============================================================ */

/* ===== HERO ===== */
.nosotros__hero {
    background: linear-gradient(160deg, #2e2e2e 0%, #3d3d3d 60%, #444 100%);
    padding: 90px 10%;
    position: relative;
    overflow: hidden;
}
.nosotros__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,189,46,0.18) 0%, transparent 55%);
    pointer-events: none;
}
.nosotros__hero-tag {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--verde-claro);
    margin-bottom: 18px;
    display: block;
}
.nosotros__hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #ececec;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 680px;
}
.nosotros__hero p {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 1.05rem;
    color: rgba(220,220,220,0.75);
    max-width: 560px;
    line-height: 1.75;
}

/* ===== HISTORIA ===== */
.nosotros__historia {
    background: var(--crema);
    padding: 96px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}
.nosotros__historia::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gris-claro) 20%, var(--gris-claro) 80%, transparent);
}
.nosotros__historia-texto {
    position: relative;
    display: flex;
    flex-direction: column;
}
.nosotros__label-left {
    font-family: 'Courier New', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--verde-oscuro);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.nosotros__label-left::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--verde);
    flex-shrink: 0;
}
.nosotros__historia h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    color: var(--gris-oscuro);
    line-height: 1.18;
    margin-bottom: 22px;
}
.nosotros__pull-quote {
    margin-bottom: 22px;
    padding: 16px 20px 16px 24px;
    border-left: 3px solid var(--verde);
    background: rgba(139,189,46,0.055);
    position: relative;
}
.nosotros__pull-quote p {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 0.98rem;
    color: var(--gris-oscuro);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}
.nosotros__historia-parrafos {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}
.nosotros__historia p {
    font-family: 'Trebuchet MS', sans-serif;
    color: var(--gris);
    line-height: 1.85;
    font-size: 0.96rem;
}
.nosotros__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.nosotros__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border: 1.5px solid var(--gris-claro);
    font-family: 'Courier New', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gris);
    background: var(--blanco);
    transition: border-color 0.2s, color 0.2s;
    cursor: default;
}
.nosotros__chip:hover { border-color: var(--verde); color: var(--verde-oscuro); }
.nosotros__chip-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--verde);
    flex-shrink: 0;
}

/* ── Mapa ── */
.nosotros__foto-wrap { position: relative; top: 4px; }
.nosotros__mapa-card {
    width: 100%;
    background: var(--blanco);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 14px 44px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.nosotros__mapa-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 24px 60px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}
.nosotros__mapa-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--verde-oscuro), var(--verde), var(--verde-claro));
    z-index: 2;
}
.nosotros__mapa-svg-area {
    width: 100%;
    padding: 36px 44px 28px;
    background:
        radial-gradient(ellipse at 58% 42%, rgba(139,189,46,0.09) 0%, transparent 65%),
        linear-gradient(175deg, #ecf0e6 0%, #f3f3f1 55%, var(--blanco) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.nosotros__mapa-svg-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(139,189,46,0.13) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
}
.nosotros__mapa-rings {
    position: absolute;
    top: 50%; left: 48%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.nosotros__mapa-svg-container {
    width: 100%;
    max-width: 340px;
    position: relative;
    z-index: 1;
}
.nosotros__mapa-svg {
    width: 100%; height: auto; overflow: visible;
    filter: drop-shadow(0 6px 16px rgba(139,189,46,0.18));
}
.mapa-pulso--1 { animation: mapaOnda 2.6s ease-out infinite; }
.mapa-pulso--2 { animation: mapaOnda 2.6s ease-out infinite 0.85s; }
@keyframes mapaOnda { 0%{r:2;opacity:0.5} 100%{r:16;opacity:0} }
.nosotros__mapa-info {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    background: var(--blanco);
}
.nosotros__mapa-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--verde);
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 14px 7px 10px;
}
.nosotros__mapa-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.nosotros__mapa-desc {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.85rem;
    color: var(--gris);
    line-height: 1.7;
    margin: 0;
    max-width: 270px;
}
.nosotros__mapa-divider { width: 100%; height: 1px; background: var(--gris-claro); }
.nosotros__mapa-data { display: flex; align-items: stretch; width: 100%; }
.nosotros__mapa-dato {
    flex: 1;
    display: flex; flex-direction: column; align-items: center;
    gap: 3px; padding: 4px 0;
}
.nosotros__mapa-dato strong {
    font-family: Georgia, serif;
    font-size: 1rem; font-weight: 700; color: var(--gris-oscuro);
}
.nosotros__mapa-dato span {
    font-family: 'Courier New', monospace;
    font-size: 0.63rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--gris-medio);
}
.nosotros__mapa-separador {
    width: 1px; background: var(--gris-claro);
    align-self: stretch; margin: 4px 0;
}
.nosotros__mapa-footer {
    width: 100%;
    padding: 10px 20px;
    background: #f5f5f3;
    border-top: 1px solid var(--gris-claro);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nosotros__mapa-footer-text {
    font-family: 'Courier New', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.07em;
    color: var(--gris-medio);
    text-transform: uppercase;
}
.nosotros__mapa-footer-dots { display: flex; gap: 4px; }
.nosotros__mapa-footer-dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--gris-claro); }
.nosotros__mapa-footer-dots span:first-child { background: var(--verde); }
.nosotros__foto-accent {
    position: absolute; bottom: -14px; right: -14px;
    width: 72px; height: 72px;
    border-right: 2px solid var(--verde);
    border-bottom: 2px solid var(--verde);
    pointer-events: none; opacity: 0.45;
}
.nosotros__foto-accent-tl {
    position: absolute; top: -14px; left: -14px;
    width: 48px; height: 48px;
    border-left: 2px solid var(--gris-claro);
    border-top: 2px solid var(--gris-claro);
    pointer-events: none;
}

/* ===== SECTION HEADER (compartido) ===== */
.nosotros__section-header { text-align: center; margin-bottom: 50px; }
.nosotros__section-label {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gris-oscuro);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}
.nosotros__section-label::before,
.nosotros__section-label::after {
    content: '';
    display: inline-block;
    width: 22px; height: 2px;
    background: var(--verde);
    flex-shrink: 0;
}
.nosotros__section-title {
    font-family: Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--gris-oscuro);
}

/* ===== VALORES ===== */
.nosotros__valores {
    background: #3d3d3d;
    padding: 80px 10%;
}
.nosotros__valores .nosotros__section-title { color: #ececec; }
.nosotros__valores .nosotros__section-title em { font-style: normal; color: var(--verde); }
.nosotros__valores .nosotros__section-label { color: var(--verde-claro); }
.nosotros__valores .nosotros__section-label::before,
.nosotros__valores .nosotros__section-label::after { background: var(--verde-claro); }

.nosotros__valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(0,0,0,0.2);
}
.nosotros__valor-card {
    background: #444;
    padding: 28px 24px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    border-left: none;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.22s ease, transform 0.22s ease;
}
.nosotros__valor-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--verde);
    transition: width 0.3s ease;
}
.nosotros__valor-card:hover { background: #4a4a4a; transform: translateY(-2px); }
.nosotros__valor-card:hover::after { width: 100%; }
.nosotros__valor-card:hover .nosotros__valor-icon-wrap {
    color: var(--verde-claro);
    transform: scale(1.12) rotate(-4deg);
}
.nosotros__valor-icon-wrap {
    flex-shrink: 0;
    width: 38px; height: 38px;
    background: rgba(139,189,46,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    padding: 8px;
    color: var(--verde);
    transition: color 0.22s, transform 0.22s;
}
.nosotros__valor-icon-wrap svg { width: 100%; height: 100%; }
.nosotros__valor-body { flex: 1; }
.nosotros__valor-card h4 {
    font-family: Georgia, serif;
    font-size: 1rem;
    color: #ececec;
    margin-bottom: 6px;
}
.nosotros__valor-card p {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.85rem;
    color: #999;
    line-height: 1.75;
    margin: 0;
}

/* ===== CTA ===== */
.nosotros__cta {
    background: var(--verde-oscuro);
    padding: 36px 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    box-shadow: inset 0 6px 18px rgba(0,0,0,0.18);
}
.nosotros__cta-title {
    font-family: Georgia, serif;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 400;
    margin: 0;
}
.nosotros__cta-btn {
    background: #fff;
    color: var(--verde-oscuro);
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nosotros__cta-btn:hover  { background: #e8f4c8; transform: scale(1.03); }
.nosotros__cta-btn:active { transform: scale(0.97); }

/* ===== EQUIPO ===== */
.nosotros__equipo {
    background: var(--crema);
    padding: 80px 10%;
}
.nosotros__equipo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ── Card ── */
.nosotros__miembro-card {
    background: #fff;
    border: 0.5px solid var(--gris-claro);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.nosotros__miembro-card:hover {
    border-color: var(--verde);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(139,189,46,0.13);
}

/* ── Top: foto circular centrada + nombre ── */
.nosotros__miembro-top {
    padding: 28px 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    /* línea verde decorativa abajo del top */
    border-bottom: 0.5px solid var(--gris-claro);
}

/* Foto circular — imagen real */
.nosotros__miembro-foto {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gris-claro);
    display: block;
    transition: border-color 0.25s;
    flex-shrink: 0;
}
.nosotros__miembro-card:hover .nosotros__miembro-foto {
    border-color: var(--verde);
}

/* Placeholder cuando no hay foto */
.nosotros__miembro-foto--placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0f0ee;
    border: 3px solid var(--gris-claro);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--verde);
    flex-shrink: 0;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.nosotros__miembro-card:hover .nosotros__miembro-foto--placeholder {
    border-color: var(--verde);
    background: #e8f4c8;
    color: var(--verde-oscuro);
}

.nosotros__miembro-nombre {
    font-family: Georgia, serif;
    font-size: 1rem;
    color: var(--gris-oscuro);
    margin: 0;
    line-height: 1.2;
}
.nosotros__miembro-cargo {
    font-family: 'Courier New', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--verde-oscuro);
    display: block;
    font-weight: 600;
    line-height: 1.5;
    max-width: 200px;
}

/* ── Body: bio con clamp ── */
.nosotros__miembro-body {
    flex: 1;
    padding: 14px 18px 4px;
}

.nosotros__miembro-bio-wrap {
    overflow: hidden;
    max-height: calc(1.75em * 3);
    transition: max-height 0.4s ease;
    position: relative;
}
.nosotros__miembro-bio-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 28px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
    transition: opacity 0.3s;
}
.nosotros__miembro-bio-wrap.open {
    max-height: 500px;
}
.nosotros__miembro-bio-wrap.open::after {
    opacity: 0;
}

.nosotros__miembro-bio {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.84rem;
    color: var(--gris);
    line-height: 1.75;
    margin: 0;
    text-align: center;
}

/* Botón toggle */
.nosotros__miembro-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--verde-oscuro);
    padding: 10px 0 12px;
    transition: color 0.2s;
}
.nosotros__miembro-toggle:hover { color: var(--verde); }
.nosotros__toggle-ico {
    width: 13px; height: 13px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* ── Footer: email ── */
.nosotros__miembro-footer {
    padding: 10px 18px 16px;
    border-top: 0.5px solid var(--gris-claro);
}
.nosotros__miembro-email {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: none;
    border: 0.5px solid var(--gris-claro);
    border-radius: 6px;
    cursor: pointer;
    padding: 7px 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: var(--gris-medio);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    width: 100%;
    position: relative;
    overflow: hidden;
    text-align: left;
}
.nosotros__miembro-email svg {
    width: 14px; height: 14px;
    flex-shrink: 0;
}
.nosotros__miembro-email:hover {
    border-color: var(--verde);
    color: var(--verde-oscuro);
    background: rgba(139,189,46,0.05);
}
.nosotros__email-txt {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.nosotros__email-feedback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139,189,46,0.12);
    color: var(--verde-oscuro);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}
.nosotros__miembro-email.copiado .nosotros__email-feedback { opacity: 1; }
.nosotros__miembro-email.copiado .nosotros__email-txt      { opacity: 0; }
.nosotros__miembro-email.copiado                           { border-color: var(--verde); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* PC grande (≤1200px) */
@media (max-width: 1200px) {
    .nosotros__hero     { padding: 80px 7%; }
    .nosotros__historia { padding: 80px 6%; gap: 60px; }
    .nosotros__valores  { padding: 70px 7%; }
    .nosotros__cta      { padding: 34px 7%; }
    .nosotros__equipo   { padding: 70px 7%; }
}

/* Laptop (≤992px) */
@media (max-width: 992px) {
    .nosotros__historia     { padding: 64px 5%; gap: 40px; }

    .nosotros__valores      { padding: 64px 5%; }
    .nosotros__valores-grid { grid-template-columns: repeat(2, 1fr); }

    .nosotros__cta          { padding: 30px 5%; gap: 20px; }

    .nosotros__equipo       { padding: 64px 5%; }
    .nosotros__equipo-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
    .nosotros__hero     { padding: 60px 6%; }
    .nosotros__hero h1  { font-size: 1.9rem; }

    .nosotros__historia { grid-template-columns: 1fr; padding: 56px 6%; gap: 40px; }

    .nosotros__valores      { padding: 56px 6%; }
    .nosotros__valores-grid { grid-template-columns: repeat(2, 1fr); }
    .nosotros__valor-card   { padding: 20px 16px; gap: 12px; }
    .nosotros__valor-icon-wrap { width: 32px; height: 32px; }

    .nosotros__cta       { flex-direction: column; text-align: center; gap: 14px; padding: 28px 6%; }
    .nosotros__cta-title { font-size: 1.1rem; }
    .nosotros__cta-btn   { width: 100%; text-align: center; max-width: 280px; }

    .nosotros__equipo      { padding: 56px 6%; }
    .nosotros__equipo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet pequeña / móvil grande (≤600px) */
@media (max-width: 600px) {
    .nosotros__historia { padding: 48px 5%; }

    .nosotros__valores      { padding: 48px 5%; }
    .nosotros__valores-grid { grid-template-columns: 1fr; }

    .nosotros__equipo      { padding: 48px 5%; }
    .nosotros__equipo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    .nosotros__section-header { margin-bottom: 32px; }

    /* foto más pequeña en 2 cols */
    .nosotros__miembro-foto,
    .nosotros__miembro-foto--placeholder { width: 64px; height: 64px; font-size: 15px; }

    .nosotros__miembro-top    { padding: 20px 14px 12px; }
    .nosotros__miembro-nombre { font-size: 0.9rem; }

    /* email: solo ícono */
    .nosotros__email-txt     { display: none; }
    .nosotros__miembro-email { width: auto; justify-content: center; }
}

/* Celular (≤576px) */
@media (max-width: 576px) {
    .nosotros__hero     { padding: 40px 5%; }
    .nosotros__hero-tag { font-size: 0.75rem; }

    .nosotros__historia { padding: 40px 5%; gap: 32px; }

    .nosotros__valores      { padding: 40px 5%; }
    .nosotros__valores-grid { grid-template-columns: 1fr; gap: 1px; }
    .nosotros__valor-card   { flex-direction: row; padding: 16px 14px; gap: 12px; }
    .nosotros__valor-card h4 { font-size: 0.9rem; }
    .nosotros__valor-card p  { font-size: 0.8rem; }

    .nosotros__cta       { padding: 24px 5%; }
    .nosotros__cta-title { font-size: 1rem; }
    .nosotros__cta-btn   { max-width: 100%; }

    .nosotros__equipo      { padding: 40px 5%; }
    /* 1 col en móvil muy pequeño */
    .nosotros__equipo-grid { grid-template-columns: 1fr; gap: 10px; }

    .nosotros__miembro-foto,
    .nosotros__miembro-foto--placeholder { width: 72px; height: 72px; font-size: 16px; }

    .nosotros__miembro-top    { padding: 22px 16px 14px; }
    .nosotros__miembro-body   { padding: 12px 16px 4px; }
    .nosotros__miembro-footer { padding: 8px 16px 14px; }
    .nosotros__miembro-bio    { font-size: 0.82rem; text-align: left; }

    /* email solo ícono */
    .nosotros__email-txt     { display: none; }
    .nosotros__miembro-email { width: auto; justify-content: center; }

    .nosotros__chips { gap: 6px; }
    .nosotros__chip  { font-size: 0.62rem; padding: 4px 10px; }
    .nosotros__mapa-svg-area { padding: 24px 20px 20px; }
    .nosotros__mapa-info     { padding: 18px 16px; }
}





/* ============================================================
   VISTA: CONTACTO
   Prefijo: .contacto__
   Todas las clases de esta vista usan este prefijo para
   evitar conflictos con otras vistas del proyecto.
   ============================================================ */
   


.contacto__recaptcha-aviso {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.75rem;
    color: var(--gris-medio);
    margin-bottom: 14px;
    line-height: 1.5;
}

.contacto__recaptcha-aviso a {
    color: var(--verde-oscuro);
    text-decoration: underline;
}

/* ===== HERO ===== */
.contacto__hero {
    background: linear-gradient(160deg, #2e2e2e 0%, #3d3d3d 60%, #444 100%);
    padding: 90px 10%;
    position: relative;
    overflow: hidden;
}

.contacto__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,189,46,0.18) 0%, transparent 55%);
    pointer-events: none;
}

.contacto__hero-tag {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--verde-claro);
    margin-bottom: 18px;
    display: block;
}

.contacto__hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #ececec;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 680px;
}

.contacto__hero p {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 1.05rem;
    color: rgba(220,220,220,0.75);
    max-width: 560px;
    line-height: 1.75;
}

/* ===== SECCIÓN PRINCIPAL ===== */
.contacto__main {
    background: var(--crema);
    padding: 80px 10%;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 70px;
    align-items: start;
}

/* ===== INFO LATERAL ===== */
.contacto__label-left {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gris-oscuro);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contacto__label-left::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--verde);
    flex-shrink: 0;
}

.contacto__info h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    color: var(--gris-oscuro);
    line-height: 1.25;
    margin-bottom: 16px;
}

.contacto__info > p {
    font-family: 'Trebuchet MS', sans-serif;
    color: var(--gris);
    line-height: 1.85;
    font-size: 0.97rem;
    margin-bottom: 36px;
}

.contacto__dato {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 26px;
}

.contacto__dato-icono {
    width: 42px;
    height: 42px;
    background: var(--verde);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: #fff;
}

.contacto__dato-texto strong {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gris-medio);
    display: block;
    margin-bottom: 4px;
}

.contacto__dato-texto span,
.contacto__dato-texto a {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.97rem;
    color: var(--gris-oscuro);
    text-decoration: none;
}

.contacto__dato-texto a:hover { color: var(--verde-oscuro); }

.contacto__btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    background: var(--verde);
    color: #fff;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.25s, transform 0.2s;
    box-sizing: border-box;
}

.contacto__btn-whatsapp:hover {
    background: var(--verde-oscuro);
    transform: translateY(-2px);
}

/* ===== FORMULARIO — Floating Labels ===== */
.contacto__form-card {
    background: #fff;
    padding: 44px 40px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border-radius: 12px;
}

.contacto__form-card h3 {
    font-family: Georgia, serif;
    font-size: 1.45rem;
    color: var(--gris-oscuro);
    margin-bottom: 6px;
}

.contacto__form-subtitulo {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.9rem;
    color: var(--gris-medio);
    margin-bottom: 30px;
}

.contacto__alert {
    padding: 14px 18px;
    margin-bottom: 24px;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.92rem;
    border-left: 3px solid;
}

.contacto__alert--success {
    background: rgba(139,189,46,0.1);
    border-color: var(--verde);
    color: var(--verde-oscuro);
}

.contacto__alert--error {
    background: rgba(180,30,30,0.07);
    border-color: #c0392b;
    color: #c0392b;
}

.contacto__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* ── Grupo con label flotante ── */
.contacto__form-group {
    position: relative;
    margin-bottom: 20px;
}

.contacto__form-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.9rem;
    color: var(--gris-medio);
    pointer-events: none;
    transition: top .2s, font-size .2s, color .2s, transform .2s;
    background: transparent;
    padding: 0 4px;
}

.contacto__form-group:has(textarea) label {
    top: 18px;
    transform: none;
}

.contacto__form-group input:focus ~ label,
.contacto__form-group input:not(:placeholder-shown) ~ label,
.contacto__form-group select:focus ~ label,
.contacto__form-group textarea:focus ~ label,
.contacto__form-group textarea:not(:placeholder-shown) ~ label {
    top: -1px;
    transform: translateY(-50%);
    font-size: 0.72rem;
    color: var(--verde-oscuro);
    font-weight: 700;
    background: #fff;
}

.contacto__form-group:has(textarea) textarea:focus ~ label,
.contacto__form-group:has(textarea) textarea:not(:placeholder-shown) ~ label {
    top: -1px;
    transform: none;
}

.contacto__form-group:has(select) label {
    top: -1px;
    transform: translateY(-50%);
    font-size: 0.72rem;
    color: var(--verde-oscuro);
    font-weight: 700;
    background: #fff;
}

/* ── Inputs ── */
.contacto__input {
    width: 100%;
    padding: 14px 15px;
    border: 1.5px solid var(--gris-claro);
    border-radius: 8px;
    background: #fafaf8;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.95rem;
    color: var(--gris-oscuro);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    appearance: none;
}

.contacto__input:focus {
    border-color: var(--verde);
    box-shadow: 0 0 0 3px rgba(139,189,46,0.12);
}

.contacto__input.is-invalid,
.contacto__input.is-invalid-js {
    border-color: #c0392b;
}

.contacto__invalid-feedback {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.8rem;
    color: #c0392b;
    margin-top: 5px;
    display: block;
}

textarea.contacto__input {
    resize: vertical;
    min-height: 130px;
    padding-top: 20px;
}

select.contacto__input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%235c5c5c'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.contacto__form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.contacto__form-check input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--verde);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

.contacto__form-check label {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.88rem;
    color: var(--gris);
    cursor: pointer;
    line-height: 1.6;
}

.contacto__requerido {
    color: var(--verde);
    margin-left: 2px;
}

/* ── Botón enviar ── */
.contacto__btn-enviar {
    width: 100%;
    padding: 15px;
    background: var(--verde);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}

.contacto__btn-enviar:hover  { background: var(--verde-oscuro); transform: translateY(-2px); }
.contacto__btn-enviar:active { transform: translateY(0); }
.contacto__btn-enviar:disabled { background: var(--gris-medio); cursor: not-allowed; transform: none; }

/* ===== FAQ ===== */
.contacto__faq {
    background: linear-gradient(180deg, #d5d5d5 0%, #e0e0e0 100%);
    padding: 80px 10%;
}

.contacto__faq-label {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gris-oscuro);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contacto__faq-label::before,
.contacto__faq-label::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--verde);
    flex-shrink: 0;
}

.contacto__faq-title {
    font-family: Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--gris-oscuro);
    text-align: center;
    margin-bottom: 48px;
}

.contacto__faq-lista {
    max-width: 780px;
    margin: 0 auto;
}

.contacto__faq-item {
    background: #fff;
    margin-bottom: 10px;
    border-left: 3px solid transparent;
    transition: border-color 0.25s;
}

.contacto__faq-item.open { border-left-color: var(--verde); }

.contacto__faq-pregunta {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: Georgia, serif;
    font-size: 1.02rem;
    color: var(--gris-oscuro);
    text-align: left;
}

.contacto__faq-icono {
    font-size: 1.2rem;
    color: var(--verde);
    flex-shrink: 0;
    transition: transform 0.3s;
    font-weight: 700;
}

.contacto__faq-item.open .contacto__faq-icono { transform: rotate(45deg); }

.contacto__faq-respuesta {
    display: none;
    padding: 0 24px 20px;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.93rem;
    color: var(--gris);
    line-height: 1.8;
}

.contacto__faq-item.open .contacto__faq-respuesta { display: block; }

/* ── MODAL (cfm__) ── */
.cfm__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(2px);
    animation: cfm-fadein 0.2s ease;
}

.cfm__overlay.cfm--visible { display: flex; }

@keyframes cfm-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.cfm__box {
    border-radius: 10px;
    overflow: hidden;
    max-width: 360px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    animation: cfm-slidein 0.25s ease;
}

@keyframes cfm-slidein {
    from { transform: translateY(-20px); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.cfm__head {
    padding: 28px 28px 26px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2e2e2e 0%, #3d3d3d 60%, #444 100%);
}

.cfm__head--ok::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,189,46,0.22) 0%, transparent 60%);
    pointer-events: none;
}

.cfm__head--err::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(192,57,43,0.22) 0%, transparent 60%);
    pointer-events: none;
}

.cfm__top-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.cfm__tag {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 7px;
}

.cfm__tag::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    flex-shrink: 0;
}

.cfm__tag--ok  { color: #8bbd2e; }
.cfm__tag--ok::before  { background: #8bbd2e; }
.cfm__tag--err { color: #e07060; }
.cfm__tag--err::before { background: #e07060; }

.cfm__circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
}

.cfm__circle--ok  { background: rgba(139,189,46,0.18); border: 1.5px solid rgba(139,189,46,0.38); }
.cfm__circle--err { background: rgba(192,57,43,0.18);  border: 1.5px solid rgba(192,57,43,0.38); }
.cfm__circle svg  { width: 20px; height: 20px; }

.cfm__titulo {
    font-family: Georgia, serif;
    font-size: 1.18rem;
    color: #ececec;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.cfm__texto {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.83rem;
    color: rgba(220,220,220,0.65);
    line-height: 1.65;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cfm__btn {
    display: block;
    width: 100%;
    padding: 12px;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    letter-spacing: .05em;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: opacity 0.2s;
}

.cfm__btn:hover   { opacity: 0.88; }
.cfm__btn--ok     { background: #8bbd2e; }
.cfm__btn--err    { background: #c0392b; }

/* ── TOAST (cft__) ── */
.cft__container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.cft__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 6px;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.88rem;
    line-height: 1.5;
    pointer-events: all;
    animation: cft-entrada 0.3s ease;
    border-left: 4px solid transparent;
}

@keyframes cft-entrada {
    from { transform: translateX(40px); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

.cft__item--salida { animation: cft-salida 0.3s ease forwards; }

@keyframes cft-salida {
    to { transform: translateX(40px); opacity: 0; }
}

.cft__item--error   { background: #fff5f5; border-color: #c0392b; color: #7b1f1f; }
.cft__item--warning { background: #fffbf0; border-color: #e6a817; color: #7a5200; }

.cft__icono { font-size: 1.15rem; flex-shrink: 0; margin-top: 1px; }
.cft__mensaje { flex: 1; }
.cft__mensaje strong { display: block; margin-bottom: 2px; }

.cft__cerrar {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: inherit;
    opacity: 0.5;
    padding: 0 0 0 6px;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.cft__cerrar:hover { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contacto__main      { grid-template-columns: 1fr; gap: 40px; }
    .contacto__form-row  { grid-template-columns: 1fr 1fr; }
    .contacto__ubicacion { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .contacto__hero { padding: 60px 6%; }

    .contacto__main { padding: 40px 5%; gap: 32px; }

    .contacto__form-card { padding: 28px 18px; box-shadow: none; }

    .contacto__form-card h3 { font-size: 1.25rem; }

    .contacto__form-row { grid-template-columns: 1fr 1fr; gap: 12px; }

    .contacto__input { font-size: 16px; }

    .contacto__btn-whatsapp {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .contacto__faq { padding: 50px 5%; }
    .contacto__faq-pregunta  { padding: 16px; font-size: 0.95rem; }
    .contacto__faq-respuesta { padding: 0 16px 16px; }

    .cft__container { bottom: 16px; right: 16px; left: 16px; }
    .cft__item { min-width: unset; max-width: 100%; }

    .cfm__box { max-width: 100%; }
}





/* ============================================================
============================================================
============================================================

   VISTA: PRIVACIDAD
   Prefijo: pp__

============================================================   
============================================================
============================================================*/



/* ============================================================
   VISTA: PRIVACIDAD
   Prefijo: pp__
   ============================================================ */

/* ============================================================
   VISTA: PRIVACIDAD
   Prefijo: pp__
   ============================================================ */

/* ===== HERO ===== */
.pp__hero {
    background: linear-gradient(160deg, #2e2e2e 0%, #3d3d3d 60%, #444 100%);
    padding: 90px 10%;
    position: relative;
    overflow: hidden;
}

.pp__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,189,46,0.18) 0%, transparent 55%);
    pointer-events: none;
}

.pp__hero-tag {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--verde-claro);
    margin-bottom: 18px;
    display: block;
}

.pp__hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #ececec;
    line-height: 1.15;
    margin-bottom: 14px;
    max-width: 680px;
}

.pp__hero p {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.92rem;
    color: rgba(220,220,220,0.55);
    line-height: 1.6;
}

/* ===== LAYOUT PRINCIPAL ===== */
.pp__main {
    background: var(--crema);
    padding: 70px 10%;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    align-items: start;
}

/* ===== ÍNDICE LATERAL ===== */
.pp__indice-inner {
    position: sticky;
    top: 28px;
    background: #fff;
    border-radius: 8px;
    padding: 24px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.pp__indice-titulo {
    font-family: 'Courier New', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gris-medio);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0ee;
}

.pp__indice-titulo::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 2px;
    background: var(--verde);
    flex-shrink: 0;
}

.pp__indice nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pp__indice-link {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.8rem;
    color: var(--gris);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 4px;
    border-left: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    line-height: 1.4;
}

.pp__indice-link:hover,
.pp__indice-link.activo {
    background: rgba(139,189,46,0.08);
    color: var(--verde-oscuro);
    border-left-color: var(--verde);
}

/* ===== CONTENIDO ===== */
.pp__contenido {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ===== TIPO D: Mini hero por sección ===== */
.pp__sec-d {
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    scroll-margin-top: 32px;
}

.pp__sec-d__head {
    background: linear-gradient(135deg, #2e2e2e 0%, #3d3d3d 60%, #444 100%);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.pp__sec-d__head::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,189,46,0.18) 0%, transparent 55%);
    pointer-events: none;
}

.pp__sec-d__num {
    font-family: 'Courier New', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(139,189,46,0.35);
    line-height: 1;
    position: relative;
    flex-shrink: 0;
}

.pp__sec-d__head h2 {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    color: #ececec;
    position: relative;
    line-height: 1.25;
}

.pp__sec-d__body {
    background: #fff;
    padding: 26px 28px;
}

.pp__sec-d__body p {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.95rem;
    color: var(--gris);
    line-height: 1.85;
    margin-bottom: 14px;
}

.pp__sec-d__body p:last-child { margin-bottom: 0; }

.pp__sec-d__body a {
    color: var(--verde-oscuro);
    text-decoration: underline;
}

.pp__sec-d__body a:hover { color: var(--verde); }

/* ===== BLOQUES INFORMATIVOS ===== */
.pp__bloque {
    background: #f9f9f7;
    border-left: 3px solid var(--verde);
    padding: 16px 20px;
    margin: 14px 0;
    border-radius: 0 6px 6px 0;
}

.pp__bloque--destacado {
    background: rgba(139,189,46,0.06);
    border-left-color: var(--verde-oscuro);
}

.pp__bloque-titulo {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--verde-oscuro);
    margin-bottom: 8px;
}

.pp__bloque p {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.92rem;
    color: var(--gris);
    line-height: 1.8;
    margin-bottom: 10px;
}

.pp__bloque p:last-child { margin-bottom: 0; }

.pp__bloque a {
    color: var(--verde-oscuro);
    text-decoration: underline;
}

/* ===== LISTAS ===== */
.pp__lista {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
}

.pp__lista li {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.93rem;
    color: var(--gris);
    line-height: 1.75;
    padding: 6px 0 6px 22px;
    position: relative;
    border-bottom: 1px solid #f5f5f3;
}

.pp__lista li:last-child { border-bottom: none; }

.pp__lista li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--verde);
    font-weight: 700;
}

.pp__lista--compacta li {
    padding: 3px 0 3px 22px;
    border-bottom: none;
    font-size: 0.88rem;
}

/* ===== BOTÓN VOLVER ===== */
.pp__volver {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #eaeae8;
}

.pp__btn-volver {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gris-oscuro);
    text-decoration: none;
    padding: 10px 20px;
    border: 1.5px solid var(--gris-claro);
    border-radius: 4px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.pp__btn-volver:hover {
    border-color: var(--verde);
    color: var(--verde-oscuro);
    background: rgba(139,189,46,0.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .pp__main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 6%;
    }

    .pp__indice-inner { position: static; }

    .pp__indice nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
    }

    .pp__indice-link {
        border-left: none;
        border-bottom: 2px solid transparent;
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .pp__indice-link:hover,
    .pp__indice-link.activo {
        border-left-color: transparent;
        border-bottom-color: var(--verde);
    }
}

@media (max-width: 600px) {
    .pp__hero { padding: 60px 6%; }
    .pp__main  { padding: 40px 5%; }

    .pp__sec-d__head { padding: 18px 20px; gap: 12px; }
    .pp__sec-d__num  { font-size: 1.1rem; }
    .pp__sec-d__head h2 { font-size: 1rem; }
    .pp__sec-d__body { padding: 20px; }
}