@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

/* Opcional: Animación de carga con CSS (alternativa a GIF) */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}


.Principal.Index,
.cont-unodos,
.container-3 {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}



.distancia-label,
.section-title h2 {
    text-transform: uppercase;
    letter-spacing: 1px
}

.auspiciantes-container img:hover,
.btn:hover {
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, .5))
}

:root {
    --color-primary: #133800;
    --color-secundary: #ffb300;
    --color-fondo: #071500
}

body {
    background-color: #ccc
}


h1{
    font-weight: 700;
    font-family: Rowdies, sans-serif;
}

.Principal.Index,
.auspiciantes,
.cont-unodos,
.container-3,
.distancia-back,
.distancias-section,
.principal-texto,
.section-title {
    text-align: center
}


.Principal.Index {
    background-image: linear-gradient(to right, rgba(0, 0, 0, .167), rgba(0, 0, 0, .258)), url('img/FONDO7.webp');
    margin: 0 auto;
    display: flex;
    height: 100vh;
    background-color: var(--color-fondo);
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    background-color: #000
}

.contenedor.principal {
    display: flex;
    padding: 0 200px;
    align-items: center;
    text-align: center;
    height: 100vh
}

.logo {
    padding: 0 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
    text-align: center;
}

.logo-img {

    width: 400px;
    text-align: center;          /* Centrado horizontal */
}

.inscribirse {
    margin: 0 auto;
    cursor: pointer;
    border: 3px solid#ffffff;
    background-color: #00000026;
    width: 200px;
    transition: .2s ease-in-out;
    font-weight: 900;
    transform: skew(-20deg)
}

.inscribirse:hover {
    transition: .2s ease-in-out;
    background-color:#008d1a;
    width: 300px
}

.inscribirse a {
    font-size: 23px;
    color: #fff
}

.principal-texto {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.principal-texto h1 {
    color: #ffb300;
    font-size: 50px;
    font-weight: 900;
    font-style: italic
}

.principal-texto h2 {
    color: #ffb300;
    font-size: 30px;
    font-weight: 700;
    font-style: italic
}

.principal-texto p {
    margin-bottom: 10px;
    max-width: 700px;
    font-size: 10px;
    color: #fff
}

.logos-secundarios {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

.logos-secundarios img {
    width: 130px;
    height: auto
}

.cont-unodos {
    background-image: linear-gradient(rgba(116, 116, 116, .518), rgba(0, 0, 0, .5)), url("img/FONDO4.webp");
    margin: 0 auto
}

.container-1 {
    border-top: 10px;
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin: 0 auto;
    z-index: 1900;
    overflow: hidden
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .5s ease-in-out;
    z-index: 1900
}

.carousel img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    flex-shrink: 0
}


.countdown {
    justify-content: center;
    display: flex
}

.xpace1-texto {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    color: #fff;
    background-image: transparent;
    width: 60%;
    padding: 30px;
    margin: 20px;
    z-index: 1000;
    transform: skew(-5deg)
}

.xpace1-texto h1 {
    font-size: 50px;
    color: #ffb300;
    font-weight: 900;
    font-style: italic
}

.xpace1-texto p {
    font-style: italic;
    padding: 10px;
    font-size: 20px;
    margin: 0;
    font-weight: 500
}

.countdown {
    gap: 20px;
    margin-top: 20px
}

.countdown div {
    background-color: var(--color-primary);
    color: #ffb300;
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 90px
}


.decor-section {
  position: relative;      /* Para que los hijos se posicionen respecto a la sección */
  width: 100%;
  height: 80vh;            /* Altura de referencia */
  padding: 0;
  background-color: transparent; /* Fondo transparente */
  /*background:linear-gradient(to left, rgb(245, 245, 220), rgb(138, 78, 52),rgb(245,245,220)); */
}

.decor-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.decor-item {
  position: absolute;      /* Se superponen todas en la misma posición */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.decor-item img {
  width: auto;             /* Mantener proporción */
  height: 100%;            /* Ocupa toda la altura de la sección */
  object-fit: cover;       /* Ajusta sin deformar */
}


    


#player,
.image img {
    border-radius: 10px
}

.countdown span {
    display: block;
    font-size: 54px;
    font-weight: 900
}

.countdown .label {
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px
}

.container-2 {
    align-items: center;
    height: 80vh;
    position: relative;
    overflow: hidden
}

.image {
    position: absolute;
    opacity: 0;
    transform: translateY(100px);
    transition: .8s ease-in-out
}

.auspiciantes-container img,
.btn {
    transition: transform .3s, filter .3s
}




.image.active {
    opacity: 1;
    transform: translateX(0) translateY(0)
}

.cont-youtubetres {
    font-style: italic;
    background-color: var(--color-fondo);
    padding-bottom: 200px
}

.section-title h2 {
    margin: 0 auto 30px;
    padding-top: 60px;
    font-weight: 900;
    font-size: 2.5rem;
    color: #fff;
    font-style: italic
}

.video-container {
    margin-bottom: 190px;
    display: flex;
    justify-content: center;
    align-items: center
}

#player {
    width: 100%;
    max-width: 900px;
    height: 515px;
    aspect-ratio: 16/9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2)
}

