/* ==========================================
   VARIABLES
========================================== */

:root {
    --azul-oscuro: #061c2d;
    --azul-medio: #0a4264;
    --azul: #087eae;
    --azul-claro: #45b4d8;

    --verde: #25d366;

    --blanco: #ffffff;

    --fondo: #f5f6f7;
    --gris-claro: #e7ebee;
    --gris: #68747c;
    --texto: #11191f;
    --borde: #dce1e4;

    --ancho: 1180px;
}


/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
}

body {
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--texto);
    background: var(--blanco);

    line-height: 1.6;

    overflow-x: hidden;
}

body.menu-abierto {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font: inherit;
}


/* ==========================================
   CONTENEDOR
========================================== */

.contenedor {
    width: min(
        var(--ancho),
        calc(100% - 48px)
    );

    margin-inline: auto;
}


/* ==========================================
   HEADER
========================================== */

.header {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;

    background: rgba(6, 28, 45, .96);

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

    transition:
        background .3s ease,
        box-shadow .3s ease;
}

.header.scroll {
    background: rgba(6, 28, 45, .99);

    box-shadow:
        0 8px 30px
        rgba(0,0,0,.16);
}

.nav {
    min-height: 76px;

    display: flex;

    justify-content: space-between;
    align-items: center;
}


/* ==========================================
   LOGO
========================================== */

.logo {
    position: relative;
    z-index: 1100;

    display: flex;
    align-items: center;

    gap: 6px;

    color: white;

    font-size: 1.15rem;

    letter-spacing: -.5px;

    transition: transform .3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-nombre {
    font-weight: 750;
}

.logo-apellido {
    color: var(--azul-claro);
    font-weight: 400;
}


/* ==========================================
   MENÚ
========================================== */

.menu {
    display: flex;
    align-items: center;

    gap: 30px;
}

.menu > li > a {
    position: relative;

    color: rgba(255,255,255,.72);

    font-size: .86rem;
    font-weight: 600;

    transition: color .25s ease;
}

.menu > li:not(.menu-whatsapp) > a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--azul-claro);

    transition: width .25s ease;
}

.menu > li:not(.menu-whatsapp) > a:hover {
    color: white;
}

.menu > li:not(.menu-whatsapp) > a:hover::after {
    width: 100%;
}

.menu-whatsapp a {
    display: inline-flex;

    padding: 10px 19px;

    border:
        1px solid
        rgba(255,255,255,.28);

    color: white !important;

    transition:
        background .25s ease,
        color .25s ease;
}

.menu-whatsapp a:hover {
    color: var(--azul-oscuro) !important;
    background: white;
}


/* ==========================================
   HAMBURGUESA
========================================== */

.hamburguesa {
    position: relative;
    z-index: 1100;

    width: 44px;
    height: 44px;

    display: none;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 6px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.hamburguesa span {
    width: 25px;
    height: 2px;

    background: white;

    transition:
        transform .3s ease,
        opacity .3s ease;
}

.hamburguesa.activa span:nth-child(1) {
    transform:
        translateY(8px)
        rotate(45deg);
}

.hamburguesa.activa span:nth-child(2) {
    opacity: 0;
}

.hamburguesa.activa span:nth-child(3) {
    transform:
        translateY(-8px)
        rotate(-45deg);
}


/* ==========================================
   HERO
========================================== */

.hero {
    position: relative;

    min-height: 100vh;

    padding: 145px 0 90px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: white;

    background: var(--azul-oscuro);
}

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -350px;
    bottom: -300px;

    border:
        1px solid
        rgba(69,180,216,.15);

    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.08fr .92fr;

    gap: 90px;

    align-items: center;
}


/* HERO TEXTO */

.hero-texto {
    max-width: 680px;
}

.hero-etiqueta {
    margin-bottom: 27px;

    display: flex;
    align-items: center;

    gap: 14px;

    animation:
        aparecerArriba .7s ease both;
}

.hero-etiqueta > span {
    width: 36px;
    height: 1px;

    background: var(--azul-claro);
}

.hero-etiqueta p {
    color: #7ac9e5;

    font-size: .72rem;
    font-weight: 700;

    letter-spacing: 3px;
}

.hero h1 {
    max-width: 730px;

    margin-bottom: 29px;

    font-size:
        clamp(2.9rem, 5vw, 4.9rem);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 700;

    animation:
        aparecerArriba .8s ease .15s both;
}

