:root {
    --black-color: #000000;
    --white-color: #ffffff;
    --phosphorescent-green-color: #4BBE16;
    --green-color: #4A902A;
    --grey-color: #EFEFEF;
}

@media screen and (max-width: 900px){
/*============ Section Nav ====================*/
.nav-toggle {
    display: flex;
    grid-column: 3 / 15;
    justify-content: end;
    align-items: center;
    z-index: 1001;
}

.nav-item {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    transform: translateX(100%) !important;
    transition: transform 0.0s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    z-index: 999;
    overflow-y:auto;
    background-color: var(--black-color);
    will-change: transform;
}

.no-scroll {
    overflow: hidden;
}

.nav-item.active {
    transform: translateX(0) !important;
}

.nav-item li {
    width: 100%;
    text-align: end;
    margin-right: 80px;
    list-style: none;
}

.no-scroll {
    overflow: hidden;
}

.nav-item li a {
    display: block;
    padding: 15px 30px;
    color: var(--white-color);
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: clamp(0.8rem, 1.5vw, 2vw);
}

.nav-item li a:hover {
    color: var(--phosphorescent-green-color);
    text-decoration: underline;
    font-size: clamp(0.8rem, 1.5vw, 2vw);
}

.nav-item li a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.contact-item {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

.contact-item:hover {
    background-color: transparent;
}

/*============ section principal =============*/
.main-hero {
    width: 100%;
    flex: 1;
    display: grid;
    grid-gap: 5px;
    grid-template-areas:
    "main-banner"
    "section-solution"
    "section-product" 
    "nosotros"
    "manufacturing"
    "footer";
}

.item {
    width: 100%;
}

.main-banner {
    width: 100%;
    height: auto;
    grid-area: main-banner;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: minmax(2rem, auto);
    gap: 0.6rem;
    overflow: hidden;
}

.content-img {
    width: 100%;
}

.content-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.title-main {
    grid-column: 1 / 15;
    grid-row: 8 / auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    color: var(--white-color);
    text-align: center;
    gap: 0px 0;
    position: relative;
    bottom: 0px;
}

.title-main h1 {
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    position: relative;
    top: 0.5vw;
}

.color-green-span {
    color: var(--phosphorescent-green-color)
}

.p-one {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    grid-column: 1 / 15;
    grid-row: 7/ auto;
}

.p-one p {
    font-size: clamp(1.2rem, 3vw, 5rem);
    color: var(--phosphorescent-green-color);
}

.btn-one {
    width: 80%;
    margin: 0 auto;
    grid-column: 1 / 15;
    grid-row: 9/ auto;
    display: flex;
    justify-content: center;
}

.button-contact {
    font-size: clamp(0.9rem, 2.1vw, 4rem);
    text-decoration: none;
    color: var(--black-color);
    background-color: var(--phosphorescent-green-color);
    padding: 10px 20px;
    border-radius: 10px;
    position: relative;
    font-weight: 500;
    top: 40px;
}

.button-contact:hover {
    font-size: clamp(0.9rem, 2.1vw, 4rem);
    text-decoration: none;
    color: var(--black-color);
    background-color: var(--white-color);
    padding: 10px 20px;
    border-radius: 10px;
    position: relative;
    font-weight: 500;
    top: 40px;
}

/*============ Sectión Soluciones ===============*/
.section-solution {
    width: 100%;
    height: auto;
    margin: 0 auto;
    grid-area: section-solution;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(2rem, auto);
    gap: 0.4rem;
    margin-bottom: 0rem;
}

.section-solution h2 {
    grid-column: 2 / 14;
    grid-row: 4 / auto;
    text-align: center;
    font-size: clamp(1.8rem, 4.3vw, 5rem);
}

.color-green-solution {
    color: var(--phosphorescent-green-color);
}

.section-solution p {
    width: 90%;
    margin: 0 auto;
    grid-column: 2 / 14;
    grid-row: 9 / auto;
    text-align: center;
    font-size: clamp(1.2rem, 3vw, 4rem);
}

.img-section-solution {
    display: none;
}

.img_section_movil {
    width: 100%;
    height: auto;
    display: flex;
    grid-column: 3 / 13;
    grid-row: 14 / auto;
    border-radius: 4vw;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.6);
}

.separation-line-2 {
    border: none;
    border-top: 2px solid var(--phosphorescent-green-color);
    grid-column: 4 / 12;
    grid-row: 20 / auto;
    margin-top: 1vw;
}

.img-section-two {
    display: none;
}

.img-section-three {
    display: none;
}

.img-section-four {
    display: none;
}

/*============ Section Productos =============*/
.section-product {
    width: 100%;
    height: auto;
    background-color: var(--grey-color);
    grid-area: section-product;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: minmax(2rem, auto);
    gap: 0.4rem;
    padding: 2rem 0 6rem 0;
}

.img-section-product {
    width: 250px;
    height: auto;
    grid-column: 6 / 10;
    grid-row: 3 / 6;
    display: flex;
    margin-left: 0px;
}

.section-product h2 {
    width: 100%;
    height: auto;
    grid-column: 3 / 11;
    display: flex;
    justify-content: center;
    grid-row: 6 / auto;
    margin-left: 30px;
    margin-top: 0vw;
    position: relative;
    bottom: 20px;
    font-weight: 300;
    font-size: clamp(2rem, 3.9vw, 5rem);
}

.section-product p {
    width: 80%;
    margin: 0 auto;
    grid-column: 1 / 15;
    grid-row: 7 / auto;
    text-align: justify;
    font-size: clamp(1.1rem, 2.3vw, 4rem);
    line-height: 1.5;
}

.button-product {
    width: 100%;
    margin: 0;
    grid-column: 1 / 15;
    grid-row: 12 / auto;
    text-align: none;
    display: flex;
    justify-content: center;
}

.button-info {
    text-decoration: none;
    color: var(--black-color);
    background-color: var(--phosphorescent-green-color);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: clamp(1.1rem, 2.1vw, 4rem);
    font-weight: 500;
}

.button-info:hover {
    text-decoration: none;
    color: var(--white-color);
    background-color: var(--black-color);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: clamp(1.1rem, 2.1vw, 4rem);
    position: absolute;
}

.card-1 {
    width: 80%;
    height: auto;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    grid-column: 1 / 15;
    grid-row: 30 / 41;
    position: relative;
    z-index: 1;
}

.img-01-product {
    width: 90%;
    height: auto;
    position: relative;
    bottom: 0;
    z-index: 1;
}

.card-1 p {
    width: 90%;
    font-size: clamp(1rem, 2.2vw, 4rem);
    margin: 0;
    padding: 0 0px;
    position: relative;
    top: 5px;
    z-index: 1;
    line-height: 1.4;
}

.card-body {
    background-color: var(--white-color);
    width: 85%;
    margin: 0 auto;
    height: auto;
    grid-column: 1/ 15;
    grid-row: 31 / 50;
    border-radius: 2vw;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
    position: relative;
    bottom: 2vw;
}

.card-2 {
    width: 80%;
    margin: 0 auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-column: 1 / 15;
    grid-row: 60 / 70;
}

.img-02-product {
    width: 120%;
    height: auto;
    z-index: 1;
    position: relative;
    bottom: 0vw;
}

.card-2 p {
    font-size: clamp(1rem, 2.2vw, 4rem);
    width: 90%;
    margin: 0;
    padding: 0 0px;
    z-index: 1;
    position: relative;
    top: 5px;
    line-height: 1.4;
}

.card-body-2 {
    background-color: var(--white-color);
    width: 85%;
    margin: 0 auto;
    height: auto;
    grid-column: 1 / 15;
    grid-row: 61 / 75;
    border-radius: 2vw;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
}

.card-3 {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-column: 1 / 15;
    grid-row: 87 / auto;
    margin: 0 auto;
}

.img-03-product {
    width: 100%;
    height: auto;
    z-index: 1;
    position: relative;
    top: 1vw;
}

.card-3 p {
    width: 90%;
    font-size: clamp(1rem, 2.2vw, 4rem);
    margin: 0;
    padding: 0 0px;
    z-index: 1;
    position: relative;
    bottom: 0;
    top: 5px;
    line-height: 1.4;
}

.card-body-3 {
    background-color: var(--white-color);
    width: 85%;
    margin: 0 auto;
    height: auto;
    grid-column: 1 / 15;
    grid-row: 87 / 95;
    border-radius: 2vw;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
    position: relative;
    bottom: 0vw;
}

.title-card-item {
    font-size: clamp(1.1rem, 2.5vw, 4rem);
}

/*=========== section nosotros* ==========*/
.nosotros {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: minmax( 2rem, auto);
    gap: 0.4rem;
    padding: 3rem 0;
}

.nosotros h2{
    grid-column: 1 / 15;
    grid-row: 1 / 3;
    font-size: clamp(1.8rem, 4.3vw, 5rem);
    display: flex;
    justify-content: center;
    z-index: 1;
}

.card-title {
    background-color: var(--phosphorescent-green-color);
    grid-column: 5 / 11;
    grid-row: 1 / 3;
    height: 4vw;
}

.nosotros p {
    grid-column: 1 / 15;
    grid-row: 5 / auto;
    text-align: justify;
    margin-right: 0px;
    line-height: 1.5;
    font-size: clamp(1.1rem, 2.3vw, 4rem);
}

.text-title, .text-title-2 {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
}

.img-section-us {
    width: 100%;
    height: 100%;
    grid-column: 2 / 14;
    grid-row: 12 / auto;
    border-radius: 2vw;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.6);
}

