html {
    font-family: "futura-pt", sans-serif;
}

body, html {
    margin: 0 !important;
    padding: 0 !important;
}

.footer {
    display: flex !important;
    margin-left: 38rem; 
    width: calc(100% - 38rem); 
    align-items: stretch; 
    box-sizing: border-box;
    color: white;
    min-height: 18rem;
}

.colour-samples {
    flex: 0 0 17%; 
    background-color: rgba(0, 0, 0, 0.85);
    padding: 2rem 1rem; 
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.title-with-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.colour-samples h3 {
    font-size: 2.2rem;
    font-weight: 400;
    color: #f7be00;
    margin: 0;
}

.corner-arrow {
    width: 6rem;      
    height: auto;
}

.colour-samples p {
    font-size: 1.6rem;
    font-weight: 100;
    color: #f7be00;
    margin-top: 1rem;
    line-height: 1.2;
}

.footer-info {
    flex: 0 0 85%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: space-between; 
    align-items: stretch; 
    padding: 2.5rem 2rem;
    box-sizing: border-box;
}

.info-left {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100%; 
    text-align: left;
}

.colourSamplesLink {
    text-decoration: none;
}

/* NUEVO ESTILO PARA EL ENLACE DEL EMAIL */
.email-link {
    text-decoration: none;
    color: white;
}
.email-link:hover {
    text-decoration: underline;
    gap: 0.5rem;
    color: white;
}

.info-top p, .info-left > p {
    margin: 0 0 0.5rem 0; 
    font-size: 1.8rem;
    font-weight: 300;
}

.rightColumn {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: flex-end; /* Alinea los bloques al borde derecho */
    height: 100%;
}

.info-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    margin-right: -0.2rem;
    padding: 0 3rem; /* Pequeño ajuste para compensar el visual del icono del mundo */
}

.info-right p {
    margin: 0; 
}

.info-right img {
    width: 3rem; /* Aumentado ligeramente para mejor visibilidad */
    filter: invert(1);
}

.worldwide-link {
    text-decoration: none;
    color: white;
    font-size: 1.6rem;
    font-weight: 300;
}
.rrssIcons {
    display: flex;      
    gap: 1.5rem; /* Espaciado uniforme */
    align-items: center;
    margin-right: -0.5rem; /* Ajuste para que el último icono toque el borde derecho exacto */
    padding: 0 3rem;
}

.rrssIcons img {
    width: 2.8rem;      
    height: auto;
    display: block;
}

/* --- CAROUSEL --- */
.footer_carousel {
    width: 100%;
    overflow: hidden;
    background-color: #FAFAFA;
    padding: 4rem 0;
    display: flex;
}

.carousel_track {
    display: flex;
    width: max-content;
    animation: scroll_infinito 40s linear infinite; 
}

.carrusel {
    height: 8rem;
    width: auto; 
    display: block;
}

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