.container-3 {
    background-image: url(img/C1.svg);
    color: #fff;
    max-width: 70%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.container-3:hover {
    background-color: rgba(0, 0, 0, .5);
    transition: background-color .3s
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 30px
}

.round-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff
}

.container-3 h3 {
    font-weight: 900;
    font-size: 2.5rem;
    font-style: normal;
    margin-bottom: 20px
}

.btn,
.container-3 p {
    font-size: 1.2rem;
    font-weight: 700
}

.container-3 p {
    color: #ffb300;
    margin-top: 10px;
    opacity: .9
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    color: #fff;
    background: #ec3700;
    border: none;
    border-radius: 50px;
    cursor: pointer
}

.btn:hover {
    background: #c93e00;
    transform: scale(1.1) rotate(1deg)
}

.distancias-section {
    padding: 30px 20px;
    background-color: beige;
}

.section-title {
    margin-bottom: 50px;
    font-style: italic
}

.section-title h1 {
    color: #ffb300;
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 70px
}

.section-title p {
    opacity: .9;
    color: #000;
    font-size: 1.1rem;
    max-width: 700px;
    font-weight: 500;
    margin: 0 auto
}

.auspiciantes h1,
.auspiciantes h2,
.distancia-km {
    font-size: 2.5rem;
    font-weight: 900
}

.distancias-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto
}

.distancia-card {
    position: relative;
    width: 250px;
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
    transition: transform .3s ease-in-out
}

.distancia-card:hover {
    transform: scale(1.09)
}

.distancia-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform .6s;
    transform: rotateY(0) rotateX(0) rotate(-5deg)
}

.distancia-card:hover .distancia-inner {
    transform: rotateY(0) rotateX(0) rotate(-8deg) scale(1.05)
}

.distancia-back,
.distancia-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3)
}

.distancia-front {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center
}

.distancia-back {
    background: linear-gradient(135deg, var(--color-secundary), var(--color-secundary));
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 20px
}

.distancia-km {
    background-color: rgba(0, 0, 0, .7);
    color: var(--color-secundary);
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .5)
}

.distancia-label {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.distancia-desc {
    color: rgba(255, 255, 255, .9);
    font-size: 1rem;
    line-height: 1.5
}

.distancia-card:first-child .distancia-inner {
    transform: rotate(-3deg)
}

.distancia-card:nth-child(2) .distancia-inner {
    transform: rotate(2deg)
}

.distancia-card:nth-child(3) .distancia-inner {
    transform: rotate(-4deg)
}

.distancia-card:nth-child(4) .distancia-inner {
    transform: rotate(1deg)
}

.distancia-card:nth-child(5) .distancia-inner {
    transform: rotate(3deg)
}

.distancia-card:nth-child(6) .distancia-inner {
    transform: rotate(-2deg)
}

.auspiciantes {
    padding: 60px 20px;
    background-color: var(--color-fondo)
}

.auspiciantes h1 {
    color: #fff
}

.auspiciantes h2 {
    color: #ffb300;
    margin-bottom: 20px
}

.auspiciantes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px
}

.auspiciantes-container img {
    max-width: 150px;
    height: auto
}

.auspiciantes-container img:hover {
    transform: scale(1.1) rotate(2deg);
    cursor: pointer
}