/*============ Fabricación =========*/
.manufacturing {
    background-color: var(--grey-color);
    width: 100%;
    height: auto;
    grid-area: manufacturing;
}

.content-background {
    width: 80%;
    height: auto;
    margin: 0 auto;
    background-color: var(--phosphorescent-green-color);
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: minmax(2rem, auto);
    gap: 0.4rem;
}

.content-background h2 {
    width: 100%;
    grid-column: 2 / 14;
    grid-row: 4 / auto;
    font-size: clamp(2rem, 3.9vw, 5rem);
    text-align: center;
}

.separation-line {
    border: none;
    border-top: 2px solid var(--black-color);
    grid-column: 5 / 11;
    grid-row: 7 / auto;
    margin-top: 1vw;
}

.content-background p {
    width: 100%;
    grid-column: 2 / 14;
    grid-row: 12 / auto;
    text-align: justify;
    padding-right: 2vw;
    font-size: clamp(1.1rem, 2.3vw, 4rem);
    line-height: 1.5;
}

.img-manufacturing {
    width: 100%;
    height: 100%;
    grid-column: 1 / 15;
    grid-row: 19 / auto;
}

/*=========== Setion second life ========*/
.container-second-life {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: minmax(2rem, auto);
    gap: 0.4rem;
    padding: 3rem 0;
}

