* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black-color: #000;
    --white-color: #fff;
    --red-color: #ff0000;
    --color-grey-rgba: #EFF0F0;
}

body {
    font-family:'Rubik', sans-serif;
    font-style: normal;
    display: flex;
    flex-direction: column;
    min-height: 100dvh; 
}

.item {
    margin: 0;  
    padding: 0px; 
}

.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 75px;
    margin: 0 auto;
    padding: 0;
    z-index: 10;
    background-color: var(--red-color);
    border-radius: 1rem; 
}

.navbar-grid {
    width: 100%;
    height: 75px;
    margin: 0 auto;
    padding: 0 0px;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(3, 1fr);
    position: relative; 
}

.logo-nav {
    width: 100%;
    height: 75px;
    margin-left: 3rem;
    grid-column: 1 / 5;
    grid-row: 1 / 4;
    display: flex;
    align-items: center; justify-content: left;
    scale: 1.3;
    font-size: clamp(.7rem, .8vw, 1.2rem);
    font-weight: 600;
    color: var(--white-color);     
}

.nav-toggle {
    background-color: transparent;
    border-style: none;
    display: none;
    cursor: pointer;
}

.nav-item {
    grid-column: 5 / 15;
    grid-row: 1 / 4;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 0 30px;
    font-style: none;
    list-style: none;
}

.nav-item a {
    text-decoration: none;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    color: var(--white-color);
}

.nav-item a:hover {
    text-decoration: underline;
}

.link-contact {
    background-color: black;
    padding: 6px 15px;
    border-radius: 8px;
}
/*================ Section Main =============*/
main {
    width: 100%;
}

.contenido-principal {
    position: relative;
    width: 100%;
    height: 800px;
    background-image: url("../img/principal_mundial.webp.jpg");
    background-size: 1920px 800px;
    background-position: center top;
    background-repeat: no-repeat;
}

.container-grid {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(14, 1fr);
    gap: 0rem;
}

.container-grid h1 {
    grid-column: 2 / 14;
    grid-row: 6 / 7;
    text-align: center;
    color: var(--white-color);
    font-size: clamp(3.9rem, 4vw, 5rem);
    font-weight: 500; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95);
}

.container-grid p {
    grid-column: 3 / 13;
    grid-row: 8 / auto;
    color: var(--white-color);
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    text-align: center; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95); font-weight: 300;
    background: rgba(0, 0, 0, 0.65);
    padding: 0.25em 0.45em;
    border-radius: 1em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
}

.btn-link {
    font-size: clamp(1rem, 1.3vw, 1.4rem);
    text-decoration: none;
    color: var(--white-color);
    background-color: var(--red-color);
    padding: .9rem 1rem;
    border-radius: .8rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.95);
} 

.content-butoon {
    border-color: var(--red-color);
    text-align: center;
    grid-column: 2 / 14;
    grid-row: 11 / auto;
}

.btn-link:hover {
    color: var(--white-color);
    background-color: var(--black-color);
}