.hero h1 > span {
    display: block;

    color: #79c6e1;
}

.hero-descripcion {
    max-width: 610px;

    margin-bottom: 38px;

    color: rgba(255,255,255,.65);

    font-size: 1.02rem;

    animation:
        aparecerArriba .8s ease .3s both;
}


/* ==========================================
   BOTONES
========================================== */

.hero-botones {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    animation:
        aparecerArriba .8s ease .45s both;
}

.boton {
    position: relative;

    min-height: 52px;

    padding: 0 24px;

    display: inline-flex;

    justify-content: center;
    align-items: center;

    gap: 20px;

    overflow: hidden;

    font-size: .86rem;
    font-weight: 700;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}

.boton::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.18),
            transparent
        );

    transform: skewX(-20deg);

    transition: left .55s ease;
}

.boton:hover::before {
    left: 140%;
}

.boton-principal {
    color: white;
    background: var(--azul);
}

.boton-principal:hover {
    background: #086d94;

    transform: translateY(-2px);
}

.boton-secundario {
    color: white;

    border:
        1px solid
        rgba(255,255,255,.27);
}

.boton-secundario:hover {
    color: var(--azul-oscuro);
    background: white;
}


/* ==========================================
   REDES HERO
========================================== */

.hero-redes {
    margin-top: 58px;

    display: flex;
    align-items: center;

    gap: 13px;

    animation:
        aparecerArriba .8s ease .6s both;
}

.hero-redes .seguir {
    margin-right: 8px;

    color: rgba(255,255,255,.42);

    font-size: .72rem;
}

.hero-redes a {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.16);

    border-radius: 50%;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.hero-redes a:hover {
    background: var(--azul);

    border-color: var(--azul);

    transform:
        translateY(-4px)
        scale(1.08);
}

.hero-redes svg {
    width: 17px;
    height: 17px;

    fill: white;
}


/* ==========================================
   IMAGEN HERO
========================================== */

.hero-imagen {
    position: relative;

    padding: 0 24px 24px 0;

    animation:
        aparecerDerecha 1s ease .25s both;
}

.hero-marco {
    position: relative;
    z-index: 3;

    height: 590px;

    overflow: hidden;
}

.hero-marco::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 65%,
            rgba(6,28,45,.22)
        );
}

.hero-marco img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1s ease;
}

.hero-marco:hover img {
    transform: scale(1.035);
}

.hero-tarjeta {
    position: absolute;
    z-index: 5;

    left: -35px;
    bottom: 55px;

    width: 220px;

    padding: 21px;

    display: flex;
    align-items: center;

    gap: 20px;

    color: var(--texto);
    background: white;

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.12);

    animation:
        tarjetaFlotante 4s ease-in-out infinite;
}

.hero-tarjeta > span {
    color: var(--azul);

    font-size: .72rem;
    font-weight: 700;
}

.hero-tarjeta div {
    display: flex;
    flex-direction: column;
}

.hero-tarjeta small {
    color: var(--gris);

    font-size: .6rem;

    letter-spacing: 1.5px;
}

.hero-tarjeta strong {
    font-size: .9rem;
}


/* DECORACIÓN HERO */

.cuadro {
    position: absolute;

    border:
        1px solid
        rgba(69,180,216,.28);
}

.cuadro-1 {
    width: 115px;
    height: 115px;

    top: -25px;
    right: -20px;
}

.cuadro-2 {
    width: 175px;
    height: 175px;

    right: -50px;
    bottom: -25px;
}


/* ==========================================
   INTRODUCCIÓN
========================================== */

.introduccion {
    padding: 110px 0;

    border-bottom:
        1px solid
        var(--borde);
}

.introduccion-grid {
    display: grid;

    grid-template-columns:
        .55fr 1.45fr;

    gap: 80px;
}

.numero-bloque > span {
    display: block;

    margin-bottom: 16px;

    color: #a6afb5;

    font-size: .75rem;
    font-weight: 700;
}

.numero-bloque p {
    color: var(--azul);

    font-size: .72rem;
    font-weight: 700;

    letter-spacing: 2px;
}

.introduccion-texto h2 {
    max-width: 750px;

    margin-bottom: 24px;

    font-size:
        clamp(2.2rem, 4vw, 3.5rem);

    line-height: 1.07;

    letter-spacing: -2px;
}

.introduccion-texto h2 span {
    color: #879198;
}

