:root {
    --color-titulos:#ffdc04;
    --color-texto: #111111;
    --color-alterno: #e58202;
    --color-fondo:#111b22;
--fondo-form:#1c5464;
--color-borde:rgb(238, 238, 238);
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    font-size: 62.5%;
    font-family: 'Times New Roman', Times, serif;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

h1 {
    font-size: 3.8rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.1rem;
}

h4 {
    font-size: 1.9rem;
}

h1,
h2,
h3,
h4 {
    text-align: center;
    margin: 1rem 0;
    padding: 0;
    color: var(--color-titulos);
}

p,
a,
label {
    font-size: 1.6rem;
    line-height: 1.5;

}

p {
    text-align: left;
    margin: 1rem 0;
}

@media (min-width:1300px) {
    .contenedor {
        max-width: 1250px;


    }
}

a {
    text-decoration: none;
    color: inherit;
}

.top {
    height: 90px;
    width: 100%;
    background-color: transparent;
}

/*---------HEADER NAV---------*/

header {
    position: fixed;
    top: 0;
    height: 90px;
    width: 100%;
    z-index: 10000;
    background-color: transparent;
    animation: sombra linear;
    animation-timeline: scroll();
    animation-range: 0 90px;
    animation-fill-mode: both;
}

.nav {

    display: grid;
    width: 100%;
    justify-items: center;
    align-items: center;
    grid-template-columns: 43% 43% 14%;
}

@keyframes sombra {
    from {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);

    }

    to {
        height: 80px;
        background-color: rgba(0, 0, 0, 0.89);
        color: white;
    }

}

@keyframes textoHeader {

    from {
        color: black;
    }

    to {
        color: white;
    }
}


.nav a img {
    max-height: 70px;
}

.wsp a {
    display: inline-block;
    margin: 0 auto;
    padding: 10px;
    background-color: #25D366;
    color: white;
    border-radius: 10px;
    font-size: 1.4rem;
    font-weight: bold;
}

.nav .desplegable {
    font-size: 3rem;
    grid-column: 3/4;
    grid-row: 1;
    color: orange;
}

.nav .desplegable input,
.nav .ocultar-menu {
    display: none;
}

.nav .desplegable:hover {
    cursor: pointer;
}

.desplegable i {
    font-size: 3rem;
}

.enlaces {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    max-height: none;
    overflow: visible;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease-in-out;
}

.mostrarMenu {
    max-height: 500px;
    display: flex;
    transform: scaleY(1);
}

.ocultarMenu {
    max-height: 0;
    overflow: hidden;
}


.enlaces a,
.enlaces label,
.enlaces i {
    display: block;
    width: 100%;
    color: var(--color-titulos);
    padding: 20px 30px;
    background-color: rgba(0, 0, 0, 0.89);
    text-align: center;
    transition: transform .2s ease, yellow .2s alternate;
}

.enlaces a:hover {
    transform: scale(1.10);

}


@media (min-width:720px) {
    .nav {
        grid-template-columns: 20% 20% 60%;
        place-items: center;
        width: 100%;
    }

    .logo img {
        display: inline-block;
        max-width: 100%;
        min-height: 70px;
    }

    .enlaces {
        transform: none;
        display: flex;
        flex-direction: row;
        position: static;
        width: 100%;
        justify-content: start;
        align-items: center;
        max-height: none;
        height: 80px;
        background-color: transparent;
        transition: none;
        overflow: visible;
    }

    .enlaces a {
        display: inline-block;
        text-align: center;
        padding: 0;
        background-color: transparent;
        color: var(--color-titulos);
        font-size: 2rem;
    }

    .desplegable {
        display: none;
    }
}

/*---------SLIDER---------*/

.banner {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    height: 85vh;
   /* margin-bottom: 10px;*/
    contain: paint;
}



.contenedor-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.contenedor-imagenes {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contenedor-imagenes img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    filter: brightness(0.7);
}

.contenedor-imagenes img:not(.active) {
    top: 0;
    left: -100%;
}

span.next,
span.prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 14px;
    color: var(--color-borde);
    font-size: 3rem;
    font-weight: bold;
    transition: 0.5s;
    border-radius: 3px;
    user-select: none;
    cursor: pointer;
    z-index: 1;

}

