@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;500;700;900&display=swap');

body {
    background-color: #fff;
    color: #333;
    font-family: "Roboto", sans-serif;
}

/* Header styles */
.header {
    background-color: #990000;
    text-align: center;
    padding: 20px 0;
    color: #fff;
}

/* Marquee styles */
.marquee-container {
    background-color: #800000;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    color: #fff;
    padding: 2px 0;
    height: 22px;
    display: flex;
    align-items: center;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marquee 300s linear infinite;
    padding: 0;
    font-weight: normal;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.5px;
    position: absolute;
    left: 0;
}

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

/* Main content styles */
.main-content {
    padding: 40px 0;
}

/* Video container styles */
.video-container {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    border: none;
}

/* Button styles copied exactly from original */
.get {
    font-weight: 800;
    fill: #1F1F1F;
    color: #1F1F1F;
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFDB74 50%, #FFD02F 50%);
    border-style: solid;
    border-width: 0px 1px 3px 1px;
    border-color: #A3791B;
    border-radius: 8px 8px 8px 8px;
    box-shadow: 0px 8px 40px 2px rgba(245, 215, 78, 0.35);
    padding: 15px 20px;
    margin-top: 5px;
    text-align: center;
    display: block;
    margin: 30px auto;
    width: 100%;
    max-width: 450px;
    cursor: pointer;
    animation: pulse 1.5s infinite;
}

/* Remove sublinhado do link do botão */
a {
    text-decoration: none;
}

.top-text {
    font-size: 1.2em;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 5px;
}

.bottom-text {
    font-size: 0.9em;
    font-weight: 400;
    text-transform: none;
    display: inline-block;
}

/* Animação de pulsação */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0px 8px 40px 2px rgba(245, 215, 78, 0.35);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0px 8px 50px 2px rgba(245, 215, 78, 0.55);
    }
    100% {
        transform: scale(1);
        box-shadow: 0px 8px 40px 2px rgba(245, 215, 78, 0.35);
    }
}

/* Timer styles */
.discount-countdown {
    margin-top: 20px; 
    text-align: center;
}

.countdown-container {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.countdown-box {
    display: inline-block; 
    background-color: #e74c3c; 
    color: white; 
    width: 60px; 
    height: 60px; 
    margin: 0 5px; 
    text-align: center; 
    font-weight: bold; 
    border-radius: 5px;
}

/* Footer styles */
.footer {
    background-color: #888;
    padding: 30px 0;
    margin-top: 50px;
    color: #fff;
    font-size: 0.85rem;
}

.footer-links a {
    color: #eee;
    margin: 0 15px;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
    cursor: pointer;
}

/* Popup styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    background-color: #fff;
    color: #333;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    border-radius: 8px;
    line-height: 1.5;
}

.popup-content h3 {
    color: #444;
    font-size: 1.8rem;
    font-weight: 700;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.popup-content h4 {
    color: #111;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.popup-content p {
    margin-bottom: 15px;
}

.popup-content ul, .popup-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.popup-content li {
    margin-bottom: 5px;
}

.last-updated {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: -10px;
    margin-bottom: 20px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #555;
    transition: color 0.3s;
}

.close-popup:hover {
    color: #000;
}

/* Classe esconder */
.esconder {
    display: none;
} 