/*================== section II Quiénes somos ================*/
.who-we-are {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.container-grid-who-we-are {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(14, 1fr);
    gap: 0.8rem;
}

.subtitle-engineering {
    grid-column: 6 / 14;
    grid-row: 3 / 3;
    display: flex;
    align-items: center;
    font-size: clamp(1.3rem, 1.5vw, 1.5rem);
}

.tittle-who-we-are {
    grid-column: 6 / 14;
    grid-row: 4 / 4;
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.red-are {
    color: var(--red-color);
}

.description-mundial {
    grid-column: 6 / 14;
    grid-row: 5 / 9;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    text-align: justify;
}

.content-img-who-we-are img {
    position: absolute;
    top: 11rem;
    left: -10rem;
    width: clamp(500px, 55vw, 700px);
    padding-right: 1.5rem;
}

/*==================section III Proyecto ================*/
.section-project {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--black-color),  #1a1a1a);
}

.container-grid-project {
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: minmax(2rem, auto);
    gap: 1.5rem 2rem;
    position: relative;
}

.content-img-project {
    width: 100%;
    height: 100%;
    grid-column: 1 / 15;
    grid-row: 1 / 15;
    z-index: 1;
}

.content-img-project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.subtitle-project {
    grid-column: 2 / 10;
    grid-row: 3 / auto;
    display: flex;
    align-items: center;
    font-size: clamp(1.3rem, 1.5vw, 1.5rem);
    color: var(--white-color);
    z-index: 2;
}

.line-project {
    grid-column: 2 / 7;
    grid-row: 3 / auto;
    background-color: var(--white-color);
    margin: 0;
    padding: 0;
    border: none;
    height: 2px;
    align-self: flex-end;
    position: relative;
    top: .5rem
}

.title-project {
    grid-column: 2 / 10;
    grid-row: 4 / auto;
    font-size: clamp(2.3rem, 4vw, 4rem);
    color: var(--white-color);
    z-index: 2;
}

.color-red-special {
    color: var(--red-color);
}

.description-project {
    grid-column: 2 / 8;
    grid-row: 5 / 8;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    color: var(--white-color);
}

.subtitle-project-areas {
    grid-column: 2 / 8;
    grid-row: 8 / 9;
    font-size: clamp(1.3rem, 1.5vw, 1.5rem);
    z-index: 2;
    color: var(--white-color);
}

.list-project {
    grid-column: 2 / 8;
    grid-row: 9 / 12;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    text-align: justify;
    color: var(--white-color);
}

/*=============== Banner Soluciones Industriales ==============*/
.industrial-project {
    width: 100%;
    height: 300px;
    background-color: var(--white-color);
    display: grid;
    place-items: center;
}

.title-solution h2 {
    font-size: clamp(2.2rem, 3.1vw, 3.3rem);
    text-align: center;
    font-weight: 400;
}

.red-construction {
    color: var(--red-color);
}

/*================ Section Cold Storage room ============*/
.cold-storage {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url("../img/camaras_frigorificas.webp");
    background-size: 1920px 600px;
    background-position: center;
    background-repeat: no-repeat;
}

.container-grid-cold {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(14, 1fr);
    gap: 0.8rem;
}

.title-cold-storage {
    grid-column: 2 / 14;
    grid-row: 4 / 7;
    text-align: center;
    color: var(--white-color);
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 500; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95);
    align-self: flex-end;
    justify-self: center;

}

.title-cold-storage span {
    color: var(--red-color);
}

.description-cold-storage {
    color: var(--white-color);
    grid-column: 3 / 13;
    grid-row: 7 / 10;
    text-align: justify;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
}

/*================== Section - franja separadora =========================*/
.section-separator {
    width: 100%;
    height: 200px;
    background-color: var(--red-color);
}

/*================== Section - Cámara Congelación =====================*/
.freezing-chamber {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden; /* Permite cortar la imagen */
}

.freezing-chamber::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(600px, 50vw, 900px); /* Igual que background-size */
    height: 100%;
    background-image: url("../img/camara_congelacion.webp");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

.grid-content-freezing,
.freezing-chamber > * {
    position: relative;
    z-index: 1;
}

.grid-content-freezing {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: minmax(2rem, auto);
    gap: 1rem 2rem;
    padding-bottom: 2rem;
}

