/* =========================================
   PIEMPO - ESTILOS GENERALES
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #253744;
}

a {
    color: inherit;
    text-decoration: none;
}

/* =========================================
   CABECERA
========================================= */

.cabecera {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    height: 105px;
    padding: 15px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(9, 155, 215, 0.12);
}

.logo-enlace {
    display: inline-flex;
    align-items: center;
}

.logo {
    display: block;
    width: auto;
    height: 72px;
}

/* =========================================
   MENÚ HAMBURGUESA
========================================= */

.menu-hamburguesa {
    width: 48px;
    height: 48px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;

    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.menu-hamburguesa span {
    width: 29px;
    height: 3px;
    display: block;

    border-radius: 10px;
    background: #099bd7;
}

.menu-hamburguesa:hover {
    background: #eef9fd;
}

/* =========================================
   PORTADA
========================================= */

.hero {
    min-height: 100vh;
    padding: 150px 8% 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at top,
            #ffffff 0%,
            #effaff 48%,
            #d9f0fb 100%
        );
}

.hero-contenido {
    width: 100%;
    max-width: 1000px;
}

.marca {
    margin-bottom: 24px;

    color: #099bd7;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 800;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 900px;
    margin: 0 auto 26px;

    color: #075f98;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 5.4vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.texto-apoyo {
    max-width: 780px;
    margin: 0 auto;

    color: #435967;
    font-size: clamp(18px, 1.8vw, 25px);
    line-height: 1.55;
}

.flecha-bajar {
    width: 42px;
    height: 42px;
    margin: 48px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(9, 155, 215, 0.35);
    border-radius: 50%;
}

.flecha-bajar span {
    width: 11px;
    height: 11px;

    border-right: 2px solid #099bd7;
    border-bottom: 2px solid #099bd7;

    transform: translateY(-2px) rotate(45deg);
}

/* =========================================
   OPERACIÓN GRANJAS AL RESCATE
========================================= */

.seccion-rescate {
    padding: 110px 7%;
    background: #ffffff;
}

.rescate-contenedor {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: start;
}

.etiqueta-seccion {
    margin-bottom: 18px;

    color: #099bd7;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.rescate-texto h2 {
    max-width: 700px;
    margin-bottom: 28px;

    color: #075f98;
    font-size: clamp(36px, 4.4vw, 62px);
    font-weight: 800;
    line-height: 1.08;
}

.rescate-destacado {
    max-width: 720px;
    margin-bottom: 25px;

    color: #233d4b;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.45;
}

.rescate-texto > p:not(.etiqueta-seccion):not(.rescate-destacado) {
    max-width: 760px;
    margin-bottom: 18px;

    color: #536873;
    font-size: 18px;
    line-height: 1.75;
}

.rescate-panel {
    padding: 34px;

    background: #f2faff;
    border: 1px solid #d5edf8;
    border-radius: 18px;
}

.paso {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;

    padding: 22px 0;

    border-bottom: 1px solid #d9ebf3;
}

.paso:first-child {
    padding-top: 0;
}

.paso:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.numero {
    color: #099bd7;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1px;
}

.paso h3 {
    margin-bottom: 7px;

    color: #075f98;
    font-size: 21px;
}

.paso p {
    color: #59707c;
    font-size: 16px;
    line-height: 1.5;
}

/* =========================================
   MÓVILES
========================================= */

@media (max-width: 900px) {

    .rescate-contenedor {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {

    .cabecera {
        height: 88px;
        padding: 12px 5%;
    }

    .logo {
        height: 56px;
    }

    .hero {
        padding: 125px 7% 55px;
    }

    .marca {
        margin-bottom: 20px;
        letter-spacing: 6px;
    }

    .hero h1 {
        font-size: clamp(38px, 12vw, 55px);
        letter-spacing: -1px;
    }

    .texto-apoyo {
        font-size: 19px;
    }

    .seccion-rescate {
        padding: 80px 7%;
    }

    .rescate-destacado {
        font-size: 21px;
    }

    .rescate-panel {
        padding: 26px 22px;
    }
}