/* ===================================================
   ELECTROHIDRÁULICA
   STYLE.CSS v3.0
   Diseño Profesional
=================================================== */


/* ===================================================
   VARIABLES
=================================================== */

:root{

    --azul:#0A2540;
    --azul-claro:#1565C0;
    --celeste:#299dc0;
    --naranja:#FF9800;
    --gris:#f4f7fb;
    --gris2:#dfe7ef;
    --texto:#2d3748;
    --blanco:#ffffff;

    --radio:18px;

    --sombra:0 10px 30px rgba(0,0,0,.12);

    --transicion:.35s;

}


/* ===================================================
   RESET
=================================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--gris);

    color:var(--texto);

    line-height:1.7;

    overflow-x:hidden;

}


/* ===================================================
   SCROLL
=================================================== */

::-webkit-scrollbar{

    width:11px;

}

::-webkit-scrollbar-track{

    background:#d9e1ea;

}

::-webkit-scrollbar-thumb{

    background:var(--azul-claro);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--azul);

}


/* ===================================================
   ENLACES
=================================================== */

a{

    text-decoration:none;

    transition:var(--transicion);

}


/* ===================================================
   IMAGENES
=================================================== */

img{

    max-width:100%;

    display:block;

}


/* ===================================================
   HEADER
=================================================== */

header{

    position:sticky;

    top:0;

    z-index:9999;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 7%;

    background:rgba(10,37,64,.95);

    backdrop-filter:blur(14px);

    box-shadow:0 5px 18px rgba(0,0,0,.12);

}


/* ===================================================
   LOGO
=================================================== */

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo a{

    display:flex;

    align-items:center;

}

.logo-img{

    width:75px;

    transition:.4s;

}

.logo-img:hover{

    transform:scale(1.08);

}

.logo h2{

    color:white;

    font-size:30px;

    font-weight:700;

}


/* ===================================================
   MENU
=================================================== */

nav{

    display:flex;

    align-items:center;

}

nav ul{

    display:flex;

    align-items:center;

    gap:15px;

    list-style:none;

}

nav li{

    list-style:none;

}

nav a{

    color:white;

    padding:12px 20px;

    border-radius:10px;

    font-weight:600;

    font-size:16px;

}

nav a:hover{

    background:rgba(255,255,255,.12);

    color:var(--naranja);

}


/* ===================================================
   PAGINA ACTIVA
=================================================== */

nav a.activo{

    background:var(--naranja);

    color:white;

    box-shadow:0 10px 25px rgba(255,152,0,.35);

}


/* ===================================================
   TITULOS
=================================================== */

section{

    padding:90px 8%;

}

section h2{

    text-align:center;

    color:var(--azul);

    font-size:42px;

    margin-bottom:18px;

}

.subtitulo{

    text-align:center;

    max-width:800px;

    margin:auto;

    margin-bottom:55px;

    color:#607080;

    font-size:18px;

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

.hero,
.hero-bombas,
.hero-tableros,
.hero-motor{

    min-height:calc(100vh - 95px);

    display:flex;

    align-items:center;

    justify-content:flex-start;

    padding:0 8%;

    position:relative;

    overflow:hidden;

    color:white;

}

/* Capa oscura */

.hero::before,
.hero-bombas::before,
.hero-tableros::before,
.hero-motor::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        90deg,

        rgba(10,37,64,.90),

        rgba(10,37,64,.65),

        rgba(10,37,64,.15)

    );

    z-index:1;

}

/* Fondo Inicio */

.hero{

    background:
    url("fondo.jpg")
    center center/cover
    no-repeat;

}

/* Fondo Bombas */

.hero-bombas{

    background:
    url("bomba.jpg")
    right center/contain
    no-repeat,
    #eef3f8;

}

/* Fondo Tableros */

.hero-tableros{

    background:
    url("fondo-tablero.jpeg")
    right center/contain
    no-repeat,
    #eef3f8;

}

/* Fondo Motores */

.hero-motor{

    background:
    url("motor.jpeg")
    right center/contain
    no-repeat,
    #eef3f8;

}

/* Contenido */

.hero-contenido{

    position:relative;

    z-index:2;

    max-width:650px;

}

/* Icono */

.icono{

    font-size:75px;

    color:var(--naranja);

    margin-bottom:25px;

}

/* Titulos */

.hero h1,
.hero-bombas h1,
.hero-tableros h1,
.hero-motor h1{

    font-size:clamp(3rem,6vw,4.8rem);

    line-height:1.1;

    color:white;

    margin-bottom:25px;

}

/* Texto */

