/* Sección de texto animado infinito */
.infinite-text-section {
    width: 100%;
    height: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
    background: linear-gradient(180deg, #fcf9f1e0 0%, #ffffff 100%)
}

.infinite-text-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.infinite-text {
    position: relative;
    white-space: nowrap;
    will-change: transform;
}

.text-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.infinite-text span {
    display: inline-block;
    color: var(--Dark, #2D2924);
    text-align: center;
    font-family: "Libre Bodoni";
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-right: 20px;
}

.infinite-text span.highlight {
    font-size: 80px;
    font-style: italic;
    font-weight: 400;
    line-height: 100%;
    color: #B48C09;
}

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

/* Responsive para el texto animado */
@media (max-width: 768px) {
    .infinite-text-section {
        height: 80px;
    }
    
    .infinite-text span {
        font-size: 60px;
    }
}

@media (max-width: 576px) {
    .infinite-text-section {
        height: 60px;
    }
    
    .infinite-text span {
        font-size: 1.4rem;
    }
}