* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #100D0B;
    color: #E7DDC8;
    font-family: "Source Sans 3", sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 120px;

    z-index: 1000;

    background: linear-gradient(
        to bottom,
        rgba(13, 12, 11, 0.96) 0%,
        rgba(13, 12, 11, 0.85) 35%,
        rgba(13, 12, 11, 0.45) 70%,
        rgba(13, 12, 11, 0) 100%
    );
}

/* CONTENIDO DEL HEADER */

.header-contenido {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-marca {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    color: inherit;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.header-nav a {
    position: relative;
}

.header-nav {
    position: relative;

    display: flex;
    align-items: center;
    gap: 38px;
}

.header-nav a {
    position: relative;

    font-family: "Source Sans 3", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-decoration: none;

    color: #E7DDC8;

    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: #C3AB88;
}

.header-nav a.activo {
    color: #C3AB88;
}


/* INDICADOR DEL MENÚ */

.nav-indicador {
    position: absolute;

    top: calc(100% + 10px);

    width: 5px;
    height: 5px;

    background: #C3AB88;

    transform: translateX(-50%) rotate(45deg);

    transition:
        left 0.45s cubic-bezier(0.65, 0, 0.35, 1);

    pointer-events: none;
}

.nav-indicador::after {
    content: "";

    position: absolute;

    width: 76px;
    height: 1px;

    left: 50%;
    top: 50%;

    background: rgba(230, 220, 195, 0.75);

    transform: translate(-50%, -50%) rotate(-45deg);
}

.header-nav a {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-decoration: none;
    color: #E7DDC8;
}

.header-nav a {
    transition: color 0.25s ease;
}

.header-nav a:hover,
.header-nav a.activo {
    color: #C3AB88;
}

.header-marca img {
    width: 42px;
    height: auto;
    display: block;
}

.header-marca span {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    color: #E7DDC8;
}


.hero {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.hero-isotipo {
    width: 150px;
    height: auto;
    margin-bottom: 35px;
    transform: translateX(-1px);
}

.hero-logo {
    width: min(650px, 75vw);
    height: auto;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(600px, 70vw);
    margin-top: 22px;
    gap: 10px;
}

.divider-line {
    height: 1px;
    flex: 1;
    background: #E7DDC8;
    opacity: 0.7;
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background: #E7DDC8;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.hero-subtitle {
    margin-top: 16px;

    font-family: "Source Sans 3", sans-serif;
    font-size: 0.8rem;
    font-weight: 400;

    letter-spacing: 0.22em;
}

.hero-scroll {
    position: absolute;
    bottom: 35px;

    font-size: 0.7rem;
    letter-spacing: 0.3em;

    opacity: 0.6;

    transition: opacity 0.8s ease;
}

.scroll-line {
    width: 1px;
    height: 35px;
    background: #E7DDC8;
    margin: 8px auto 0;
    position: relative;
}

.scroll-diamond {
    width: 5px;
    height: 5px;
    background: #E7DDC8;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

/* ========FOLOSOFÍA========= */

.filosofia {
    position: relative;

    height: 100vh;
    min-height: 100vh;

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;
}

.filosofia-imagen {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.filosofia-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.filosofia-contenido {
    height: 100%;
    box-sizing: border-box;

    padding: 75px 50px 45px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.filosofia-numero {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    margin-bottom: 80px;
    color: #c3ab88;
}

.filosofia-contenido h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 0.95;
    margin: 0;
}

.filosofia-divisor {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 25px 0 18px;
}

.filosofia-divisor span {
    width: 80px;
    height: 1px;
    background: #E7DDC8;
}

.filosofia-divisor i {
    width: 7px;
    height: 7px;
    background: #E7DDC8;
    transform: rotate(45deg);
}

.filosofia-frase {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    margin: 0;
}

.filosofia-texto {
    margin-top: 50px;

    font-family: "Source Sans 3", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 600px;
}

/* PRINCIPIOS */

.filosofia-principios {
    width: 100%;
    box-sizing: border-box;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 24px;

    margin-top: 40px;
}

.principio {
    min-width: 0;
    text-align: center;
    padding: 0;
    position: relative;
}

/* Líneas únicamente entre principios */
.principio::after {
    content: "";
    position: absolute;

    top: 0;
    right: -12px;

    width: 1px;
    height: 100%;

    background: rgba(231, 221, 200, 0.25);
}

/* El quinto principio no lleva línea */
.principio:nth-child(5)::after {
    display: none;
}

/* ICONOS */

.principio-icono {
    width: 52px;
    height: 52px;

    margin: 0 auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.principio-icono img {
    width: 52px;
    height: 52px;
    display: block;
}

/* TEXTO DE PRINCIPIOS */

.principio p {
    width: 100%;
    max-width: none;

    margin: 0 auto;

    font-family: "Source Sans 3", sans-serif;
    font-size: 0.78rem;
    line-height: 1.5;
}

/* CIERRE DE FILOSOFÍA */

.filosofia-cierre {
    position: absolute;

    left: 50%;
    right: 0;
    bottom: 80px;

    text-align: center;
}

.cierre-linea {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cierre-linea span {
    width: 70px;
    height: 1px;
    background: #E7DDC8;
}

.cierre-diamond {
    width: 7px;
    height: 7px;
    background: #E7DDC8;
    transform: rotate(45deg);
}

.filosofia-cierre p {
    width: 100%;
    white-space: nowrap;

    margin-top: 20px;

        font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    line-height: 1.15;
    color: #c3ab88;
}

/* ========SERVICIOS========= */

.servicios {
    min-height: 100vh;
    width: 100%;

    display: flex;

    background: #100D0B;
    color: #e6dcc3;
}

/* CONTENIDO IZQUIERDO */

.servicios-contenido {
    width: 50%;
    padding: 130px 80px 60px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* NÚMERO DE SECCIÓN */

.servicios-numero {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    color: #c3ab88;

    margin-bottom: 24px;
}

/* TÍTULO */

.servicios h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 0.02em;
}

/* DIVISOR */

.servicios-divisor {
    display: flex;
    align-items: center;

    width: 220px;

    margin-top: 30px;
    margin-bottom: 36px;
}

.servicios-divisor span {
    flex: 1;

    height: 1px;

    background: rgba(230, 220, 195, 0.75);
}

.servicios-divisor i {
    width: 8px;
    height: 8px;

    margin: 0 14px;

    background: #e6dcc3;

    transform: rotate(45deg);
}

/* TEXTO INTRODUCTORIO */

.servicios-intro {
    max-width: 560px;

    margin: 0 0 28px;

    font-family: "Source Sans 3", sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.65;

    color: #e6dcc8;
}

/* LISTA DE SERVICIOS */

.servicios-lista {
    width: 100%;
}

.servicio {
    display: grid;
    grid-template-columns: 55px 1fr 30px;
    align-items: start;

    padding: 16px 0;

    border-bottom: 1px solid rgba(230, 220, 195, 0.18);

    cursor: pointer;
}

/* NÚMERO */

.servicio-numero {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;

    color: #c3ab88;
}

/* INFORMACIÓN */

.servicio-info h3 {
    margin: 0 0 10px;

    font-family: "Source Sans 3", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.servicio-info p {
    max-width: 500px;

    margin: 0;

    font-family: "Source Sans 3", sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.55;

    color: rgba(230, 220, 195, 0.85);
}

.servicio-descripcion {
    grid-column: 2 / 3;

    max-height: 0;
    opacity: 0;
    overflow: hidden;

    transform: translateY(-10px);

    transition:
        max-height 0.45s ease,
        opacity 0.3s ease,
        transform 0.45s ease;
}

.servicio.activo .servicio-descripcion {
    max-height: 150px;
    opacity: 1;
    transform: translateY(0);
}

.servicio-descripcion p {
    margin: 0 0 18px;

    font-family: "Source Sans 3", sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.55;

    color: rgba(230, 220, 195, 0.85);
}

/* SIGNO + */

.servicio-mas {
    position: relative;

    width: 18px;
    height: 18px;

    margin: 0 auto;

    display: block;
}

.servicio-mas::before,
.servicio-mas::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 14px;
    height: 1px;

    background: #e6dcc3;

    transform: translate(-50%, -50%);
}

/* Línea vertical */

.servicio-mas::after {
    transform-origin: center;
    transition: transform 0.35s ease;
    transform: translate(-50%, -50%) rotate(90deg);
}

/* ABIERTO */

.servicio.activo .servicio-mas::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Línea vertical */

.servicio-mas::after {
    transform: translate(-50%, -50%) rotate(90deg);

    transition: transform 0.35s ease;
}


/* IMAGEN DERECHA */

.servicios-imagen {
    width: 50%;
    height: 100vh;

    overflow: hidden;
}

.servicios-imagen img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

/* ========================================
PROCESO
======================================== */

.proceso {
    background: #100D0B;
    color: #E7DDC8;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.proceso {
    position: relative;
}

/* ========================================
CONTENEDOR PRINCIPAL
======================================== */

.proceso-contenido {
    padding: 125px 5% 35px;

    display: grid;
    grid-template-columns: 26% 74%;
    column-gap: 35px;

    align-items: center;

    min-height: 58vh;

    box-sizing: border-box;
}

/* ========================================
INTRODUCCIÓN — BLOQUE IZQUIERDO
======================================== */

.proceso-intro {
    align-self: center;
}

.proceso-intro .proceso-seccion-numero {
    display: block;
    margin-bottom: 25px;
}

.proceso-intro h2 {
    margin: 0 0 30px;
}

.proceso-intro .proceso-divisor {
    margin-bottom: 30px;
}

.proceso-intro p {
    margin: 0;
    max-width: 390px;
}

/* ========================================
BLOQUE IZQUIERDO
======================================== */

/* Indicador de sección */
.proceso-seccion-numero {
    display: block;

    font-family: "Source Sans 3", sans-serif;
    font-size: 0.72rem;
    font-weight: 400;

    letter-spacing: 0.28em;
    text-transform: uppercase;

    color: #C3AB88;

    margin-bottom: 20px;
}

.proceso-contenido h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.5rem, 4vw, 4.8rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: #E7DDC8;
    margin: 25px 0 30px;
}

.proceso-contenido > .proceso-intro {
    grid-column: 1;
}

/* Texto introductorio */
.proceso-intro p {
    font-family: "Source Sans 3", sans-serif;
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.55;
    color: rgba(231, 221, 200, 0.85);
    margin: 0;
    max-width: 310px;
}

/* ========================================
ETAPAS
======================================== */

.proceso-etapas {
    grid-column: 2;
    grid-row: 1;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
    margin-top: 0;
}

.proceso-etapa {
    flex: 1;
    min-width: 0;
    text-align: center;
    position: relative;
}

.proceso-etapa-numero {
    display: none;
}

/* Línea que conecta las etapas */
.proceso-etapa:not(:last-child)::after {
    content: "";
    position: absolute;

    top: 39px;
    left: calc(50% + 39px);

    width: calc(100% - 43px);
    height: 1px;

    background: rgba(195, 171, 136, 0.45);

    z-index: 1;
}

/* ========================================
NÚMERO SUPERIOR
======================================== */

.proceso-numero {
    display: block;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 500;

    letter-spacing: 0;
    color: #E7DDC8;

    margin-bottom: 8px;
}

/* ========================================
CÍRCULO
======================================== */

.proceso-etapa-icono {
    width: 78px;
    height: 78px;

    margin: 0 auto 25px;

    border: 1px solid #C3AB88;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;

    background: #100D0B;
}

.proceso-etapa-icono span {
    font-family: "Source Sans 3", sans-serif;
    font-size: 1.35rem;
    font-weight: 400;

    color: #E7DDC8;
}

/* ========================================
TÍTULO DE ETAPA
======================================== */

.proceso-etapa h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 1.15rem;
    font-weight: 500;

    letter-spacing: 0.06em;
    line-height: 1.15;

    color: #E7DDC8;

    margin: 0 0 18px;
}

/* ========================================
DESCRIPCIÓN
======================================== */

.proceso-etapa p {
    font-family: "Source Sans 3", sans-serif;

    font-size: 0.88rem;
    font-weight: 300;

    line-height: 1.55;

    color: rgba(231, 221, 200, 0.78);

    margin: 0 auto;

    max-width: 205px;
}

/* ========================================
PALABRA FINAL
======================================== */

.proceso-palabra {
    display: block;

    margin-top: 20px;

    font-family: "Source Sans 3", sans-serif;

    font-size: 0.68rem;
    font-weight: 400;

    letter-spacing: 0.28em;

    color: #C3AB88;
}

/* ========================================
ROMBO ENTRE LÍNEAS
======================================== */

.proceso-etapa:not(:last-child)::before {
    content: "◆";
    position: absolute;

    top: 39px;
    left: calc(100% + 17.5px);

    font-size: 0.35rem;
    color: #C3AB88;

    transform: translate(-50%, -50%);

    z-index: 3;
}

/* ========================================
RENDER
======================================== */

.proceso-imagen {
    width: 100%;

    height: 42vh;
    min-height: 360px;
    max-height: 470px;

    overflow: hidden;
}

.proceso-imagen img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center 68%;
}

/* ========================================
CONTACTO
======================================== */

/* ========================================
CONTACTO
======================================== */

.contacto {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 100vh;

    background: #100D0B;
    color: #E7DDC8;

    overflow: hidden;

    padding: 115px 5% 145px;

    box-sizing: border-box;
}


/* ========================================
CONTENIDO PRINCIPAL
======================================== */

.contacto-contenido {

    position: relative;
    z-index: 2;

    display: grid;

    /* IMPORTANTE:
       Evitamos 36% + 64% + gap = más de 100% */
    grid-template-columns: 34% minmax(0, 1fr);

    gap: 45px;

    align-items: center;

    width: 100%;
    max-width: 1450px;

    margin: 0 auto;
}


/* ========================================
BLOQUE IZQUIERDO
======================================== */

.contacto-intro {
    max-width: 430px;
}


.contacto-seccion-numero {

    display: block;

    font-family: "Source Sans 3", sans-serif;

    font-size: 0.72rem;

    font-weight: 400;

    letter-spacing: 0.28em;

    color: #C3AB88;

    margin-bottom: 22px;
}


.contacto-intro h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(3.2rem, 4.5vw, 4.8rem);

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -0.025em;

    color: #E7DDC8;

    margin: 0 0 22px;
}


/* ========================================
DIVISOR
======================================== */

.contacto-divisor {

    display: flex;

    align-items: center;

    width: 100%;

    max-width: 325px;

    gap: 16px;

    margin-bottom: 20px;
}


.contacto-divisor span {

    flex: 1;

    height: 1px;

    background: rgba(195, 171, 136, 0.65);
}


.contacto-divisor i {

    width: 7px;
    height: 7px;

    background: #C3AB88;

    transform: rotate(45deg);

    flex-shrink: 0;
}


/* ========================================
TEXTOS
======================================== */

.contacto-intro p {

    font-family: "Source Sans 3", sans-serif;

    font-size: 0.98rem;

    font-weight: 300;

    line-height: 1.55;

    color: rgba(231, 221, 200, 0.82);

    max-width: 390px;

    margin: 0 0 16px;
}


/* ========================================
FORMULARIO
======================================== */

.contacto-formulario {
    width: 100%;
}


.contacto-formulario form {
    width: 100%;
}


.contacto-campo {

    width: 100%;

    margin-bottom: 14px;
}

.contacto-campo input,
.contacto-campo textarea {
    transition: background 0.35s ease;
}

.contacto-campo input:hover,
.contacto-campo textarea:hover {
    background: rgba(195, 171, 136, 0.03);
}

/* ========================================
LABELS
======================================== */

.contacto-campo label {

    display: block;

    font-family: "Source Sans 3", sans-serif;

    font-size: 0.72rem;

    font-weight: 400;

    letter-spacing: 0.25em;

    color: #C3AB88;

    margin-bottom: 8px;
}


/* ========================================
INPUTS Y TEXTAREA
======================================== */

.contacto-campo input,
.contacto-campo textarea {

    display: block;

    width: 100%;

    box-sizing: border-box;

    background: transparent;

    border: 1px solid rgba(195, 171, 136, 0.65);

    border-radius: 0;

    outline: none;

    color: #E7DDC8;

    font-family: "Source Sans 3", sans-serif;

    font-size: 0.95rem;

    font-weight: 300;

    padding: 12px 16px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}


/* INPUTS */

.contacto-campo input {
    height: 46px;
}


/* TEXTAREA */

.contacto-campo textarea {

    height: 115px;

    resize: vertical;
}


/* ========================================
PLACEHOLDER
======================================== */

.contacto-campo input::placeholder,
.contacto-campo textarea::placeholder {

    color: rgba(231, 221, 200, 0.55);
}


/* ========================================
FOCUS
======================================== */

.contacto-campo input:focus,
.contacto-campo textarea:focus {

    border-color: #C3AB88;

    background: rgba(195, 171, 136, 0.025);
}


/* ========================================
BOTÓN
======================================== */

.contacto-boton {

    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 340px;
    max-width: 100%;

    height: 50px;

    margin-left: auto;

    padding: 0 22px;

    background: transparent;

    border: 1px solid #C3AB88;

    color: #E7DDC8;

    cursor: pointer;

    font-family: "Source Sans 3", sans-serif;

    font-size: 0.72rem;

    font-weight: 400;

    letter-spacing: 0.28em;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.contacto-boton:hover {

    background: #C3AB88;

    color: #100D0B;
}


.contacto-flecha {

    font-size: 1.4rem;

    line-height: 1;

    letter-spacing: 0;
}


/* ========================================
REDES
======================================== */

.contacto-redes {

    position: relative;

    z-index: 3;

    width: 100%;
    max-width: 940px;

    margin: 20px auto 0;
}


/* ========================================
TÍTULO REDES
======================================== */

.contacto-redes-titulo {

    display: flex;

    align-items: center;

    gap: 28px;

    margin-bottom: 16px;
}


.contacto-redes-titulo span {

    flex: 1;

    height: 1px;

    background: rgba(195, 171, 136, 0.45);
}


.contacto-redes-titulo h3 {

    margin: 0;

    font-family: "Source Sans 3", sans-serif;

    font-size: 0.75rem;

    font-weight: 400;

    letter-spacing: 0.35em;

    color: #C3AB88;
}


/* ========================================
LISTA
======================================== */

.contacto-redes-lista {

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 0;
}


/* ========================================
RED INDIVIDUAL
======================================== */

.contacto-red {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 0 30px;

    color: #E7DDC8;

    text-decoration: none;

    font-family: "Source Sans 3", sans-serif;

    font-size: 0.70rem;

    letter-spacing: 0.2em;

    transition: color 0.25s ease;
}


.contacto-red:not(:last-child) {

    border-right: 1px solid rgba(195, 171, 136, 0.35);
}


.contacto-red:hover {

    color: #C3AB88;
}


/* ========================================
ICONO
======================================== */

.contacto-red-icono {

    width: 48px;
    height: 48px;

    border: 1px solid #C3AB88;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


.contacto-red-icono img {

    width: 21px;
    height: 21px;

    display: block;

    object-fit: contain;
}


@media (hover: hover) {
    .contacto-red:hover .contacto-red-icono {
        background: #C3AB88;
        color: #100D0B;
    }
}

.contacto-red {
    -webkit-tap-highlight-color: transparent;
}


/* ========================================
VEGETACIÓN CONTACTO
======================================== */

.contacto-vegetacion {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;

    height: 350px;

    overflow: hidden;

    z-index: 1;

    pointer-events: none;
}


.contacto-vegetacion img {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 800px;

    display: block;
}


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

@media (max-width: 1000px) {

    .contacto {

        height: auto;
        min-height: 100vh;

        padding: 100px 7% 180px;
    }

    .contacto-contenido {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contacto-intro {

        max-width: 600px;
    }

    .contacto-formulario {

        max-width: 700px;
    }

    .contacto-redes-lista {

        flex-wrap: wrap;

        gap: 20px;
    }

    .contacto-red:not(:last-child) {

        border-right: none;
    }

    .contacto-vegetacion {

        height: 180px;
    }
}


@media (max-width: 600px) {

    .contacto {

        padding: 90px 7% 160px;
    }

    .contacto-intro h2 {

        font-size: 3.4rem;
    }

    .contacto-redes-titulo {

        gap: 15px;
    }

    .contacto-red {

        padding: 0 12px;

        flex-direction: column;

        gap: 8px;

        text-align: center;
    }

    .contacto-vegetacion {

        height: 150px;
    }
}

/* ========================================
ANIMACIÓN — HERO / INICIO
======================================== */

.hero-isotipo,
.hero-logo,
.hero-divider,
.hero-subtitle {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 1s ease,
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ========================================
HERO VISIBLE
======================================== */

.hero.visible .hero-isotipo {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.1s;
}

.hero.visible .hero-logo {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.3s;
}

.hero.visible .hero-divider {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.5s;
}

.hero.visible .hero-subtitle {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.65s;
}


/* ========================================
DESLIZA
======================================== */

.hero-scroll {
    opacity: 0;
    transform: translateY(12px);

    transition:
        opacity 0.9s ease,
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
ANIMACIÓN — FILOSOFÍA
======================================== */

.filosofia-imagen {
    clip-path: inset(0 100% 0 0);
    transform: scale(1.08);
    transition:
        clip-path 1.4s cubic-bezier(0.77, 0, 0.175, 1),
        transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Estado inicial del contenido */

.filosofia-contenido > *:not(.filosofia-principios) {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ========================================
SECCIÓN VISIBLE
======================================== */

.filosofia.visible .filosofia-imagen {
    clip-path: inset(0 0 0 0);
    transform: scale(1);
}


/* ========================================
SECUENCIA DEL CONTENIDO
======================================== */

.filosofia.visible .filosofia-numero {
    opacity: 1;
    transform: translateY(50);

    transition-delay: 0.35s;
}

.filosofia.visible h2 {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.5s;
}

.filosofia.visible .filosofia-divisor {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.65s;
}

.filosofia.visible .filosofia-frase {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.8s;
}

.filosofia.visible .filosofia-texto {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.95s;
}


/* ========================================
PRINCIPIOS
======================================== */

.filosofia-principios .principio {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.filosofia.visible .principio:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.15s;
}

.filosofia.visible .principio:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.27s;
}

.filosofia.visible .principio:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.39s;
}

.filosofia.visible .principio:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.51s;
}

.filosofia.visible .principio:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.63s;
}


/* ========================================
CIERRE
======================================== */

.filosofia-cierre {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 0.8s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.filosofia.visible .filosofia-cierre {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 1.85s;
}

/* ========================================
ANIMACIÓN — SERVICIOS
======================================== */

.servicios-numero,
.servicios-contenido h2,
.servicios-divisor,
.servicios-intro,
.servicio {
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 0.8s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}


/* IMAGEN */

.servicios-imagen {
    clip-path: inset(0 100% 0 0);
    transform: scale(1.06);

    transition:
        clip-path 1.4s cubic-bezier(0.77, 0, 0.175, 1),
        transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ========================================
SERVICIOS — ESTADO VISIBLE
======================================== */

.servicios.visible .servicios-numero {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.servicios.visible h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.servicios.visible .servicios-divisor {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.servicios.visible .servicios-intro {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.65s;
}


/* ========================================
SERVICIOS — LISTA
======================================== */

.servicios.visible .servicio:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.75s;
}

.servicios.visible .servicio:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.87s;
}

.servicios.visible .servicio:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.99s;
}

.servicios.visible .servicio:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.11s;
}


/* ========================================
SERVICIOS — IMAGEN VISIBLE
======================================== */

.servicios.visible .servicios-imagen {
    clip-path: inset(0 0 0 0);
    transform: scale(1);
}

html,
body {
    overflow-x: hidden;
}

/* ========================================
SERVICIOS — MODO ABIERTO
======================================== */

.servicios-lista.abierto .servicio:not(.activo) {
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        transform 0.4s ease;

    transition-delay: 0s !important;
}

.servicios-lista.cerrando .servicio {
    transition-delay: 0s !important;
}

/* ========================================
SERVICIOS — HOVER
======================================== */

.servicio {
    cursor: pointer;

    /* Conservamos la animación de entrada */
    transition:
        opacity 0.8s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease;
}


/* Elementos que cambian de color */

.servicio .servicio-info h3,
.servicio .servicio-numero,
.servicio .servicio-mas {
    transition: color 0.3s ease;
}


/* HOVER — SOLO DISPOSITIVOS CON MOUSE */

@media (hover: hover) {
    .servicio:hover .servicio-info h3,
    .servicio:hover .servicio-numero,
    .servicio:hover .servicio-mas {
        color: #C3AB88;
    }
}


/* Línea inferior — SOLO DISPOSITIVOS CON MOUSE */

@media (hover: hover) {
    .servicio:hover {
        border-color: rgba(195, 171, 136, 0.45);
    }
}

/* TOQUE — MÓVIL */

.servicio.tocando .servicio-info h3,
.servicio.tocando .servicio-numero,
.servicio.tocando .servicio-mas {
    color: #C3AB88;
}

.servicio.tocando {
    border-color: rgba(195, 171, 136, 0.45);
}

/* SERVICIO ABIERTO */

.servicio.activo .servicio-info h3,
.servicio.activo .servicio-numero,
.servicio.activo .servicio-mas {
    color: #C3AB88;
}

.servicio.activo {
    border-color: rgba(195, 171, 136, 0.45);
}

/* ========================================
ANIMACIÓN — PROCESO
======================================== */

.proceso-intro,
.proceso-etapa,
.proceso-imagen {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}


/* RENDER */

.proceso-imagen {
    clip-path: inset(100% 0 0 0);

    transition:
        clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.8s ease;
}


/* ========================================
PROCESO — VISIBLE
======================================== */

.proceso.visible .proceso-intro {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}


.proceso.visible .proceso-etapa:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}


.proceso.visible .proceso-etapa:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.48s;
}


.proceso.visible .proceso-etapa:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.61s;
}


.proceso.visible .proceso-etapa:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.74s;
}


.proceso.visible .proceso-etapa:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.87s;
}


/* RENDER */

.proceso.visible .proceso-imagen {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transition-delay: 0.5s;
}

/* ========================================
ANIMACIÓN — CONTACTO
======================================== */

/* CONTENIDO IZQUIERDO */

.contacto-intro > * {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}


/* FORMULARIO */

.contacto-campo,
.contacto-boton {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.75s ease,
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}


/* REDES */

.contacto-redes {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 0.8s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ========================================
VEGETACIÓN — NACIMIENTO
======================================== */

.contacto-vegetacion {
    opacity: 0;

    transform: translateY(180px);

    transition:
        opacity 1s ease,
        transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ========================================
CONTACTO — ESTADO VISIBLE
======================================== */

/* NÚMERO */

.contacto.visible .contacto-seccion-numero {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.15s;
}


/* TÍTULO */

.contacto.visible .contacto-intro h2 {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.3s;
}


/* DIVISOR */

.contacto.visible .contacto-divisor {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.45s;
}


/* PRIMER TEXTO */

.contacto.visible .contacto-intro p:nth-of-type(1) {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.6s;
}


/* SEGUNDO TEXTO */

.contacto.visible .contacto-intro p:nth-of-type(2) {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.72s;
}


/* ========================================
CAMPOS DEL FORMULARIO
======================================== */

.contacto.visible .contacto-campo:nth-child(1) {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.35s;
}

.contacto.visible .contacto-campo:nth-child(2) {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.48s;
}

.contacto.visible .contacto-campo:nth-child(3) {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.61s;
}

/* ========================================
VALIDACIÓN DE CORREO
======================================== */

.contacto-error-correo {
    display: none;

    margin: 10px 0 18px;

    font-family: "Source Sans 3", sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.5;

    letter-spacing: 0.02em;

    color: #C3AB88;

    opacity: 0;
    transform: translateY(-4px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.contacto-error-correo span {
    opacity: 0.65;
}

.contacto-error-correo.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


/* BOTÓN */

.contacto.visible .contacto-boton {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.76s;
}


/* ========================================
EDES
======================================== */

.contacto.visible .contacto-redes {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.95s;
}


/* ========================================
VEGETACIÓN — CIERRE
======================================== */

.contacto.visible .contacto-vegetacion {
    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.85s;
}

/* ========================================
ENVÍO EXITOSO — BARRIDO VERDE
======================================== */

.contacto-boton {
    position: relative;
    overflow: hidden;
}

/* El contenido queda encima del barrido */

.contacto-boton .btn-text,
.contacto-boton .btn-icon {
    position: relative;
    z-index: 2;
}

/* BARRIDO VERDE */

.contacto-boton.exito::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: #2D4A3B;

    z-index: 1;

    animation: barrido-verde 0.7s
        cubic-bezier(0.65, 0, 0.35, 1)
        forwards;
}

@keyframes barrido-verde {

    from {
        left: -100%;
    }

    to {
        left: 0;
    }

}

/* Estado final */

.contacto-boton.exito {
    color: #E7DDC8;
    border-color: #2D4A3B;
    pointer-events: none;
}

/* Mientras está enviando */

.contacto-boton.enviando {
    opacity: 0.7;
    cursor: wait;
}

/* ========================================
   RESPONSIVE — TABLET
   Capa aislada: no modifica desktop
======================================== */

.menu-movil {
    display: none;
}

@media (max-width: 1100px) {

    .header-contenido {
        padding: 0 28px;
    }

    .header-nav {
        gap: 24px;
    }

    .filosofia-contenido {
        padding-left: 38px;
        padding-right: 38px;
    }

    .filosofia-contenido h2 {
        font-size: 3rem;
    }

    .filosofia-principios {
        gap: 12px;
    }

    .principio p {
        font-size: 0.72rem;
    }

    .servicios-contenido {
        padding-left: 55px;
        padding-right: 55px;
    }

    .servicios h2 {
    font-size: 2.5rem;
    }

    .proceso-contenido {
        grid-template-columns: 24% 76%;
        column-gap: 20px;
        padding-left: 4%;
        padding-right: 4%;
    }

    .proceso-etapas {
        gap: 10px;
    }

    .proceso-etapa p {
        font-size: 0.82rem;
    }

    .contacto-contenido {
        gap: 32px;
    }

    .contacto-contenido {
    gap: 32px;
    min-height: calc(100vh - 260px);
    align-content: center;
    }

    
}


/* ========================================
   RESPONSIVE — MÓVIL
======================================== */

@media (max-width: 768px) {

    html {
        scroll-behavior: smooth;
    }

    body {
        overflow-x: hidden;
    }


    /* ====================================
       HEADER / MENÚ
    ==================================== */

    header {
        height: 82px;
        background: linear-gradient(
            to bottom,
            rgba(13, 12, 11, 0.98) 0%,
            rgba(13, 12, 11, 0.82) 65%,
            rgba(13, 12, 11, 0) 100%
        );
    }

    .header-contenido {
        padding: 0 20px;
    }

    .header-marca {
        gap: 9px;
    }

    .header-marca img {
        width: 34px;
    }

    .header-marca span {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .menu-movil {
        display: flex;
        width: 42px;
        height: 42px;
        padding: 0;
        margin: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        position: relative;
        z-index: 1002;
    }

    .menu-movil span {
        display: block;
        width: 21px;
        height: 1px;
        background: #E7DDC8;
        transition:
            transform 0.35s ease,
            opacity 0.25s ease,
            background 0.25s ease;
    }

    .menu-movil.abierto span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-movil.abierto span:nth-child(2) {
        opacity: 0;
    }

    .menu-movil.abierto span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;

        width: min(82vw, 340px);
        height: 100dvh;

        padding: 105px 34px 40px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 26px;

        background: rgba(16, 13, 11, 0.98);

        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;

        transition:
            transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.3s ease,
            visibility 0s linear 0.45s;

        z-index: 1001;
    }

    .header-nav.menu-abierto {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;

        transition:
            transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.3s ease;
    }

    .header-nav a {
        font-size: 0.78rem;
        letter-spacing: 0.2em;
        padding: 5px 0;
    }

    .header-nav .nav-indicador {
        display: none;
    }


    /* ====================================
       HERO
    ==================================== */

    .hero {
        min-height: 100svh;
        padding: 0 24px;
    }

    .hero-isotipo {
        width: 105px;
        margin-bottom: 25px;
    }

    .hero-logo {
        width: min(88vw, 480px);
    }

    .hero-divider {
        width: 82vw;
        margin-top: 18px;
        gap: 8px;
    }

    .divider-diamond {
        width: 7px;
        height: 7px;
    }

    .hero-subtitle {
        margin-top: 13px;
        font-size: 0.64rem;
        letter-spacing: 0.16em;
        line-height: 1.5;
    }

    .hero-scroll {
        bottom: 24px;
        font-size: 0.58rem;
        letter-spacing: 0.25em;
    }

    .scroll-line {
        height: 28px;
    }


    /* ====================================
       FILOSOFÍA
    ==================================== */

    .filosofia {
        height: auto;
        min-height: 0;

        display: flex;
        flex-direction: column;

        overflow: hidden;
    }

    .filosofia-imagen {
        width: 100%;
        height: 52svh;
        min-height: 330px;
        max-height: 520px;

        flex-shrink: 0;
    }

    .filosofia-imagen img {
        object-position: center center;
    }

    .filosofia-contenido {
        width: 100%;
        height: auto;

        padding: 58px 24px 70px;

        display: block;
    }

    .filosofia-numero {
        font-size: 0.68rem;
        letter-spacing: 0.22em;
        margin-bottom: 38px;
        position: relative;
        top: -30px;
    }

    .filosofia-contenido h2 {
        font-size: clamp(2.2rem, 10vw, 3rem);
        line-height: 0.92;
    }

    .filosofia-divisor {
    width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 22px 0 17px;
    transform: none;
    }

    .filosofia-divisor span {
        width: 55px;
    }

    .filosofia-frase {
        font-size: 1.45rem;
    }

    .filosofia-texto {
        margin-top: 30px;
        max-width: none;

        font-size: 0.96rem;
        line-height: 1.7;
    }

    .filosofia-principios {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 0;

        margin-top: 38px;
    }

    .principio {
        min-height: 145px;
        padding: 12px 12px 22px;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .principio:nth-child(5) {
        grid-column: 1 / -1;
    }

    .principio::after {
        top: 10px;
        right: 0;
        height: calc(100% - 30px);
    }

    .principio:nth-child(2)::after {
        display: none;
    }

    .principio:nth-child(4)::after {
        display: none;
    }

    .principio-icono,
    .principio-icono img {
        width: 46px;
        height: 46px;
    }

    .principio-icono {
        margin-bottom: 13px;
    }

    .principio p {
        max-width: 155px;
        font-size: 0.72rem;
        line-height: 1.45;
    }

    .filosofia-cierre {
    position: static;

    grid-column: 1 / -1;

    width: 100%;

    margin-top: 25px;
    text-align: center;
    }

    .cierre-linea {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    }

    .cierre-linea span {
        display: block;
        width: 55px;
        height: 1px;
        background: #E7DDC8;
        flex-shrink: 0;
    }

    .filosofia-cierre p {
    width: 220px;
    max-width: 220px;
    margin: 16px auto 0;

    white-space: normal;
    text-align: center;

    font-size: 1.15rem;
    line-height: 1.2;
    }


    /* ====================================
       SERVICIOS
    ==================================== */

    .servicios {
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .servicios-contenido {
        width: 100%;
        padding: 62px 24px 52px;
    }

    .servicios-numero {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    margin-bottom: 28px;

    position: relative;
    top: 20px;
    }

    .servicios h2 {
        font-size: clamp(2.2rem, 9vw, 3.5rem);
        line-height: 0.92;

        position: relative;
        top: 20px;
    }

    .servicios-divisor {
        width: min(220px, 70vw);
        margin-top: 22px;
        margin-bottom: 28px;

        position: relative;
        top: 20px;
    }

    .servicios-intro {
        max-width: none;
        margin-bottom: 24px;

        font-size: 0.96rem;
        line-height: 1.65;
    }

    .servicio {
        grid-template-columns: 38px 1fr 25px;
        padding: 17px 0;
    }

    .servicio-numero {
        font-size: 1.12rem;
    }

    .servicio-info h3 {
        margin-bottom: 8px;
        font-size: 0.83rem;
        letter-spacing: 0.15em;
        line-height: 1.35;
    }

    .servicio-descripcion {
        grid-column: 2 / 4;
    }

    .servicio-descripcion p {
        font-size: 0.87rem;
        line-height: 1.6;
        margin-top: 4px;
        margin-bottom: 10px;
    }

    .servicios-imagen {
        width: 100%;
        height: 52svh;
        min-height: 330px;
        max-height: 500px;
    }

    .servicios-imagen img {
        object-position: center center;
    }


    /* ====================================
       PROCESO
    ==================================== */

    .proceso-contenido {
        padding: 64px 24px 42px;

        display: block;

        min-height: 0;
    }

    .proceso-intro {
        margin-bottom: 50px;

        position: relative;
        top: 20px;
    }

    .proceso-intro .proceso-seccion-numero {
        margin-bottom: 28px;
        
        position: relative;
        top: 20px;
    }

    .proceso-contenido h2 {
        font-size: clamp(2.8rem, 12vw, 4rem);
        line-height: 0.92;
        margin: 0 0 24px;

        position: relative;
        top: 20px;
    }

    .proceso-intro .proceso-divisor {
        margin-bottom: 24px;
        
    }

    .proceso-intro p {
        max-width: none;
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .proceso-etapas {
        display: flex;
        flex-direction: column;

        gap: 0;

        margin: 0;
    }

    .proceso-etapa {
        width: 100%;
        flex: none;

        min-height: 0;

        display: grid;
        grid-template-columns: 78px 1fr;

        column-gap: 22px;

        text-align: left;

        padding: 0 0 46px;
    }

    .proceso-etapa-numero {
        display: block;

        grid-column: 1;
        grid-row: 1 / span 4;

        align-self: start;

        font-family: "Cormorant Garamond", serif;
        font-size: 0.95rem;
        color: #C3AB88;

        margin-top: 31px;
        text-align: center;
    }

    .proceso-etapa-icono {
        grid-column: 1;
        grid-row: 1;

        width: 64px;
        height: 64px;

        margin: 0 auto;

        background: #100D0B;
    }

    .proceso-etapa-icono span {
        font-size: 1.05rem;
    }

    .proceso-etapa h3 {
        grid-column: 2;
        grid-row: 1;

        align-self: center;

        margin: 0;

        font-size: 1.15rem;
        line-height: 1.1;
    }

    .proceso-etapa p {
        grid-column: 2;
        grid-row: 2;

        max-width: none;

        margin: 10px 0 0;

        font-size: 0.88rem;
        line-height: 1.6;
    }

    .proceso-palabra {
        grid-column: 2;
        grid-row: 3;

        margin-top: 15px;

        font-size: 0.62rem;
        letter-spacing: 0.24em;
    }

    /* Línea vertical entre etapas */
    .proceso-etapa:not(:last-child)::after {
        top: 64px;
        left: 39px;

        width: 1px;
        height: calc(100% - 20px);

        background: rgba(195, 171, 136, 0.45);
    }

    /* Rombo */
    .proceso-etapa:not(:last-child)::before {
        top: auto;
        bottom: 25px;
        left: 39px;

        font-size: 0.32rem;

        transform: translate(-50%, 50%);
    }

    .proceso-imagen {
        width: 100%;
        height: 48svh;

        min-height: 300px;
        max-height: 480px;

        transform: translateY(-30px);
    }

    .proceso-imagen img {
        object-position: center center;
    }


    /* ====================================
       CONTACTO
    ==================================== */

    .contacto {
        height: auto;
        min-height: 0;

        padding: 68px 24px 190px;
    }

    .contacto-contenido {
        grid-template-columns: 1fr;
        gap: 42px;

        max-width: none;
    }

    .contacto-intro {
        max-width: none;
    }

    .contacto-seccion-numero {
        font-size: 0.68rem;
        letter-spacing: 0.22em;
        margin-bottom: 28px;

        position: relative;
        top: 20px;
    }

    .contacto-intro h2 {
        font-size: clamp(2.8rem, 12vw, 4rem);
        line-height: 0.92;

        position: relative;
        top: 20px;
    }

    .contacto-divisor {
        max-width: 260px;
        margin-bottom: 20px;

        position: relative;
        top: 20px;
    }

    .contacto-intro p {
        max-width: none;
        font-size: 0.94rem;
        line-height: 1.65;

        position: relative;
        top: 20px;
    }

    .contacto-campo {
        margin-bottom: 17px;
    }

    .contacto-campo label {
        font-size: 0.68rem;
        letter-spacing: 0.2em;
    }

    .contacto-campo input,
    .contacto-campo textarea {
        font-size: 0.92rem;
        padding: 12px 14px;
    }

    .contacto-campo input {
        height: 48px;
    }

    .contacto-campo textarea {
        height: 135px;
    }

    .contacto-boton {
        width: 100%;
        height: 52px;
        padding: 0 18px;
    }

    .contacto-redes {
        margin-top: 12px;
        max-width: none;
    }

    .contacto-redes-titulo {
        gap: 13px;
        margin-bottom: 20px;
    }

    .contacto-redes-titulo h3 {
        font-size: 0.68rem;
        letter-spacing: 0.28em;
        white-space: nowrap;
    }

    .contacto-redes-lista {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 8px;
    }

    .contacto-red {
        padding: 0 6px;

        flex-direction: column;
        gap: 8px;

        text-align: center;

        font-size: 0.62rem;
        letter-spacing: 0.16em;
    }

    .contacto-red:not(:last-child) {
        border-right: none;
    }

    .contacto-red-icono {
        width: 46px;
        height: 46px;
    }

    .contacto-red-icono img {
        width: 19px;
        height: 19px;
    }

    .contacto-vegetacion {
        height: 155px;
    }

    .contacto-vegetacion img {
        height: 420px;
        width: auto;
        min-width: 100%;
        max-width: none;
        left: 50%;
        transform: translateX(-50%);
    }


    /* ====================================
       ANIMACIONES — MÓVIL
    ==================================== */

    .filosofia-imagen {
        clip-path: inset(0 0 100% 0);
    }

    .filosofia.visible .filosofia-imagen {
        clip-path: inset(0 0 0 0);
    }

    .servicios-imagen {
        clip-path: inset(0 0 100% 0);
    }

    .servicios.visible .servicios-imagen {
        clip-path: inset(0 0 0 0);
    }

    .proceso-imagen {
        clip-path: inset(0 0 100% 0);
    }

    .proceso.visible .proceso-imagen {
        clip-path: inset(0 0 0 0);
    }

}


/* ========================================
   MÓVIL MUY ESTRECHO
======================================== */

@media (max-width: 380px) {

    .header-contenido {
        padding: 0 16px;
    }

    .header-marca span {
        font-size: 0.62rem;
    }

    .hero {
        padding: 0 18px;
    }

    .filosofia-contenido,
    .servicios-contenido,
    .proceso-contenido,
    .contacto {
        padding-left: 18px;
        padding-right: 18px;
    }

    .principio {
        padding-left: 7px;
        padding-right: 7px;
    }

    .proceso-etapa {
        column-gap: 16px;
        grid-template-columns: 68px 1fr;
    }

    .proceso-etapa-icono {
        width: 58px;
        height: 58px;
    }

    .proceso-etapa:not(:last-child)::after,
    .proceso-etapa:not(:last-child)::before {
        left: 34px;
    }
}