.hero p,
.hero-bombas p,
.hero-tableros p,
.hero-motor p{

    font-size:1.25rem;

    color:#f1f5f8;

    margin-bottom:40px;

}

/* ===================================================
   BOTONES
=================================================== */

.boton{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 38px;

    background:linear-gradient(
        135deg,
        var(--azul-claro),
        var(--azul)
    );

    color:white;

    border-radius:50px;

    font-weight:600;

    letter-spacing:.3px;

    box-shadow:var(--sombra);

    transition:var(--transicion);

}

.boton:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(0,0,0,.22);

}

/* Tarjetas */

.boton-tarjeta{

    display:inline-block;

    margin-top:25px;

    padding:14px 32px;

    background:var(--naranja);

    color:white;

    border-radius:40px;

    font-weight:600;

}

.boton-tarjeta:hover{

    background:#ffb84d;

    transform:translateY(-4px);

}

/* WhatsApp */

.boton-whatsapp{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    padding:18px 40px;

    background:#25D366;

    color:white;

    font-size:22px;

    font-weight:700;

    border-radius:60px;

    box-shadow:0 15px 35px rgba(37,211,102,.35);

}

.boton-whatsapp:hover{

    background:#1ebd5d;

    transform:translateY(-5px);

}

/* ===================================================
   ANIMACIÓN HERO
=================================================== */

.hero-contenido{

    animation:entrada .9s ease;

}

@keyframes entrada{

    from{

        opacity:0;

        transform:translateY(45px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ===================================================
   CONTENEDORES
=================================================== */

.contenedor{

    width:100%;

    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:stretch;

    gap:35px;

    flex-wrap:wrap;

}

/* ===================================================
   TARJETAS
=================================================== */

.tarjeta{

    flex:1 1 320px;

    max-width:370px;

    background:var(--blanco);

    border-radius:22px;

    padding:35px;

    text-align:center;

    box-shadow:var(--sombra);

    transition:var(--transicion);

    overflow:hidden;

    position:relative;

}

.tarjeta::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:linear-gradient(
        90deg,
        var(--azul-claro),
        var(--naranja)
    );

}

.tarjeta:hover{

    transform:translateY(-12px);

    box-shadow:0 22px 55px rgba(0,0,0,.18);

}

/* Imagen */

.tarjeta img{

    width:100%;

    height:220px;

    object-fit:cover;

    border-radius:15px;

    margin-bottom:22px;

}

/* Iconos */

.tarjeta .icono{

    font-size:60px;

    margin-bottom:20px;

}

/* Titulo */

.tarjeta h3{

    color:var(--azul);

    font-size:26px;

    margin-bottom:18px;

}

/* Texto */

.tarjeta p{

    color:#5d6974;

    margin-bottom:18px;

}

/* Lista */

.tarjeta ul{

    text-align:left;

    padding-left:18px;

}

.tarjeta li{

    margin:12px 0;

    color:#4d5965;

}

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

.servicios{

    background:linear-gradient(
        180deg,
        #f6f9fc,
        #eef3f8
    );

}

/* ===================================================
   NOSOTROS
=================================================== */

.nosotros{

    background:white;

}

.texto{

    max-width:950px;

    margin:auto;

    text-align:center;

}

.texto p{

    font-size:18px;

    color:#5d6974;

    margin-top:22px;

}

/* ===================================================
   VENTAJAS
=================================================== */

.ventajas{

    background:linear-gradient(
        180deg,
        #eef4fa,
        #f7fbff
    );

}

.caja{

    flex:1 1 280px;

    max-width:330px;

    background:white;

    border-radius:22px;

    padding:35px;

    text-align:center;

    box-shadow:var(--sombra);

    transition:.35s;

}

.caja:hover{

    transform:translateY(-10px);

}

.caja i{

    font-size:55px;

    color:var(--naranja);

    margin-bottom:20px;

}

.caja h3{

    color:var(--azul);

    margin-bottom:15px;

}

.caja p{

    color:#5d6974;

}

/* ===================================================
   SEPARACIÓN
=================================================== */

section:nth-child(even){

    background:#ffffff;

}

section:nth-child(odd){

    background:#f7f9fc;

}
/* ===================================================
   FORMULARIOS
=================================================== */

form{

    width:100%;

    max-width:820px;

    margin:40px auto 0;

    background:white;

    padding:45px;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

}

form label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:var(--azul);

}

input,
textarea,
select{

    width:100%;

    padding:16px 18px;

    margin-bottom:22px;

    border:2px solid #dfe7ef;

    border-radius:14px;

    background:#fafcff;

    font-size:16px;

    font-family:'Poppins',sans-serif;

    transition:.3s;

}

input:hover,
textarea:hover,
select:hover{

    border-color:#b5c7db;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;

    background:white;

    border-color:var(--azul-claro);

    box-shadow:0 0 0 5px rgba(21,101,192,.12);

}

textarea{

    min-height:180px;

    resize:vertical;

}

input::placeholder,
textarea::placeholder{

    color:#9aa7b5;

}

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

button{

    width:100%;

    border:none;

    cursor:pointer;

    padding:18px;

    border-radius:15px;

    background:linear-gradient(
        135deg,
        var(--azul-claro),
        var(--azul)
    );

    color:white;

    font-size:18px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 12px 30px rgba(21,101,192,.25);

}

button:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(21,101,192,.35);

}