@media (max-width:1100px) {

    .contenedor.principal,
    .logo,
    .xpace1-texto {
        margin: 0 auto;
        padding: 0
    }

    .Principal.Index,
    .carousel,
    .logo,
    .xpace1-texto {
        padding: 0
    }

   

    .contenedor.principal {
        display: flex;
        text-align: center;
        justify-content: center;
        flex-direction: column
    }

    .principal-texto h1 {
        font-size: 50px
    }

    .principal-texto p {
        font-size: 11px;
        max-width: 800px
    }

    .logos-secundarios img {
        width: 100px
    }

    .logo img {
        width: 30%
    }

    .logo nav {
        width: 40%;
        padding: 1px 0
    }

    .inscribirse {
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center
    }

    .inscribirse:hover {
        width: 160px
    }

    .xpace1-texto {
        width: 80%;
        top: 10%;
        left: 100px
    }

    .xpace1-texto h1 {
        font-size: 60px
    }

    .xpace1-texto p {
        font-size: 16px
    }

    .carousel-container {
        margin-top: 200px
    }

    .carousel {
        margin: 0;
        display: flex;
        width: max-content
    }

    .carousel img {
        transform: translatex(-25%);
        width: 100vw;
        object-fit: contain
    }

    .countdown div {
        min-width: 70px
    }

    .countdown span {
        font-size: 42px
    }

    .section-title h2 {
        font-size: 2rem
    }

    .decor-section {
    height: 40vh;          /* Reducir altura en móviles */
  }



    #player {
        height: 400px
    }

    .container-3 {
        max-width: 85%
    }

    .content-wrapper {
        flex-direction: column;
        gap: 20px
    }

    .distancias-container {
        gap: 20px
    }

    .distancia-card {
        width: 220px;
        height: 320px
    }
}

@media (max-width:767px) {
    header {
        flex-direction: column;
     
    }


    .Principal.Index,
    .logo {
        padding: 0
    }

    .contenedor.principal {
        padding: 0;
        display: flex;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
        flex-direction: column
    }

    .principal-texto h1 {
        font-size: 50px
    }

    .principal-texto p {
        font-size: 10px;
        max-width: 500px
    }

    .logos-secundarios img {
        width: 100px
    }

    .logo img {
        width: 50%
    }

    .logo nav {
        width: 60%;
        padding: .5px 0
    }

    .carousel-container {
        margin-top: 200px
    }

    .carousel {
        margin: 0;
        padding: 0;
        display: flex;
        width: max-content
    }

    .carousel img {
        transform: translatex(-25%);
        width: 100vw;
        object-fit: contain
    }

    .countdown div {
        min-width: 70px
    }

    .countdown span {   
        font-size: 40px
    }

    .xpace1-texto {
        width: 80%;
        padding: 0;
        margin: 0 auto;
        top: 10%;
        left: 70px
    }

    .xpace1-texto h1 {
        font-size: 60px
    }

    .section-title h2 {
        font-size: 1.8rem;
        padding-top: 40px
    }

    .btn,
    .distancia-label,
    .section-title p {
        font-size: 1rem
    }

    #player {
        height: 250px
    }

    .container-3 {
        max-width: 90%;
        padding: 15px;
        border-radius: 30px
    }

    .container-3 h3 {
        font-size: 1.8rem
    }

    .round-image {
        width: 100px;
        height: 100px
    }

    .btn {
        padding: 12px 24px
    }

    .auspiciantes h1,
    .auspiciantes h2,
    .distancia-km {
        font-size: 2rem
    }

    .auspiciantes-container,
    .distancias-container {
        gap: 15px
    }

    .auspiciantes-container img {
        max-width: 100px
    }

    .distancia-card {
        width: 160px;
        height: 240px
    }

    .distancia-km {
        padding: 8px 20px
    }
}

@media (max-width:600px) {

    .Principal.Index,
    .logo {
        padding: 0
    }

    .contenedor.principal {
        padding: 0;
        display: flex;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
        flex-direction: column
    }

    .principal-texto h1 {
        font-size: 50px
    }

    .principal-texto p {
        font-size: 0px;
        max-width: 500px
    }

    .logos-secundarios img {
        width: 100px
    }

    .logo img {
        max-width: 300px;
        width: 100%
    }

    .logo nav {
        width: 90%;
        padding: .5px 0
    }

    #espacio-uno {
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        top: 10%;
        width: 100%;
        left: 0;
        padding: 0;
        z-index: 1000;
        transform: skew(0);
        transform: translateY(0)
    }

    .xpace1-texto h1 {
        text-align: center;
        margin-bottom: 10%
    }

    .xpace1-texto p {
        margin: 0 auto !important;
        text-align: center !important;
        font-size: 15px !important
    }

    .countdown {
        margin-top: 15px
    }

    .countdown span {
        font-size: 20px
    }
}