span.next {
    right: 20px;
    animation: aparecerrigth 1s ease forwards;

}

span.prev {
    left: 20px;
    animation: aparecerleft 1s ease forwards;

}

span.next:hover,
span.prev:hover {
    background-color: var(--color-borde);
    opacity: 0.8;
    color: var(--color-texto);
}

.sliders-nav {
    position: absolute;
    bottom: 2rem;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
    animation: aparecerbottom 1s ease forwards
}

.sliders-nav .dot {
    width: 15px;
    height: 15px;
    margin: 0px 2px;
    border: 3px solid var(--color-borde);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.6s ease;
}

.sliders-nav .active {
    background-color:  var(--color-borde);
}

.actividades {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(2, 40%);
    column-gap: 1rem;
    justify-content: space-evenly;
    align-items: center;
    z-index: 1;
    width: 100%;
    bottom: 6rem;
}

.actividades-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-borde);
    background-color: rgba(238,238,238, 0.433);
    /* background-color:#D32F2F; */
    text-align: center;
    text-transform: uppercase;
    color: white;
    height: 8rem;
    width: fit-content;
    padding: 5px 5px;
    margin: 0 auto;
    border-radius: 2rem;
    animation: aparecerbottom 1s ease forwards
}

.actividades-btn:hover {
    background-color: var(--color-borde);
    opacity: 0.8;
    color: var(--color-texto);
}

@keyframes next1 {
    from {
        left: 0%
    }

    to {
        left: -100%;
    }
}

@keyframes next2 {
    from {
        left: 100%
    }

    to {
        left: 0%;
    }
}

@keyframes prev1 {
    from {
        left: 0%
    }

    to {
        left: 100%;
    }
}

@keyframes prev2 {
    from {
        left: -100%
    }

    to {
        left: 0%;
    }
}


@media (min-width:768px) {
    .banner {
        max-width: 100%;
        height: 100vh;
     /*   margin-bottom: 1rem;*/
    }

    .actividades {
        bottom: 10rem;
    }

    .actividades a {
        height: 10rem;
        font-size: 2.5rem;
    }

    .sliders-nav {
        bottom: 3rem;
    }
}


@media (min-width:1024px) {



    .banner img {
        width: 100%;
        object-fit: cover;
    }

    .actividades {
        margin: 0 auto;
        bottom: 10rem;
        column-gap: 8rem;
    }

    .actividades a {
        font-size: 3.5rem;
        height: 10rem;
    }

}

/*---------DESTACADO---------*/

.info {
    width: 100%;
    display: grid;
    place-items: center;
    background-color:#074f79;
    padding: 20px 0;
/*    margin: 3rem auto;*/
    border-top: 2px solid var(--color-borde);
    border-bottom: 2px solid var(--color-borde);
}

.info .card {
    display: flex;
    flex-direction: column;
    align-items: center;
}



@media (min-width:768px) {

    .info {
        grid-template-columns: repeat(3, 1fr);

    }
}



/*---------SERVICIOS---------*/
.fondo {
    position: relative;
    z-index: 20;
    width: 100%;
   /* background-color: white;*/
}

.contenedor {
    width: 90%;
    margin: 0 auto;
}


.grid4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(250px), 1fr));
    gap: 2rem;
    row-gap: 8rem;
    margin: 2rem 0;
    padding: 2rem 0;
    counter-reset: item;
    counter-increment: item;
}



.grid4 section {

    position: relative;
    contain: paint;
    height: auto;
    min-height: 400px;
    width: 100%;
    border-radius: 2rem;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 15px, rgba(0, 0, 0, 0.07) 0px -5px 15px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 5px 8px, rgba(0, 0, 0, 0.05) 0px -2px 3px;
    animation: mostrarse 1s ease forwards;
    animation-timeline: view();
    animation-range: entry 10%;
    animation-fill-mode: both;
    outline: 2px solid var(--color-borde);

}



.grid4 section img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
    transition: transform 1s ease, filter 1s ease;
    cursor: pointer;
}