.title-freezing {
    grid-column: 8 / 14;
    grid-row: 2 / 3;
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.description-freezing {
    grid-column: 8 / 14;
    grid-row: 3 / 4;
    font-size: clamp(1.1rem, 1.3vw, 1.4rem);
    text-align: justify;
}

.camera-features {
    grid-column: 8 / 14;
    grid-row: 4 / 5;
    padding-left: 2rem;
    font-size: clamp(1.1rem, 1.3vw, 1.4rem);
    text-align: justify;
}

.line-final {
    grid-column: 10 / 14;
    grid-row: 8 / 8;
}

@media (max-width: 1300px) {

    .freezing-chamber::before {
        width: 50%;
        background-size: 800px auto;
        overflow: hidden;
    }

    .grid-content-freezing {
        padding-inline: 2rem;
        gap: 1rem 3rem;
    }

    .title-freezing {
    grid-column: 8 / 15;
    grid-row: 2 / 3;
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.description-freezing {
    grid-column: 8 / 15;
    grid-row: 3 / 4;
    font-size: clamp(1.1rem, 1.3vw, 1.4rem);
}

.camera-features {
    grid-column: 8 / 15;
    grid-row: 4 / 5;
    font-size: clamp(1.1rem, 1.3vw, 1.4rem);
}

}

/*--------------- Articulos - proyecto ------------*/

.section-01 {
    width: 100%;
    height: 200px;
}

.section-02 {
    width: 100%;
    height: 200px;
} 

/*================== Section - franja separadora =========================*/
.section-separator-2 {
    width: 100%;
    height: 200px;
    display: grid;
    place-items: center;
    background-color: var(--black-color);
}

.section-separator-2 H2 {
    color: var(--white-color);
    text-align: center;
    font-size: clamp(2.3rem, 3vw, 3.1rem);
}

/*================== Section - Silo Autoportante =====================*/
.silo-autoportante {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden; /* Permite cortar la imagen */
}

.silo-autoportante::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: clamp(600px, 50vw, 900px); /* Igual que background-size */
    height: 100%;
    background-image: url("../img/silo-autoportante.webp");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    pointer-events: none;
}

.grid-content-silo,
.silo-autoportante > * {
    position: relative;
    z-index: 1;
}

.grid-content-silo {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: minmax(2rem, auto);
    gap: 1rem 2rem;
    padding-bottom: 2rem;
}

.title-silo {
    grid-column: 2 / 8;
    grid-row: 2 / 3;
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.description-silo {
    grid-column: 2 / 8;
    grid-row: 3 / 4;
    font-size: clamp(1.1rem, 1.3vw, 1.4rem);
    text-align: justify;
}

.camera-autoportante {
    grid-column: 2 / 8;
    grid-row: 4 / 5;
    padding-left: 2rem;
    font-size: clamp(1.1rem, 1.3vw, 1.4rem);
    text-align: justify;
}

.line-final-silo {
    grid-column: 2 / 6;
    grid-row: 8 / 8;
}

@media (max-width: 1300px) {

    .silo-autoportante::before {
        width: 50%;
        background-size: 840px auto;
        overflow: hidden;
    }

    .grid-content-silo {
        padding-inline: 2rem;
        gap: 1rem 3rem;
    }

    .title-silo {
    grid-column: 1 / 8;
    grid-row: 2 / 3;
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.description-silo {
    grid-column: 1 / 8;
    grid-row: 3 / 4;
    font-size: clamp(1.1rem, 1.3vw, 1.4rem);
}

.camera-autoportante {
    grid-column: 1 / 8;
    grid-row: 4 / 5;
    font-size: clamp(1.1rem, 1.3vw, 1.4rem);
}

}

/*================ Section Lana de Roca ============*/
.lana-roca {
    position: relative;
    width: 100%;
    height: 977px;
    background-image: url("../img/lana-roca.webp");
    background-size: 1920px 977px;
    background-position: center;
    background-repeat: no-repeat;
}

.container-grid-lana-roca {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(14, 1fr);
    gap: 0.8rem;
}

.title-lana-roca {
    grid-column: 2 / 14;
    grid-row: 2 / 4;
    text-align: center;
    color: var(--white-color);
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 500; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95);
    align-self: flex-end;
    justify-self: center;

}

.title-lana-roca span {
    color: var(--red-color);
}

.description-lana-roca {
    color: var(--white-color);
    grid-column: 3 / 13;
    grid-row: 4 / 8;
    text-align: justify;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
}

/*================= Cintillo de Clientes =================*/
.content-clients {
    width: 100%;
    max-width: 1700px;
    padding: 0 4rem;
    margin: 0 auto;
}
.title-clients {
    margin-top: 2rem;
    font-size: clamp(2.1rem, 3vw, 3.5rem);
    text-align:left;
}

.p-clients {
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    margin-top: 2rem;
    text-align: justify;
}

.card-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-column: 2 / -2;
    grid-row: 3;
    gap: 1rem;
    margin-top: 3rem;
    padding: 0 3rem;
    list-style: none;
}

/* A partir de 1200px: 2 columnas*/
@media (max-width: 1200px) {
    .card-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* En pantallas pequeñas: Una sola columna*/
@media (max-width: 800px) {
    .card-container {
        grid-template-columns: 1fr;
    }
}

.card-badge {
    width: 100%;
    height: auto;
    text-align: right;
    font-size: clamp(1.5rem, 1.8vw, 3rem);
}

.card {
    list-style: none;
    position: relative;
    display: grid;
    grid-template-rows: repeat(3, auto);
    background: var(--black-color);
    color: var(--white-color);
    border-radius: .9rem;
    padding: 1.7rem .8rem;
    min-height: 0px;
    gap: .6rem;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45),
                0 5px 30px rgba(0, 0, 0, 0.35),
                0 0 10px rgba(255, 255, 255, 0.12);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    border: 1px solid rgba(255, 255, 255, 0.547);
}

.card:hover,
.car:focus-within {
    transform: translateY(-4px);
    transition: .5s ease;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55),
                0 20px 50px rgba(0, 0, 0, 0.45),
                0 0 18px rgba(255,255,255, 0.15);
    border-color: rgba(255, 255, 255, 0.20);
    outline: none;
    background-color: var(--red-color);
}

.card p {
    font-size: clamp(1.5rem, 1.5vw, 2rem);
}

.list-item li {
    margin-bottom: 1rem;
    list-style: none; 
}

