:root {
    --primary-color: #000;
    --accent-color: #4CAF50;
    --text-color: #333;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5f5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 10px 0;
}

.logo img {
    max-width: 200px;
    height: auto;
}

h1 {
    font-size: 1.8rem;
    text-align: center;
    margin: 20px 0;
    color: var(--primary-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #444;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 0px;
}

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

/* Seção do texto e seta */
.video-text-section {
    text-align: center;
    margin: 30px auto;
    max-width: 700px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.arrow-down {
    width: 40px;
    height: auto;
    margin: 10px auto 0;
    display: block;
}

.cta-button {
    display: block;
    width: max-content;
    margin: 30px auto;
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #45a049;
}

/* Seção de preço e acesso */
.pricing-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 20px auto;
    max-width: 500px;
}

.access-container,
.price-container {
    width: 100%;
    text-align: center;
}

.access-img,
.price-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-section {
        max-width: 90%;
        padding: 0 15px;
    }

    .access-img,
    .price-img {
        width: 100%;
    }

    h1 {
        font-size: 1.8rem;
    }

    .cta-button {
        width: 90%;
        padding: 15px 20px;
    }

    .cookie-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        margin: 5px 0;
    }

    .cookie-settings-btn {
        bottom: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

.pricing {
    text-align: center;
    margin: 40px 0;
}

.price-tag {
    display: inline-block;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.access-badge {
    background-color: #4CAF50;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.price-message {
    font-weight: bold;
    margin: 10px 0;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    background-color: #fff;
    color: #555;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
    font-size: 14px;
}

.cookie-content h3 {
    margin-bottom: 12px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.cookie-content p {
    margin-bottom: 15px;
    line-height: 1.4;
    color: #666;
    font-size: 13px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.customize {
    background-color: #fff;
    color: #666;
    border: 1px solid #ddd;
}

.customize:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.decline {
    background-color: #f1f1f1;
    color: #666;
}

.decline:hover {
    background-color: #e5e5e5;
}

.accept {
    background-color: #4CAF50;
    color: #fff;
}

.accept:hover {
    background-color: #45a049;
}

@media (max-width: 768px) {
    .cookie-content {
        width: 95%;
        padding: 15px;
        margin: 10px;
        font-size: 13px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        margin: 4px 0;
        padding: 8px 12px;
    }
}

/* Adiciona classe para bloquear scroll do body */
.no-scroll {
    overflow: hidden;
}

/* Botão para reabrir configurações de cookies */
.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    display: none;
    z-index: 9998;
    transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-settings-btn i {
    margin-right: 5px;
}