/* Global Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Animations defined in JSON custom CSS */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(251, 176, 59, 0.9);
    }

    50% {
        box-shadow: 0 0 30px rgba(251, 176, 59, 1);
    }
}

@keyframes glowhover {

    0%,
    100% {
        box-shadow: 0 0 15px #25a837;
    }

    50% {
        box-shadow: 0 0 30px #25a837;
    }
}

/* Button Style */
.button-preco {
    background: linear-gradient(180deg, #fbb03b, #c8871e);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: pulse 1.5s ease-in-out infinite, glow 1.5s infinite alternate;
    font-family: 'Gilroy', 'Montserrat', sans-serif;
}

.button-preco:hover {
    background: linear-gradient(180deg, #00ff00, #008000);
    /* Verde mais chamativo */
    box-shadow: none;
    /* Remover o brilho amarelo ao passar o mouse */
    animation: pulse 1.5s ease-in-out infinite, glowhover 1.5s infinite alternate;
}

/* Sliding Text */
.sliding-content {
    display: flex;
    width: max-content;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Image Carousel */
.carousel-track {
    display: flex;
    gap: 65px;
    justify-content: center;
    flex-wrap: wrap;
}

.carousel-track img {
    border-radius: 10px;
    max-width: 200px;
}

/* Accordion */
.accordion-header.active {
    color: #FBB03B !important;
}

.accordion-header.active i {
    transform: rotate(180deg);
    color: #FBB03B !important;
}

/* Helpers */
.elemento1,
.elemento2,
.elemento3,
.elemento4 {
    visibility: visible;
    /* Controlled by ScrollReveal */
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .carousel-track {
        gap: 20px;
    }

    .carousel-track img {
        max-width: 45%;
    }

    /* Sliding Banner Mobile Adjustments if needed */
    .banner-1,
    .banner-2 {
        padding: 10px 0;
    }
}

/* VSL STYLES - OPTIMIZED FOR 9:16 ASPECT RATIO */
.vsl-video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 20px auto 32px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vsl-video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    /* 9:16 aspect ratio = 16/9 * 100 = 177.78% */
    background-color: #000;
    overflow: hidden;
}

#youtube-player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.8);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FCD34D;
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 280px;
    z-index: 20;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: none;
    /* Controlled by JS */
}

.overlay-text-top {
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

.overlay-text-bottom {
    font-weight: 700;
    color: #000;
    margin: 12px 0 0 0;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

.mute-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mute-icon {
    color: #000;
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .vsl-video-container {
        max-width: 90%;
    }
}