.clients {
    width: 100%;
    padding: 2rem 0;
    background-color: var(--white-color);  
}

.clients-wrapper {
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 3rem;
    list-style: none;
    padding: 0;
    margin: 0;
    width: max-content;
    animation: clients-marquee 25s linear infinite;
    will-change: transform; 
}

.cliente-logo img {
    display: block;
    height: 210px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0);
    opacity: 0.9;
    transition: opacity 0.4s ease, filter 0.4 ease, transform 0.4 ease; 
}

.cliente-logo:hover {
    opacity: 1;
    filter: grayscale(1);
    transform: scale(1.09);
}

/*-------- Animación de cinta de izquierda a derecha ----------*/

@keyframes clients-marquee {
    0% {
        transform: translateX(0); 
    }
    100% {
        transform: translateX(-50%);
    }
}

.clients-wrapper::before, 
.clients-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/*----- Responsive -------*/
@media (max-width: 900px) {
    .clients-track {
        gap: 1.5rem;
        animation-duration: 35s;
    }
    .cliente-logo img {
        height: 160px;
        margin-bottom: 2rem;
    }
}

/*==================footer - IV ================*/
.contenido-footer-grid {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: minmax(2rem, 13vw);
    place-items: center;
    gap: 0.8rem;
    background-color: var(--black-color);
}

.logo-nav-footer {
    grid-column: 4 / 12;
    grid-row: 1 / 1;
    margin: 0;
}

.logo-nav-footer img {
    display: block;
    width: clamp(200px, 20vw, 250px); 
    position: relative;
    bottom: 3rem;
}

.footer-item {
    display: flex;
    gap: 2rem;
    grid-column: 2 / 14;
    grid-row: 2 / 2;
    list-style: none;
    justify-self: center;
    align-self: center;
    padding: 0;
    margin: 0;
    color: var(--white-color);
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    font-weight: 300;
}

.footer.item a {
    color: inherit;
    text-decoration: none;
}

.footer.item a:hover {
    text-decoration: underline;
    color: var(--red-color);
}

.footer-item-two {
    display: flex;
    gap: 3rem;
    grid-column: 2 / 14;
    grid-row: 5 / 5;
    opacity: 50%;
    list-style: none;
    color: var(--white-color);
    font-size: clamp(1rem, 1vw, 1rem);
    font-weight: 200;
}

.all-rights {
    grid-column: 2 / 14;
    grid-row: 7 / 7;
    color: var(--white-color);
    opacity: 50%;
    font-size: clamp(.9rem, .9vw, .9rem);
    font-weight: 200;
}

.contact-footer {
    grid-column: 2 / 14;
    grid-row: 10 / 10;
    color: var(--white-color);
    font-size: clamp(1.2rem, 1.5vw, 1.8rem);
}

.mundial-footer {
    grid-column: 2 / 14;
    grid-row: 12 / 12;
    color: var(--white-color);
    font-size: clamp(1.2rem, 13vw, 14rem);
    font-weight: 500;
}

/*==================Contacto - page ================*/
.contact-background {
    width: 100%;
    min-height: 100vh;
    padding: 1rem;   
}