@media (max-width:400px) {
    .Principal.Index {
        padding: 0
    }

    .contenedor.principal {
        padding: 0;
        margin: 0 auto
    }

    .principal-texto h1 {
        font-size: 40px
    }

    .principal-texto p {
        font-size: 0px;
        max-width: 500px
    }

    .logos-secundarios img {
        width: 60px
    }

    .logo {
        max-width: 100%;
        width: 700px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto
    }

    .logo img {
        max-width: 300px;
        width: 250px
    }

    .logo nav {
        margin-top: 20px;
        width: 100%;
        padding: 1px 0
    }

    .inscribirse:hover {
        width: 160px
    }

    #espacio-uno {
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        top: 10%;
        width: 100%;
        left: 0;
        padding: 0;
        z-index: 1000;
        transform: skew(0);
        transform: translateY(0)
    }

    .xpace1-texto h1 {
        text-align: center;
        margin-bottom: 10%
    }

    .xpace1-texto p {
        margin: 0 auto !important;
        text-align: center !important;
        font-size: 15px !important
    }

    .countdown {
        text-align: center;
        margin: 0 auto;
        gap: 3px;
        width: 90%
    }

    .countdown div {
        margin-top: 10%;
        width: 90%
    }

    .distancias-container {
        flex-direction: column;
        align-items: center
    }

    .distancia-card {
        width: 80%;
        max-width: 250px;
        height: 300px
    }

    .distancia-inner {
        transform: rotate(0) !important
    }

    .distancia-card:hover .distancia-inner {
        transform: rotate(0) scale(1.05) !important
    }
}

@media (min-width:200px) and (max-width:1100px) {

    .up-header,
    .up-header nav,
    header {
        display: flex;
        display: flex
    }

    .navbar-nav,
    .up-header,
    .up-header a,
    .up-header nav {
        text-align: center
    }

    .navbar-nav {
        background-color: rgba(0, 0, 0, .842);
        padding: 1rem;
        border-radius: 10px;
        width: 100%
    }

    .nav-item {
        margin: .5rem 0
    }

    .nav-link {
        font-size: 1rem
    }

    body {
        width: auto;
        height: 100vh;
        margin: 0;
        padding: 0;
        overflow-x: hidden
    }

    
   

    .middle-header div {
        width: 100%
    }

    .logo-header img {
        margin-top: 2px;
        margin-left: 0;
        width: 70%
    }

    .logo-img {
        width: 80%;
        transition: opacity .5s, transform .5s
    }
}

