

.box {
    /*width: 100px;*/
    /*height: 100px;*/
    /*background-color: #e74c3c;*/
    /*margin: 50px;*/
    animation-name: scale-and-shrink;
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes scale-and-shrink {
    0% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1.2);
    }
}

.slider-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.slider-text {
    display: inline-block;
    animation: slide-continuous 2700s linear infinite;
    padding-left: 100%;
}

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

.outlined-text {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ffffff;
    -webkit-text-fill-color: transparent;
    color: transparent;
}


.sponsors-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.sponsors-row img,
    .sponsors-row a img {
    height: auto;
    max-width: calc(50% - 1rem);
    width: auto;
    object-fit: contain;
    max-height: 80px;
}
.sponsors-row a {
    width: calc(50% - 2rem);
    flex: 1;

}
@media (width >= 40rem) {
    .sponsors-row img,
    .sponsors-row a img {
        height: auto;
        max-width: calc(50% - 2rem);
        width: 150px;
        max-height: 100px;
    }
}


@media (width >= 64rem) {
    .sponsors-row {
        justify-content: space-evenly;
    }
    .sponsors-row img,
    .sponsors-row a img {
        max-width: 200px;
        width: initial;
        height: auto;
    }
}

.animate-bg-image {
    animation: pulse-bg-image 8s ease-in-out infinite;
}

@keyframes pulse-bg-image {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


.faq-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: sans-serif;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #ffffff;
}

.faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #e1e1e1;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    margin: 10px 0 0;
    padding-top: 10px;
    border-top: 1px dashed #eee;
    color: #e1e1e1;
    line-height: 1.6;
}


.faq-item.active .faq-answer {
    max-height: 700px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

section[id] {
    scroll-margin-top: 60px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-button {
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.play-button:hover {
    transform: scale(1.1);
}

iframe {
    width: 100%;
    height: 100%;
}

ul {

    list-style-position: outside;
    display: block;
    list-style-type: disc;
    margin-block-start: 0;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 20px;
}

.video-container-2 {
    position: relative;

    height: 0;

    width: 100%;
    max-width: 800px;
    margin: auto;

}

.video-container-2 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


input, select, textarea {
    font-size: 16px; /* Mínimo 16px previene zoom */
}