button:active{

    transform:scale(.98);

}

button:disabled{

    opacity:.7;

    cursor:not-allowed;

}

/* ===================================================
   MENSAJES
=================================================== */

.mensaje-estado{

    min-height:35px;

    margin-top:18px;

    text-align:center;

    font-weight:600;

    font-size:17px;

}

.mensaje-enviando{

    color:var(--azul-claro);

}

.mensaje-exito{

    color:#1b8e3e;

}

.mensaje-error{

    color:#d62828;

}

/* ===================================================
   TABLAS
=================================================== */

table{

    width:100%;

    border-collapse:collapse;

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--sombra);

}

th{

    background:var(--azul);

    color:white;

    padding:18px;

}

td{

    padding:16px;

    border-bottom:1px solid #eef2f5;

}

tr:hover{

    background:#f5f9fd;

}

/* ===================================================
   LISTAS
=================================================== */

ul{

    line-height:2;

}

li{

    margin-left:18px;

}

/* ===================================================
   BLOQUES DESTACADOS
=================================================== */

.destacado{

    background:white;

    border-left:6px solid var(--naranja);

    padding:25px;

    border-radius:15px;

    box-shadow:var(--sombra);

}

/* ===================================================
   TRANSICIONES GENERALES
=================================================== */

button,
input,
textarea,
select,
.tarjeta,
.caja,
.boton,
.boton-tarjeta,
.boton-whatsapp{

    transition:.35s;

}
/* ===================================================
   FOOTER
=================================================== */

footer{

    background:linear-gradient(
        135deg,
        #081b2e,
        #0A2540
    );

    color:white;

    margin-top:80px;

    padding:70px 8% 30px;

}

.footer-contenedor{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:45px;

}

.footer-contenedor h3{

    color:var(--naranja);

    margin-bottom:18px;

    font-size:24px;

}

.footer-contenedor p{

    color:#d7dce3;

    margin-bottom:10px;

    line-height:1.8;

}

.footer-contenedor a{

    color:#d7dce3;

    display:inline-block;

    margin-bottom:10px;

}

.footer-contenedor a:hover{

    color:var(--naranja);

    transform:translateX(6px);

}

footer hr{

    margin:45px 0 25px;

    border:none;

    height:1px;

    background:rgba(255,255,255,.15);

}

.copy{

    text-align:center;

    color:#bfc9d3;

    font-size:15px;

}

/* ===================================================
   ICONOS FOOTER
=================================================== */

.footer-contenedor i{

    color:var(--naranja);

    margin-right:10px;

}

/* ===================================================
   BOTÓN WHATSAPP FLOTANTE
=================================================== */

.whatsapp-fijo{

    position:fixed;

    right:25px;

    bottom:25px;

    width:70px;

    height:70px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:34px;

    box-shadow:0 15px 35px rgba(37,211,102,.45);

    z-index:9999;

    transition:.35s;

}

.whatsapp-fijo:hover{

    transform:scale(1.12);

    background:#1db954;

}

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

.ir-arriba{

    position:fixed;

    left:25px;

    bottom:25px;

    width:58px;

    height:58px;

    border-radius:50%;

    background:var(--azul);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    box-shadow:var(--sombra);

    transition:.35s;

    z-index:9999;

}

.ir-arriba:hover{

    background:var(--naranja);

    transform:translateY(-6px);

}

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

.redes{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.redes a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:20px;

}

.redes a:hover{

    background:var(--naranja);

    transform:translateY(-5px);

}

/* ===================================================
   MAPA
=================================================== */

.mapa{

    width:100%;

    height:350px;

    border:none;

    border-radius:20px;

    box-shadow:var(--sombra);

}
/* ===================================================
   RESPONSIVE TABLETS
=================================================== */