.grid4 section img:hover {
    transform: scale(2);
    filter: brightness(0.9);
    transition: transform 1s ease, filter 1s ease;
}

.grid4 section h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    pointer-events: none;
    width:80%;
}
.grid4 section h3 ul {
   margin:5px 0;
    position: relative;
    left: -4rem;
    top: 0;
    width: 130%;
   
}
.grid4 section h3 ul li {
text-align:left;
}

.grid4 section a {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;

}

.grid3 {
    max-width: 100%;
    width: 100%;
}


.grid3 .proyectos {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    margin-bottom: 2rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    padding: 1rem;
    border-radius: 1rem;
    /*outline: 2px solid #ff3333;*/
        outline: 2px solid var(--color-borde);
}

#detalleServicio {
    visibility: hidden;
}

section.block{
        outline: 2px solid var(--color-alterno);
    padding: 2rem;
    border-radius: 2rem;
}


.grid2 {
    margin-top:4rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
}

.grid2 section {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    outline: 2px solid var(--color-alterno);
    padding:2rem;
    border-radius:2rem;
    
}
.grid2 section:last-child {
    outline:none;
    
}

.grid2 section i{
    color:var(--color-alterno);
}

.mostrarse {
    animation: mostrarse 2s;
    animation-timeline: view();
    animation-range: entry 20% contain 10%;
    animation-fill-mode: both;
}

@keyframes mostrarse {
    from {
        opacity: 0;
        scale: .5;
    }

}

.animar-btn {
    animation: boton 1s linear alternate infinite;
}

@keyframes boton {
    50% {
        scale: 0.8;

    }

    100% {
        scale: 1;
    }

}

section ul li {
    list-style: disc;
    position: relative;
    ;
}

@media (min-width: 768px) {

    .grid3 .col {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .grid2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        margin-bottom: 5rem;
    }

    .btncontacto {
        grid-column: span 2;
        align-self: center;

    }


}

@media (min-width: 1024px) {
    .grid2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .grid3 {
        display: grid;
        grid-template-columns: 50% 50%;
        column-gap: 3rem
    }


    .grid3 .col {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid3 #proyecta {
        position: relative;

    }

    .grid3 .formulario {
        position: sticky;
        top: 90px;
        max-width: 100%;
    }
}

#proyecta img {
    min-width: 100%;
    height: 30rem;
    object-fit: cover;
    object-position: bottom;
}

/*
section ul li::before{
    content: '✔';
    position: absolute;
    left: -1.5rem;
    top:0.7rem


}
*/


.inosotros {
    font-size: 6rem;
}


.contenido {
    padding: 2rem;
    background-color: #dddddd7e;
    margin: 2rem 0;
}

.block {
    margin-bottom: 4rem;
}

.block ul {
    padding-left: 1rem;
}



/*---------BOTON COTIZA---------*/
.btnCotiza {
    position: fixed;
    display: inline-block;
    bottom: 1rem;
    right: 0;
    height: fit-content;
    background-color: #8a571e;
    width: fit-content;
    z-index: 99;
    border-radius: 4rem;
}


.btnCotiza a {
    display: inline-block;
    font-size: 2.5rem;
    padding: 1.5rem;
    color: var(--color-titulos);
}

.btnCotiza a:hover {
    color: #fecc01;
}


/*---------CONTACTO---------*/

form {
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px;
    background-color: var(--fondo-form);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
  
   border:2px solid var(--color-borde);

}
form label{
    color:white;
    font-size:1.7rem;
}

form input:not([type="submit"]),
form textarea {
    width: 100%;
    margin: 1rem 0;
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
   /* border: 1px solid #000000;
    outline: none;*/
    border:none;
    outline:2px solid var(--color-borde);

}


form textarea {
    resize: none;
    height: 15rem;
}

form input:not([type="submit"]):focus,
textarea:focus {
    border: none;
    /* El color que deseas para el borde cuando es clickeado */
    outline: 2px solid var(--color-alterno);
}

@media (min-width:720px) {
    form {
        max-width: 700px;
    }

}


/*---------FOOTER---------*/

.cfooter {
    margin-top: 20px;
}

