/* Global Styles */
body {
    font-family: "Georgia", serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 30px auto;
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    overflow: hidden;
}

/* Header Section */
.headline {
    font-size: 32px;
    color: transparent;
    background: linear-gradient(to right, #f80404, #c4b004);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: left;
    border-left: 6px solid #007bff;
    padding-left: 10px;
}

/* Main Content */
.main-content {
    display: block;
    gap: 20px;
}

.image-section {
    position: relative;
    margin-bottom: 20px;
}

.video-placeholder img {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    border: 2px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.video-placeholder img:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.image-section::after {
    content: "Watch Now!";
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

.video-section {
    position: relative;
    text-align: center;
}

.ugc-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.play-button:hover {
    background-color: #0056b3;
}


@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.1);
    }
}

/* Text Section */
.text-section {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.text-section p {
    margin: 15px 0;
}

.text-section strong {
    color: #d9534f;
    font-weight: bold;
}

/* Progress Bar */
.progress-bar {
    width: 100%; /* Barra ocupa toda a largura */
    height: 10px;
    background: #e0e0e0; /* Cor de fundo */
    border-radius: 5px;
    overflow: hidden;
    margin: 10px auto;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress {
    width: 100%; /* Começa cheia */
    height: 100%;
    background: linear-gradient(to right, #f39c12, #e74c3c); /* Gradiente da barra */
    transition: width 0.1s linear; /* Transição suave */
    border-radius: 5px 0 0 5px;
}


@keyframes load {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}


/* Call-to-Action Label */
.cta-label {
    text-align: center;
    margin-top: -10px;
}

.cta-text {
    font-size: 16px;
    color: #c0392b;
    font-weight: bold;
    text-transform: uppercase;
}

/* Call-to-Action Countdown */
.cta-countdown {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #c0392b;
    margin-top: 5px;
    font-weight: bold;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0.5; }
}

/* Call-to-Action Button */
.watch-video-button {
    display: block;
    width: fit-content;
    margin: 20px auto;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.watch-video-button:hover {
    background: linear-gradient(45deg, #e74c3c, #f1c40f);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    cursor: pointer;
}

/* References Section */
.references {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    text-align: center;
}

.references h3 {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logos img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
.footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .headline {
        font-size: 26px;
    }

    .text-section {
        font-size: 16px;
    }

    .watch-video-button {
        font-size: 18px;
        padding: 12px 20px;
    }

    .logos img {
        max-width: 100px;
    }
}