@media (max-width:992px){

/* HEADER */

header{

    padding:18px 25px;

    flex-direction:column;

    gap:20px;

}

.logo{

    flex-direction:column;

    text-align:center;

}

.logo-img{

    width:120px;

}

.logo h2{

    font-size:28px;

}

/* MENU */

nav{

    width:100%;

}

nav ul{

    width:100%;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:12px;

}

nav li{

    width:100%;

}

nav a{

    display:block;

    text-align:center;

    background:rgba(255,255,255,.06);

}

/* HERO */

.hero,
.hero-bombas,
.hero-tableros,
.hero-motor{

    min-height:700px;

    justify-content:flex-end;

    align-items:flex-end;

    text-align:center;

    padding:40px;

    background-size:contain;

    background-position:center top;

}

.hero::before,
.hero-bombas::before,
.hero-tableros::before,
.hero-motor::before{

    background:linear-gradient(

        180deg,

        rgba(10,37,64,.15),

        rgba(10,37,64,.88)

    );

}

.hero-contenido{

    max-width:100%;

}

.hero h1,
.hero-bombas h1,
.hero-tableros h1,
.hero-motor h1{

    font-size:46px;

}

.hero p,
.hero-bombas p,
.hero-tableros p,
.hero-motor p{

    font-size:19px;

}

/* SECCIONES */

section{

    padding:70px 30px;

}

section h2{

    font-size:36px;

}

/* TARJETAS */

.contenedor{

    gap:25px;

}

.tarjeta{

    max-width:420px;

}

.caja{

    max-width:420px;

}

/* FORMULARIO */

form{

    padding:35px;

}

/* FOOTER */

.footer-contenedor{

    grid-template-columns:1fr;

    text-align:center;

}

.redes{

    justify-content:center;

}

/* BOTONES */

.boton{

    width:100%;

    max-width:340px;

    margin:8px auto;

}

.boton-whatsapp{

    width:100%;

    max-width:380px;

    margin:auto;

}

/* BOTONES FLOTANTES */

.whatsapp-fijo{

    width:65px;

    height:65px;

    font-size:30px;

}

.ir-arriba{

    width:55px;

    height:55px;

}

}
/* ===================================================
   RESPONSIVE CELULARES
=================================================== */

@media (max-width:768px){

/* ================= HEADER ================= */

/* ================= HEADER ================= */

header{

    position:sticky;
    top:0;

    display:flex;
    flex-direction:row;

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

    padding:12px 18px;

    min-height:75px;

}

.logo{

    display:flex;
    flex-direction:row;

    align-items:center;

    gap:10px;

}

.logo-img{

    width:55px;

}

.logo h2{

    font-size:20px;

}

/* ================= MENU ================= */

nav{

    width:100%;
    overflow-x:auto;

    margin-top:10px;

}

nav::-webkit-scrollbar{

    display:none;

}

nav ul{

    display:flex;

    flex-direction:row;

    gap:8px;

    width:max-content;

}

nav li{

    flex:none;

}

nav a{

    display:block;

    white-space:nowrap;

    padding:10px 16px;

    font-size:14px;

}

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

.hero,
.hero-bombas,
.hero-tableros,
.hero-motor{

    min-height:620px;

    justify-content:flex-end;

    align-items:flex-end;

    text-align:center;

    padding:25px;

    background-size:100% auto;

    background-position:center top;

}

.hero::before,
.hero-bombas::before,
.hero-tableros::before,
.hero-motor::before{

    background:linear-gradient(

        180deg,

        rgba(10,37,64,.20),

        rgba(10,37,64,.95)

    );

}

.hero h1,
.hero-bombas h1,
.hero-tableros h1,
.hero-motor h1{

    font-size:34px;

}

.hero p,
.hero-bombas p,
.hero-tableros p,
.hero-motor p{

    font-size:16px;

}

.icono{

    font-size:48px;

}

/* ================= SECCIONES ================= */

section{

    padding:60px 20px;

}

section h2{

    font-size:30px;

}

.subtitulo{

    font-size:17px;

}

/* ================= TARJETAS ================= */

.contenedor{

    flex-direction:column;

    align-items:center;

}

.tarjeta{

    width:100%;

    max-width:100%;

    padding:25px;

}

.tarjeta img{

    height:200px;

}

.caja{

    width:100%;

    max-width:100%;

}

/* ================= FORMULARIOS ================= */

form{

    padding:25px;

}

input,
textarea,
select{

    font-size:16px;

}

button{

    font-size:17px;

}

/* ================= BOTONES ================= */

.boton{

    width:100%;

    margin:10px auto;

}

.boton-whatsapp{

    width:100%;

    font-size:18px;

    padding:16px;

}

/* ================= FOOTER ================= */

footer{

    padding:50px 20px;

}

.footer-contenedor{

    text-align:center;

}

.redes{

    justify-content:center;

}

/* ================= BOTONES FLOTANTES ================= */

.whatsapp-fijo{

    width:60px;

    height:60px;

    right:18px;

    bottom:18px;

    font-size:28px;

}

.ir-arriba{

    width:50px;

    height:50px;

    left:18px;

    bottom:18px;

    font-size:20px;

}

}
/* ===================================================
   ANIMACIONES
=================================================== */