.introduccion-texto p {
    max-width: 650px;

    color: var(--gris);
}


/* ==========================================
   PROYECTO
========================================== */

.proyecto {
    padding: 120px 0 130px;

    background: var(--fondo);
}

.titulo-seccion {
    margin-bottom: 65px;

    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    gap: 70px;

    align-items: end;
}

.mini-titulo {
    display: block;

    margin-bottom: 17px;

    color: var(--azul);

    font-size: .7rem;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.mini-titulo.claro {
    color: var(--azul-claro);
}

.titulo-seccion h2 {
    max-width: 650px;

    font-size:
        clamp(2.2rem, 4vw, 3.6rem);

    line-height: 1.05;

    letter-spacing: -2px;
}

.titulo-seccion > p {
    color: var(--gris);
}


/* ==========================================
   TARJETAS
========================================== */

.tarjetas {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.tarjeta {
    overflow: hidden;

    background: white;

    border:
        1px solid
        var(--borde);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.tarjeta:hover {
    transform: translateY(-10px);

    border-color:
        rgba(8,126,174,.30);

    box-shadow:
        0 24px 50px
        rgba(6,28,45,.12);
}

.tarjeta-imagen {
    position: relative;

    height: 230px;

    overflow: hidden;
}

.tarjeta-imagen img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .65s ease;
}

.tarjeta:hover .tarjeta-imagen img {
    transform: scale(1.07);
}

.tarjeta-imagen > span {
    position: absolute;

    right: 0;
    bottom: 0;

    padding: 11px 16px;

    color: var(--azul);
    background: white;

    font-size: .7rem;
    font-weight: 700;
}

.tarjeta-contenido {
    padding: 30px 28px;
}

.tarjeta-contenido > small {
    display: block;

    margin-bottom: 12px;

    color: var(--azul);

    font-size: .63rem;
    font-weight: 700;

    letter-spacing: 2px;
}

.tarjeta h3 {
    margin-bottom: 15px;

    font-size: 1.4rem;
}

.tarjeta p {
    min-height: 125px;

    margin-bottom: 25px;

    color: var(--gris);

    font-size: .92rem;
}

.tarjeta-contenido > a {
    padding-top: 18px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    border-top:
        1px solid
        var(--borde);

    color: var(--azul-medio);

    font-size: .82rem;
    font-weight: 700;
}

.tarjeta-contenido > a > span {
    font-size: 1.25rem;

    transition: transform .3s ease;
}

.tarjeta-contenido > a:hover > span {
    transform: translateX(7px);
}


/* ==========================================
   DESTACADO
========================================== */

.destacado {
    padding: 105px 0;

    color: white;

    background: var(--azul-oscuro);
}

.destacado-grid {
    display: grid;

    grid-template-columns:
        .3fr 1.4fr .3fr;

    gap: 50px;

    align-items: center;
}

.destacado-numero {
    align-self: start;

    color: var(--azul-claro);

    font-size: .75rem;
}

.destacado h2 {
    font-size:
        clamp(2.5rem, 5vw, 4.5rem);

    line-height: .98;

    letter-spacing: -3px;
}

.boton-circular {
    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.27);

    border-radius: 50%;

    font-size: 1.5rem;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.boton-circular:hover {
    color: var(--azul-oscuro);

    background: white;

    transform:
        translateX(7px)
        rotate(-5deg);
}


/* ==========================================
   CONTACTO
========================================== */

.contacto {
    padding: 120px 0;
}

.contacto-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 100px;

    align-items: center;
}

.contacto h2 {
    margin-bottom: 22px;

    font-size:
        clamp(2.5rem, 5vw, 4rem);

    line-height: 1;

    letter-spacing: -2px;
}

.contacto-texto p {
    max-width: 500px;

    color: var(--gris);
}

.contacto-opciones {
    border-top:
        1px solid
        var(--borde);
}

.contacto-item {
    min-height: 110px;

    padding: 20px 10px;

    display: grid;

    grid-template-columns:
        60px 1fr 40px;

    gap: 20px;

    align-items: center;

    border-bottom:
        1px solid
        var(--borde);

    transition:
        transform .3s ease,
        padding-left .3s ease,
        background .3s ease;
}

.contacto-item:hover {
    padding-left: 20px;

    background: #f7f9fa;

    transform: translateX(7px);
}

.contacto-numero {
    color: var(--azul);

    font-size: .72rem;
    font-weight: 700;
}

.contacto-item div {
    display: flex;
    flex-direction: column;
}

.contacto-item small {
    color: var(--gris);

    font-size: .65rem;

    letter-spacing: 1.5px;
}

.contacto-item strong {
    font-size: 1rem;
}

.contacto-flecha {
    color: var(--azul);

    font-size: 1.4rem;
}


/* ==========================================
   REDES
========================================== */

.redes {
    padding: 110px 0;

    background: var(--fondo);
}

.redes-titulo {
    max-width: 650px;

    margin-bottom: 50px;
}

.redes-titulo h2 {
    font-size:
        clamp(2rem, 4vw, 3.3rem);

    line-height: 1.08;

    letter-spacing: -2px;
}

.redes-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.red-social {
    min-height: 105px;

    padding: 20px;

    display: grid;

    grid-template-columns:
        48px 1fr 25px;

    align-items: center;

    gap: 15px;

    background: white;

    border:
        1px solid
        var(--borde);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.red-social:hover {
    transform: translateY(-7px);

    border-color: #bdcbd2;

    box-shadow:
        0 18px 40px
        rgba(6,28,45,.10);
}

.red-icono {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--azul-oscuro);

    transition:
        transform .35s ease,
        background .35s ease;
}

.red-social:hover .red-icono {
    background: var(--azul);

    transform:
        rotate(-5deg)
        scale(1.08);
}

.red-icono svg {
    width: 20px;
    height: 20px;

    fill: white;
}

.red-social > div:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.red-social small {
    color: var(--gris);

    font-size: .6rem;

    letter-spacing: 1.5px;
}

.red-social strong {
    font-size: .88rem;
}


/* ==========================================
   FOOTER
========================================== */

.footer {
    padding: 75px 0 30px;

    color:
        rgba(255,255,255,.58);

    background: #03121d;
}

.footer-grid {
    padding-bottom: 65px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 60px;
}

.footer-marca strong {
    display: block;

    margin-bottom: 4px;

    color: white;

    font-size: 1.2rem;
}

.footer-marca p {
    font-size: .8rem;
}

.footer-columna {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}

.footer-columna > span {
    margin-bottom: 8px;

    color:
        rgba(255,255,255,.35);

    font-size: .63rem;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.footer-columna a {
    font-size: .8rem;

    transition:
        color .25s ease,
        transform .25s ease;
}

.footer-columna a:hover {
    color: var(--azul-claro);

    transform: translateX(3px);
}

.footer-final {
    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    border-top:
        1px solid
        rgba(255,255,255,.09);
}

.footer-final p {
    font-size: .7rem;
}


/* ==========================================
   BOTÓN FLOTANTE
========================================== */

.comunidad-flotante {
    position: fixed;

    z-index: 900;

    right: 25px;
    bottom: 25px;

    min-height: 60px;

    padding: 8px 18px 8px 9px;

    display: flex;

    align-items: center;

    gap: 11px;

    color: white;

    background: #0a7ea7;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius: 50px;

    box-shadow:
        0 12px 35px
        rgba(0,0,0,.24);

    animation:
        comunidadFlotante 3s ease-in-out infinite;

    transition:
        background .25s ease,
        box-shadow .25s ease;
}

.comunidad-flotante:hover {
    background: #086b90;

    animation-play-state: paused;

    box-shadow:
        0 16px 40px
        rgba(0,0,0,.3);
}

.comunidad-icono {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        rgba(255,255,255,.13);
}

.comunidad-icono svg {
    width: 23px;
    height: 23px;

    fill: white;
}

.comunidad-flotante-texto {
    display: flex;
    flex-direction: column;

    line-height: 1.15;
}

.comunidad-flotante-texto small {
    margin-bottom: 2px;

    font-size: .53rem;

    letter-spacing: 1px;

    opacity: .72;
}

.comunidad-flotante-texto strong {
    font-size: .82rem;
}


/* ==========================================
   ANIMACIONES AL HACER SCROLL
========================================== */

.animar-scroll {
    opacity: 0;

    transform: translateY(45px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.animar-scroll.visible {
    opacity: 1;

    transform: translateY(0);
}


.animar-izquierda {
    opacity: 0;

    transform: translateX(-55px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.animar-izquierda.visible {
    opacity: 1;

    transform: translateX(0);
}


.animar-derecha {
    opacity: 0;

    transform: translateX(55px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.animar-derecha.visible {
    opacity: 1;

    transform: translateX(0);
}


.animar-zoom {
    opacity: 0;

    transform: scale(.92);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.animar-zoom.visible {
    opacity: 1;

    transform: scale(1);
}


/* ==========================================
   KEYFRAMES
========================================== */

@keyframes aparecerArriba {

    from {
        opacity: 0;

        transform:
            translateY(35px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes aparecerDerecha {

    from {
        opacity: 0;

        transform:
            translateX(50px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


@keyframes tarjetaFlotante {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }

}


@keyframes comunidadFlotante {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-7px);
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 950px) {

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .hero-texto {
        max-width: 750px;
    }

    .hero-imagen {
        max-width: 650px;
    }

    .tarjetas {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .contacto-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .redes-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ==========================================
   CELULAR
========================================== */

@media (max-width: 700px) {

    html {
        scroll-padding-top: 68px;
    }

    .contenedor {
        width:
            calc(100% - 36px);
    }


    /* HEADER */

    .nav {
        min-height: 68px;
    }

    .hamburguesa {
        display: flex;
    }


    /* MENÚ MÓVIL */

    .menu {
        position: fixed;

        z-index: 1050;

        top: 68px;
        right: -100%;

        width: 100%;

        height:
            calc(100dvh - 68px);

        padding: 45px 25px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        overflow-y: auto;

        background: var(--azul-oscuro);

        transition:
            right .35s ease;
    }

    .menu.activo {
        right: 0;
    }

    .menu li {
        width: 100%;
    }

    .menu > li > a {
        width: 100%;

        padding: 19px 0;

        display: block;

        color: white;

        border-bottom:
            1px solid
            rgba(255,255,255,.10);

        font-size: 1.15rem;
    }

    .menu >
    li:not(.menu-whatsapp) >
    a::after {
        display: none;
    }

    .menu-whatsapp {
        margin-top: 25px;
    }

    .menu-whatsapp a {
        text-align: center;

        border:
            1px solid
            rgba(255,255,255,.25);
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding:
            115px 0 70px;
    }

    .hero-grid {
        gap: 50px;
    }

    .hero h1 {
        font-size: 2.65rem;

        letter-spacing: -2px;
    }

    .hero-descripcion {
        font-size: .95rem;
    }

    .hero-botones {
        flex-direction: column;
    }

    .boton {
        width: 100%;
    }

    .hero-redes {
        margin-top: 40px;
    }

    .hero-imagen {
        padding: 0;
    }

    .hero-marco {
        height: 450px;
    }

    .hero-tarjeta {
        left: 15px;
        bottom: 15px;
    }

    .cuadro {
        display: none;
    }


    /* INTRO */

    .introduccion {
        padding: 75px 0;
    }

    .introduccion-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    /* PROYECTO */

    .proyecto {
        padding: 80px 0;
    }

    .titulo-seccion {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 45px;
    }

    .tarjetas {
        grid-template-columns: 1fr;
    }

    .tarjeta p {
        min-height: auto;
    }


    /* DESTACADO */

    .destacado {
        padding: 75px 0;
    }

    .destacado-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .boton-circular {
        width: 55px;
        height: 55px;
    }


    /* CONTACTO */

    .contacto {
        padding: 80px 0;
    }

    .contacto-item {
        grid-template-columns:
            40px 1fr 30px;

        gap: 10px;
    }


    /* REDES */

    .redes {
        padding: 80px 0;
    }


    /* FOOTER */

    .footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-final {
        flex-direction: column;

        gap: 5px;
    }


    /* BOTÓN FLOTANTE */

    .comunidad-flotante {
        right: 15px;
        bottom: 15px;
    }

}


/* ==========================================
   CELULAR PEQUEÑO
========================================== */

@media (max-width: 430px) {

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero-marco {
        height: 390px;
    }

    .hero-tarjeta {
        width: 190px;
    }

    .red-social {
        grid-template-columns:
            45px 1fr 20px;

        padding: 17px;
    }

    .red-social strong {
        font-size: .78rem;
    }

    .comunidad-flotante {
        width: 58px;
        height: 58px;

        min-height: 58px;

        padding: 7px;

        justify-content: center;
    }

    .comunidad-flotante-texto {
        display: none;
    }

    .comunidad-icono {
        width: 43px;
        height: 43px;
    }

}


/* ==========================================
   ACCESIBILIDAD
========================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

        scroll-behavior:
            auto !important;
    }

}