.grid-container-contact {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4rem 6rem;
    text-align: center;
    background: radial-gradient(circle at bottom center, #c70000 0%, #500000 40%, #000000 100%);
    color: var(--white-color);
    border-radius: 1rem;
}

.info-contact {
    margin-top: 2rem;
}

.title-contact {
    font-size: clamp(2rem, 2.5vw, 3rem);
    margin-bottom: 2rem;
}

.p-contact {
    font-size: clamp(1.1rem, 1.2vw, 1.4rem);
    margin: 0 5rem;
}

.contact-form {
    background: var(--color-grey-rgba);
    backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: 1rem;
    width: 100%;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    color: var(--black-color);
    opacity: 60%;
}

.form-group input {
    width: 100%;
    height: 45px;
    background-color: #E0E0E0;
    border: none;
    border-radius: .4rem;
    font-size: .7rem;
    color: var(--black-color);
    opacity: 80%;
    padding: .5rem;
}

.form-group input:focus {
    background-color: rgb(176, 176, 176);
    color: var(--black-color);
}

.btn-submit {
    margin-top: 2rem;
    background:#E0E0E0;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: .8rem;
    font-size: .9rem;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.btn-submit:hover {
    transform: scale(1.05);
    color: var(--white-color);
    background: var(--black-color);
}

.form-group input:focus {
    outline: none;
}

/*================ Pág Gracias =====================*/
.thanks-background {
    width: 100%;
    min-height: 80vh;
    padding: 1rem;   
}

.grid-container-thanks {
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4rem 6rem;
    text-align: center;
    background: radial-gradient(circle at bottom center, #c70000 0%, #500000 40%, #000000 100%);
    color: var(--white-color);
    border-radius: 1rem;
}

.info-thanks {
    margin-top: 2rem;
}

.title-thanks {
    font-size: clamp(2rem, 2.5vw, 3rem);
    margin-bottom: 2rem;
}

.title-h2-thanks {
    font-size: clamp(1.2rem, 1.4vw, 1.6rem);
    margin-bottom: 2rem;
}

.p-thanks {
    font-size: clamp(1.1rem, 1.2vw, 1.4rem);
    margin: 0 5rem;
}

/*================== Pág Política de seguridad, aviso legal y politica de cookies ================*/
.privacy-policy-background {
    width: 100%;
    min-height: 80vh;
    padding: 1rem;   
}

.grid-container-policy {
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4rem 1rem;
    text-align: center;
    background: radial-gradient(circle at bottom center, #585858 0%, #212121 40%, #000000 100%);
    color: var(--white-color);
    border-radius: 1rem;
}

.info-policy {
    margin-top: 2rem;
}

.title-policy {
    font-size: clamp(2rem, 2.5vw, 3rem);
    margin-bottom: 2rem;
}

.subtitle-security {
    font-size: clamp(1.2rem, 1.4vw, 1.6rem);
    margin-bottom: 3rem;
}

.p-policy {
    font-size: clamp(1.1rem, 1.2vw, 1.4rem);
    margin: 0 5rem;
}

/*------------ Sección política de privacidad ------------*/
.content-privacy {
    width: 100%;
    min-height: auto;
    padding: 1rem; 
    margin-bottom: 3rem;
}

.info-security {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 4rem 4rem;
    text-align: none;
}

.title-info-security {
    font-size: clamp(2rem, 2.3vw, 2.5rem);
    margin-bottom: 2rem;
}

.description-security {
    font-size: clamp(1.1rem, 1.2vw, 1.4rem);
    text-align: justify;
}

.description-security ul, .description-security li {
    font-size: clamp(1.1rem, 1.2vw, 1.4rem);
}

.list-info {
    font-size: clamp(1.1rem, 1.2vw, 1.4rem);
    text-align: justify;
    margin-top: 1rem;
}

/*============= Página 404 ===========*/
.error-page {
    font-size: clamp(4rem, 5vw, 7rem);
}


/*============ style Whatsapp =======*/
#whatsapp-button.whatsapp-hidden {
    display: none;
}

#whatsapp-button {
    position: fixed;
    bottom: 130px;
    right: 30px;
    z-index: 10000;
    transform: scaler(0);
}

#whatsapp-button a img {
    width: clamp(3.2rem, 5vw, 4rem);
    height: clamp(3rem, 5vw, 4rem);
    border-radius: 50%;
}

/*Animación tipo bounce in*/
@keyframes bouceIn {
    0%{
        opacity: 0;
        transform: scale(0);
    }
    50%{
        opacity: 1;
        transform: scale(1.2);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

#whatsapp-butto.animate-bounce {
    animation: bounceIn 0.4s ease-out forwards
}

/*================ Banner de consentimiento ============*/
.cookie-banner__content {
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 6rem;
    background-color: var(--black-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vw 1vw;
    box-shadow: 0 4px 9px rgba(0,0,0,4);
    border-top: 1px solid rgba(0,0,0,.06);
}

.sr-only {
    font-size: clamp(1rem, 1.3vw, 1.4rem);
    color: var(--white-color);
    font-weight: 400;
    position: relative;
    bottom: .0rem;
    text-align: center;
}

.description-btn {
    font-size:clamp(.8rem, 1.1vw, 1.2rem);
    color: var(--white-color);
}

.btn-red-cookies {
    color: var(--red-color);
    text-decoration: none;
    cursor: pointer;
    margin-left: .4rem;
}

.btn-red-cookies:hover {
    color: var(--white-color);
    text-decoration: underline;
}

.cookie-banner__button {
    margin-left: .1rem;
}

.cookie-banner__btn, 
.cookie-banner__close  {
    padding: .4rem .5rem;
    border-radius: .4rem;
    border: transparent;
    font-size:clamp(.8rem, .9vw, 1rem);
    cursor: pointer;
}

.cookie-banner__btn:hover, 
.cookie-banner__close:hover {
    background: var(--red-color);
    color: var(--white-color);
}

/*--------- ocultar botón ------------*/
.cookie-banner.hidden {
    display: none;
}