@keyframes aparecer{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

@keyframes zoom{

    from{

        transform:scale(.95);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

.hero-contenido{

    animation:aparecer .9s ease;

}

.tarjeta{

    animation:zoom .7s ease;

}

.caja{

    animation:zoom .7s ease;

}

form{

    animation:aparecer .8s ease;

}

/* ===================================================
   HOVER GENERAL
=================================================== */

.tarjeta:hover img{

    transform:scale(1.05);

}

.tarjeta img{

    transition:.4s;

}

.icono{

    transition:.35s;

}

.tarjeta:hover .icono,
.caja:hover .icono{

    transform:rotate(-8deg) scale(1.15);

}

/* ===================================================
   SELECCIÓN
=================================================== */

::selection{

    background:var(--naranja);

    color:white;

}

/* ===================================================
   UTILIDADES
=================================================== */

.oculto{

    display:none;

}

.centrado{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-40{

    margin-top:40px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

/* ===================================================
   TRANSICIONES
=================================================== */

*{

    transition:

    background .3s,

    color .3s,

    border .3s,

    transform .3s,

    box-shadow .3s;

}

/* ===================================================
   SOMBRAS
=================================================== */

.sombra{

    box-shadow:0 18px 45px rgba(0,0,0,.15);

}

/* ===================================================
   EFECTO GLASS
=================================================== */

.glass{

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.18);

}

/* ===================================================
   DIVISORES
=================================================== */

hr{

    border:none;

    height:1px;

    background:#dbe3eb;

    margin:40px 0;

}
/*==================================
MENU HAMBURGUESA
==================================*/

.menu-btn{

display:none;

background:none;

border:none;

color:white;

font-size:30px;

cursor:pointer;

width:auto;

padding:0;

box-shadow:none;

}

/* SOLO CELULAR */

@media(max-width:768px){

header{

display:flex;

flex-direction:row;

justify-content:space-between;

align-items:center;

padding:15px 20px;

min-height:80px;

}

.logo{

flex-direction:row;

align-items:center;

gap:10px;

}

.logo h2{

font-size:20px;

}

.logo-img{

width:55px;

}

.menu-btn{

display:block;

}

nav{

position:absolute;

top:80px;

left:0;

width:100%;

background:#0A2540;

display:none;

padding:20px;

box-shadow:0 10px 25px rgba(0,0,0,.2);

}

nav.mostrar{

display:block;

animation:menu .35s ease;

}

nav ul{

display:flex;

flex-direction:column;

gap:15px;

}

nav li{

width:100%;

}

nav a{

display:block;

text-align:center;

padding:15px;

border-radius:10px;

background:rgba(255,255,255,.05);

}

}

@keyframes menu{

from{

opacity:0;

transform:translateY(-20px);

}

to{

opacity:1;

transform:translateY(0);

}


}
/*=====================================
MENU HAMBURGUESA
=====================================*/

.menu-toggle{

    display:none;

    background:none;

    border:none;

    color:white;

    font-size:30px;

    cursor:pointer;

    width:auto;

    padding:5px;

}

/* SOLO CELULAR */

@media (max-width:768px){

header{

    position:relative;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 20px;

}

.logo{

    flex-direction:row;

    align-items:center;

}

.logo-img{

    width:55px;

}

.logo h2{

    font-size:20px;

}

.menu-toggle{

    display:block;

}

nav{

    display:none;

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#0A2540;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

nav.mostrar{

    display:block;

}

nav ul{

    display:flex;

    flex-direction:column;

    gap:0;

    padding:15px;

}

nav li{

    width:100%;

    list-style:none;

}

nav a{

    display:block;

    width:100%;

    padding:15px;

    color:white;

    border-radius:10px;

    margin-bottom:8px;

    background:rgba(255,255,255,.05);

}

nav a:hover{

    background:#1565C0;

}

}
/* ===================================================
   FIN
=================================================== */