@media (min-width:200px) and (max-width:600px) {

    .footer,
    .iconos-header {
        color: #fff;
        text-align: center
    }

    .logo {
        width: 50%
    }

    .logo-img {
        transition: opacity .5s, transform .5s
    }

    .inscribirse {
        background-color: #ff4d00;
        cursor: pointer;
        border: 3px #ffffff solid;
        background-color: #27740026;
        width: 50%;

        transition: .2s ease-in-out;
        font-weight: 900;
        transform: skew(-20deg)
    }

    .inscribirse a {
        font-size: 20px;
        color: #fff;
        text-decoration: none
    }

    .iconos-header {
        width: 90%;
        display: flex;
        flex-direction: row;
        bottom: 10vh;
        left: 50%;
        transform: translateX(-50%);
        gap: 0;
        padding: 0;
        border-radius: 10px
    }

    .icon {
        background: #000;
        width: 30px;
        height: 30px;
        font-size: 20px;
        border-radius: 0;
        justify-content: center;
        align-items: center;
        box-shadow: 0 20px 20px rgba(0, 0, 0, .253);
        cursor: pointer;
        transition: .2s;
        border: 0;
        transform: skew(-5deg)
    }

    .container-1 {
        border-top: 10px;
        width: 100%;
        height: auto;
        position: contain;
        display: flex;
        justify-content: flex-start;
        margin: 0 auto;
        z-index: 1900;
        overflow: hidden
    }

    .xpace1-texto {
        position: absolute;
        top: 20%;
        left: 10%;
        transform: translateY(-50%);
        color: #fff;
        width: 60%;
        padding: 30px;
        z-index: 1000;
        transform: skew(-5deg);
        margin-top: 0
    }

    .carousel-container,
    .footer {
        position: relative;
        overflow: hidden
    }

    .xpace1-texto h1 {
        color: #ffb300;
        font-weight: 900
    }

    .xpace1-texto p {
        text-align: left;
        width: 85%;
        padding: 10px;
        font-size: 1rem;
        margin: 0;
        font-weight: 500
    }

    .arreglos {
        margin-top: 0
    }

    .carousel-container {
        max-width: 0%;
        width: 0%;
        margin: 0 auto
    }

    .carousel {
        display: flex;
        width: max-content
    }

    .carousel img {
        transform: translatex(-60%);
        width: 0;
        object-fit: contain
    }

    .carousel-buttons {
        width: 0;
        padding: 0;
        overflow: hidden;
        display: none
    }

    .image-left {
        margin-left: 700px;
        width: 30000px;
        z-index: 2000
    }

    .image-right {
        margin-right: 800px;
        width: 0PX
    }

    .image-center {
        margin-right: 0;
        width: 1000PX;
        z-index: 2000
    }

    .content-wrapper {
        display: flex;
        align-items: center;
        gap: 30px
    }

    .round-image {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #fff
    }

    .container-3 h1 {
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: 20px
    }

    .container-3 p {
        color: #f04a00;
        margin-top: 10px;
        font-size: 1rem;
        opacity: .9
    }

    .footer {
        background: linear-gradient(135deg, #000, #008d1a);
        padding: 50px 0;
        font-family: Arial, sans-serif
    }
}

@media (min-width:600px) and (max-width:1024px) {
    .image-left {
        margin-left: 700px;
        width: 30000px;
        z-index: 1990
    }

    .image-right {
        margin-right: 800px;
        width: 0PX
    }

    .image-center {
        margin-right: 0;
        width: 1000PX;
        z-index: 1990
    }

    .logo-img {
        width: 70%;
        transition: opacity .5s, transform .5s
    }
}

@media (min-width:1025px) and (max-width:1200px) {
    .image-left {
        transform: translateX(-100px)
    }

    .image-right {
        transform: translateX(100px)
    }

    .image-center {
        transform: translateY(300px)
    }

    .logo-img {
        width: 50%;
        transition: opacity .5s, transform .5s
    }
}

@media (min-width:200px) and (max-width:450px) {

    .container-3,
    .video-container {
        margin-bottom: 10vh
    }

    .btn,
    .container-3 h1 {
        font-weight: 700;
        font-size: 1rem
    }

    body {
        background-color: #000
    }

    .section-title h2 {
        font-size: 15px;
        color: #fff
    }

    .section-title p {
        font-size: 15px;
        color: #ffb300
    }

    .xpace1-texto {
        top: 20%;
        left: 5%
    }

    .carousel img {
        transform: translatex(0);
        width: 00VW;
        object-fit: contain
    }

    .container-3 {
        width: 100%;
        text-align: center;
        color: #fff;
        max-width: 100%;
        border-radius: 0;
        padding: 0
    }

    .round-image {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #fff
    }

    .container-3 h1 {
        text-align: center;
        margin-bottom: 20px
    }

    .container-3 p {
        color: orange;
        margin-top: 10px;
        font-size: 1rem;
        opacity: .9
    }

    .btn {
        margin-top: 20px;
        padding: 5px 15px;
        color: #fff;
        background: #ff5100;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        text-decoration: none;
        transition: background .3s
    }

    .cont-youtubetres {
        margin: 0 auto;
        padding: 0
    }

    .container-1 {
        background: linear-gradient(to bottom, #00ff2f00);
        border-top: 10px;
        width: 100%;
        height: 100vh;
        position: relative;
        display: flex;
        justify-content: flex-start;
        margin: 0 auto;
        z-index: 1900;
        overflow: hidden
    }

    .iconos-header {
        width: 80%;
        display: flex;
        flex-direction: row;
        bottom: 10vh;
        left: 50%;
        transform: translateX(-50%);
        gap: 0;
        padding: 0;
        text-align: center;
        color: #fff;
        border-radius: 10px
    }
}