.container-second-life h2 {
    width: 100%;
    grid-column: 1 / 15;
    grid-row: 1 / auto;
    text-align: center;
    font-size: clamp(2rem, 3.9vw, 5rem);
}

.container-second-life p {
    width: 100%;
    grid-column: 2 / 14;
    grid-row: 5 / auto;
    text-align: justify;
    padding-right: 0vw;
    font-size: clamp(1.1rem, 2.3vw, 4rem);
    line-height: 1.5;
}

.text-color-green-2 {
    color:var(--phosphorescent-green-color);
}

/*=========== Página Contacto =========*/
.body-form {
    background-color: var(--phosphorescent-green-color);
}

.contact-section {
    width: 80%;
    margin: 0 auto;
    min-height: 80vh;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: minmax( 2rem, auto);
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.grid-container-contacto {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    gap: 0rem;
    grid-column: 1 / 15;
    grid-row: 1 / auto;
}

.titulo-contacto {
    margin-left: 0px;
    font-size: clamp(1.9rem, 4.5vw, 4.5rem);
    color: var(--black-color);
    font-weight: bold;
    line-height: 1.3;
}

.titulo-contacto-2 {
    font-size: clamp(1.9rem, 4.5vw, 4.5rem);
    color: var(--black-color);
    margin-left: 0px;
}

/*Formulario de contacto*/
.formulario-contacto {
    width: 100%;
    height: 60vh;
    max-width: 400px;
    background-color: var(--white-color);
    border-radius: 2rem;
    padding: 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
    grid-column: 1 / 15;
    grid-row: 7 / auto;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.formulario-contacto input,
.formulario-contacto textarea{
    width: 100%;
    padding: clamp(0.9rem, 1vw, 1rem);
    border-radius: 10px;
    border: 0px solid var(--dark-gray);
    background-color: var(--grey-color);
    font-size: clamp(0.9rem, 1vw, 2rem);
    resize: none;
}

.boton-enviar {
    padding: 1rem;
    background-color: var(--phosphorescent-green-color);
    border: none;
    color: var(--white);
    font-size: clamp(0.9rem, 1.1vw, 2rem);
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.boton-enviar:hover {
    background-color: var(--white-color);
    color: var(--black-color);
}

.terminos {
    font-size: clamp(0.7rem, 0.9vw, 1.5rem);
    text-align: center;
    color: var(--black-color);
}

/*-----------Section img solution ----------*/

.contant-solution {
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(14, 0.3fr);
}

.container-grid img {
    width: 100%;
    height: 100%;
    grid-column: 1 / 15;
    grid-row: 1 / 15;
}

.text-solution {
    width: 80%;
    margin: 0 auto;
    grid-column: 1 / 15;
    grid-row: 1 / 15;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-size: clamp(1.9rem, 3vw, 5rem);
}

/*============ Página política de privacidad ============*/
.grid-privacy-policy {
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(12, 2rem);
    width: 100%;
    background-color: var(--phosphorescent-green-color);
}

.title-privacy-policy {
    width: 80%;
    margin: 0 auto;
    font-size: clamp(1.1rem, 2vw, 4rem);
    grid-column: 1 / 15;
    grid-row: 1 / 13;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.about-text {
    width: 80%;
    height: 9vh;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    font-size: clamp(1.1rem, 2.3vw, 4rem);
    line-height: 1.5;
}

.privacy-policy-block {
    width: 80%;
    margin: 0 auto;
    text-align: justify;
    padding: 3rem 0;
    font-size: clamp(1.1rem, 2.3vw, 4rem);
    line-height: 1.5;
}

/*============ Página política de cookies ============*/
.grid-policy-cookies {
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(12, 2rem);
    width: 100%;
    background-color: var(--phosphorescent-green-color);
}

.title-policy-cookies {
    width: 80%;
    margin: 0 auto;
    font-size: clamp(1.1rem, 2vw, 4rem);
    grid-column: 1 / 15;
    grid-row: 1 / 13;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.about-text-cookies {
    width: 80%;
    height: 9vh;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    font-size: clamp(1.1rem, 2.3vw, 4rem);
    line-height: 1.5;
}

.policy-cookies-p {
    width: 80%;
    margin: 0 auto;
    text-align: justify;
    padding: 3rem 0;
    font-size: clamp(1.1rem, 2.3vw, 4rem);
    line-height: 1.5;
}

/*============ Página aviso legal ============*/
.grid-aviso-legal {
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(12, 2rem);
    width: 100%;
    background-color: var(--phosphorescent-green-color);
}

.title-aviso-legal {
    width: 80%;
    margin: 0 auto;
    font-size: clamp(1.1rem, 2vw, 4rem);
    grid-column: 1 / 15;
    grid-row: 1 / 13;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.about-text-aviso {
    width: 80%;
    height: 9vh;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    font-size: clamp(1.1rem, 2.3vw, 4rem);
    line-height: 1.5;
}

.aviso-legal-p {
    width: 80%;
    margin: 0 auto;
    text-align: justify;
    padding: 3rem 0;
    font-size: clamp(1.1rem, 2.3vw, 4rem);
    line-height: 1.5;
}

/*============= Página 404 ===============*/
.container-error {
    width: 100%;
    height: auto;
    display: block;
    background-color: var(--black-color);
}

.error-content {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(35, 3vw);
    padding: 0;
    gap: 0rem;
}

.error-content img {
    width: 100%;
    grid-column: 1 / 15;
    grid-row: 1 / 30;
}

.background-web-404 {
    display: none;
}

.background-404-movil {
    display: block;
    width: 100%;
    height: auto;
}

.title-h1-404 {
    grid-column: 2 / 14;
    grid-row: 8 / auto;
    color: var(--white-color);
    font-size: 12vw;
    z-index: 1;
    text-align: center;
}

.Background-purple {
    background-color: var(--phosphorescent-green-color);
    grid-column: 6 / 10;
    grid-row: 13 / 15;
    border: none;
    border-radius: 1rem;
    margin: 0;
    z-index: 1;
}

.text-error-404 {
    width: 100%;
    height: auto;
    grid-column: 6 /10;
    grid-row: 13 / 15;
    color: var(--white-color);
    z-index: 2;
    font-size: 2.5vw;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Background-black {
    width: 100%;
    height: auto;
    grid-column: 2 / 14;
    grid-row: 17 / 27;
    border-radius: 1rem;
    border: none;
    background: rgba(0, 0 , 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 30px rgba(0, 0 , 0, 0.5);
    color: var(--white-color);
    z-index: 1;
    margin: 0 auto;
}

.text-error-02 {
    grid-column: 3 / 14;
    grid-row: 18 / auto;
    color: var(--white-color);
    font-size: clamp(0.9rem, 2.7vw, 3rem);
    z-index: 2;
}

.liste-link-direction {
    grid-column: 3 / 13;
    grid-row: 20 / auto;
    z-index: 2;
    font-size: clamp(0.8rem, 2.4vw, 3rem);
    list-style: none;
    line-height: 1.6;
    margin-left: 20px;
}

.liste-link-direction li {
    color: var(--white-color);
}

.liste-link-direction a {
    color: var(--white-color);
    text-decoration: none;
}

.boton-link-home {
    width: 100%;
    grid-column: 6 / 10;
    grid-row: 29 / 31;
    z-index: 2;
    color: var(--black-color);
    font-size: clamp(0.9rem, 2.7vw, 3rem);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.background-bottom {
    grid-column: 6 / 10;
    grid-row: 29 / 31;
    width: 100%;
    height: auto;
    background-color: var(--white-color);
    z-index: 2;
    font-size: clamp(1.3rem, 2.2vw, 3rem);
    margin: 0vw 0vw;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.background-bottom:hover {
    background-color: transparent;
    border-color: var(--medium-purple);
}


/*============ footer =============*/
.footer {
    width: 100%;
    grid-area: footer;
    background-color: var(--black-color);
}

.container-footer {
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: minmax( 2rem, auto);
    gap: 0.4rem;
    padding: 2rem 0;
}

.container-footer img {
    width: clamp(4rem, 14vw, 15rem);
    margin: 0 auto;
    height: auto;
    grid-column: 9 / 15;
    grid-row: 2 / auto;
    box-shadow: 0 4px 50px rgba(140, 254, 0, 0.9);
    border: transparent;
    border-radius: 1vw;
}

.logo-footer {
    position: relative;
    bottom: 3rem;
    left: 1rem;
}

.container-footer ul {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.lista-1 {
    width: 100%;
    height: auto;
    grid-column: 2 / 14;
    grid-row: 2 / auto;
}

.lista-1 li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: clamp(0.9rem, 2.1vw, 4rem);
}

.lista-1 li a:hover {
    color: var(--phosphorescent-green-color);
    text-decoration:underline;
    font-size: clamp(0.9rem, 2.1vw, 4rem);
}

.lista-2 {
    width: 100%;
    height: auto;
    grid-column: 2 / 14;
    grid-row: 4 / auto;
}

.lista-2 li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: clamp(0.9rem, 2.1vw, 4rem);
}

.lista-2 li a:hover {
    color: var(--phosphorescent-green-color);
    text-decoration:underline;
    font-size: clamp(0.9rem, 2.1vw, 4rem);
}

.linea-footer {
    border: none;
    border-top: 1px solid var(--white-color);
    grid-column: 3 / 13;
    grid-row: 17 / auto;
    margin-top: 1vw;
    opacity: 50%;
}

.container-footer-2 {
    width: 80%;
    height: 50px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    color: var(--white-color);
    padding-bottom: 5rem;
}

.container-footer-2 p {
    font-size: clamp(0.7rem, 1.5vw, 2rem);
    text-align: center;
}

.follow-us {
    color: var(--white-color);
    grid-column: 2 / 14;
    grid-row: 9 / auto;
    text-align: center;
    font-size: clamp(0.9rem, 2vw, 4rem);
    opacity: 70%;
}

.redes-icon {
    width: 100%;
    grid-column: 2 / 14;
    grid-row: 13 / auto;
    text-align: center;
}

.redes-icon ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.redes-icon li {
    display: inline;
    margin-right: 10px;
    background: transparent;
}

.redes-icon img {
    width: 34px;
    height: 34px;
}

}