footer {
    padding-top: 20px;
    border-top: 1px solid #ddd;

    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "logof"
        "direccion"
        "map"
        "contacto"
        "redes"
        "cop";
}

.cont-texto {
    display: contents;
}

.logof {
    grid-area: logof;
    align-self: start;
}

.logof img {
    max-width: 100%;
    height: auto;
}

.cont-texto {
    grid-area: texto;
}

.map {
    grid-area: map;
    width: 100%;
    height: 250px;
    border: 0;
}

.redes h3 {
    margin-bottom: 1rem;
}

.redes #fb,
.redes #ws,
.redes #yt,
.redes #ig,
.redes #tk
{
    color: white;
    font-size: 3rem;
    margin-right: 3rem;
    transition: color 0.3s ease;
}

.redes #fb:hover {
    color: #0866FF;
}

.redes #yt:hover {
    color: #FF0033;
}

.redes #ws:hover {
    color: #25D366;
}

.redes #ig:hover {
     background: linear-gradient(45deg, #FDD074, #F77F34, #DD326E, #D82B7E, #A432B1); /* Gradiente */
      background-clip: text;
      color: transparent; 
    
}
.redes #tk:hover {
   color:#2af0ea;
}


.cop {
    grid-area: cop;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    margin-top: 1rem;
}

.cop p {
    text-align: center;
}

.cfooter h3 {
    margin-bottom: 1rem;
    color: var(--color-titulos);
    text-align: left;
}

.cfooter p {
    margin: 0.5rem 0;
    color: white;
    line-height: 1.5;
}


@media (min-width: 768px) {

    .cfooter footer {
        grid-template-columns: 1fr 2fr 2fr;
        gap: 10px;
        grid-template-rows: auto auto;
        grid-template-areas:
            "logof texto map"
            "cop cop cop";
        padding-top: 20px;
    }

    .cont-texto {
        grid-area: texto;
        display: flex;
        flex-direction: column;

    }

}


/*---------CONSTRUCTORA---------*/

.banner-animado {
    max-height: fit-content;
    height: fit-content;
}

.tipos {
    width: 100%;
    max-height: 100%;
    height: 100%;
    position: relative;
}

.ti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220vh;
}
@media (min-width: 720px) {
    .ti{
        height: 100vh;
    }
    
}

.ti h1 {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    position: sticky;
    top: 12rem;
    z-index: 9;
    left: 50%;
    user-select: none;
    width: 100%;
    color: #f9d214;
}

.ti h1.titulo-luymi {
    font-size: 5rem;
}

.ti h1.titulo-luymi::after {
    content: "ENGINEERING AND CONSTRUCTION S.A.C.";
    position: absolute;
    bottom: -1rem;
    font-size: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.tipos .cards-stack {
    position: relative;
    max-height: fit-content;
    height: fit-content;
    width: 100%;
    display: block;

}

.img-btn {
    position: sticky;
    top: 0;
    height: 100vh;
}

.tipos div img {
    display: block;
    max-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.elevar {
    position: absolute;
    bottom: 30rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
}

.e1,
.e3 {
    animation: aparecertop 1s ease forwards;
}

.e2 {
    animation: aparecerbottom 1s ease forwards;

}

.ti h1 {
    animation: caerz 2s ease forwards;

}


@media (min-width: 720px) {

    .ocultar {
        display: none;
    }

    .banner-animado {
        max-height: 100%;
        height: 100vh;
    }

    .tipos h1 {
        position: absolute;
        transform: translateX(-50%);
    }

    .tipos .cards-stack {
        position: absolute;
        width: 100%;
        height: 100vh;
        max-height: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .img-btn {
        max-height: 100vh;
        height: 100vh;
        position: relative;
        top: 0;

    }

    .img-btn a {
        bottom: 5rem;
        font-size: 3.2rem;
    }

    .tipos .cards-stack img {
        max-height: 100%;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .cards-stack:nth-child(1) {
        object-position: right;
    }
}

@keyframes aparecertop {
    from {
        transform: translateY(-100%);
    }

}

@keyframes aparecerbottom {
    from {
        transform: translateY(100%);
    }

}

@keyframes aparecerleft {
    from {
        transform: translateX(-100%);
    }

}

@keyframes aparecerrigth {
    from {
        transform: translateX(100%);
    }

}

@keyframes caerz {

    from {

        opacity: 0;
    }

}

/*---------PROYECTOS---------*/

.proyectos {
    display: block;
    max-height: 500px;
    width: 100%;

}


.proyectos img {
    max-width: 100%;
    width: inherit;
    height: 300px;
    margin: 0 auto;
    object-fit: cover;
    object-position: top 10%;
}

.proyectos:nth-child(3) picture img {
    filter: brightness(1.2);
}



.formulario select,
.formulario input:not([type=submit]) {
    margin: 1rem 0;
    padding: 1rem;
    font-size: 1.5rem;
    border-radius: 0.5rem;
    width:inherintse;
}

@media (min-width:720px) {
    .cproyectos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .proyectos {
        display: flex;
        flex-direction: column;
        justify-items: center;
    }
}


.btn {
    display: inline-block;
    padding: 10px 10px;
    background-color: orange;
    text-align: center;
    font-size: 2rem;
    outline: none;
    border: none;
    width: 100%;
    font-weight: bold;
    margin: 0 auto;
}

.btn:hover {
    background-color: orangered;
    color: white;
    cursor: pointer;
}

.barras {
    display: grid;
    grid-template-columns: 60% 40%;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
}

select {
    width: 100%;
    margin: 20px 0;
}



a.enlace {
    color: blue;
    text-decoration: underline;

}

a.enlace:hover {
    color: orange
}

input#areaT,
input#nPisos {
    margin-bottom: 0;
}

p#msUbica,
p#msArea,
p#msPiso {
    margin-top: 0;
    color: #ff3333;

}

form label p {
    margin-top: 0;
}

.fondo-titulo {
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 10;
    contain: paint;
}

.fondo-titulo img {
    position: absolute;
    object-position: top;
    height: 100%;
    width: 100%;
    max-width: 100%;
    filter: brightness(0.7);
    transform-origin: top;
    animation: aumentando linear forwards;
    animation-timeline: view();
    animation-range: exit;
    object-fit: cover;
    z-index: -10;

}

@media (min-width:400px) {
    .grid3 .proyectos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 1rem;
        align-items: start;
    }
}

@keyframes aumentando {
    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: scale(2);
    }

}

.fondo-titulo h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.contenedor h2 {
    padding: 0;
    margin: 2rem;
}



.imagen-descripcion img,
.imagen-detalle img {
    width: 100%;
}

@media (min-width:768px) {

    .contenedor .contenido {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
    }
}


@media (min-width:768px) {

    .contenido2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
    }

    .imagen-descripcion img {
        position: sticky;
        top: 10rem;
        height: 80vh;
    }
}


p {
    font-family: 'tinos', 'Times New Roman';
}


/* minislide */
.slide {
    width: 100%;
    overflow: hidden;
    height: 300px;
    border-radius: 1rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.slide-imgs {
    width: 400%;
    display: flex;
    animation: sm1 20s linear infinite;
    animation-delay: 1s;

}

.slide-imgs {
    width: 400%;
    display: flex;
    animation: sm1 10s ease-in-out infinite;
}



@keyframes sm1 {
    0% {
        transform: translateX(0);
    }

    30% {
        transform: translateX(0);
    }

    35% {
        transform: translateX(-25%);
    }

    60% {
        transform: translateX(-25%);
    }

    65% {
        transform: translateX(-50%);
    }

    95% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(-75%)
    }
}

.slide-imgs img {
    width: calc(100%/4);
    height: 300px;
    object-fit: cover;
}

.grid {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 300px));
    column-gap: 1rem;
justify-content: center;
}

.grid article {
    height: 350px;
    padding: 1rem 0;
    width: 300px;
    contain: paint;
    margin: 1rem;
    display: grid;
    justify-items: center;
  

    border-radius: 2rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;

}

.grid article img {
    height: 300px;
    width: 280px;
    border-radius: 1rem;
    object-fit: cover;
}

body {
   /* background-color: var(--fondo);*/
  background-color: var(--color-fondo);
}
p{
    color:white;
}

.upper {
    text-transform: uppercase;
}
