:root {
    --cor-primaria: #c0c0c0;
    --cor-secundaria: #990000;
    --cor-destaque: #ff0000;
    --cor-texto: #333333;
    --cor-fundo: #f5f5f5;
    --sombra-padrao: 0 4px 8px rgba(0, 0, 0, 0.1);
    --fonte-principal: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte-principal);
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--cor-secundaria);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: var(--cor-destaque);
    transform: translateY(-2px);
}

.btn-subscribe {
    background: linear-gradient(45deg, var(--cor-secundaria), var(--cor-destaque));
    padding: 15px 30px;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-subscribe:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Verificação de Idade */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.verificacao-idade {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
}

.verificacao-idade h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.verificacao-idade p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo span {
    color: var(--cor-destaque);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--cor-destaque);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    background-color: #000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none; /* Impede interação com o vídeo */
}

.hero-video.active {
    opacity: 0.7;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-dots .dot.active {
    background-color: rgba(255, 255, 255, 1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--cor-destaque);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Seções */
.secao {
    padding: 80px 0;
}

.titulo-secao {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--cor-texto);
}

/* Sobre */
.sobre-conteudo {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sobre-foto {
    flex: 1;
}

.sobre-foto img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--sombra-padrao);
}

.sobre-texto {
    flex: 1;
}

.sobre-texto h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.sobre-texto p {
    margin-bottom: 20px;
}

/* Galeria */
.galeria-upload {
    text-align: center;
    margin-bottom: 40px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--sombra-padrao);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.modal-galeria {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-galeria .modal-conteudo {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-galeria img {
    max-width: 100%;
    max-height: 80vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal-galeria .fechar-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.modal-galeria .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
}

.modal-galeria .nav-prev {
    left: -50px;
}

.modal-galeria .nav-next {
    right: -50px;
}

/* Vídeos */
.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-item {
    display: flex;
    flex-direction: column;
    box-shadow: var(--sombra-padrao);
    border-radius: 10px;
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--cor-secundaria), var(--cor-destaque));
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite ease-in-out;
}

.play-button i {
    font-size: 30px;
    color: white;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: linear-gradient(45deg, var(--cor-destaque), var(--cor-secundaria));
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.video-info {
    padding: 20px;
    background-color: white;
}

.video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.video-info p {
    margin-bottom: 20px;
}

.modal-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-video .modal-conteudo {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-video video {
    max-width: 100%;
    max-height: 80vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal-video .fechar-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

/* Assinatura */
.assinatura-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--sombra-padrao);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.assinatura-preco {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cor-secundaria);
    margin-bottom: 20px;
}

.assinatura-preco span {
    font-size: 1.2rem;
    font-weight: 400;
}

.assinatura-beneficios {
    margin: 30px 0;
}

.beneficio {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.beneficio-icon {
    color: var(--cor-secundaria);
    font-size: 1.2rem;
}

/* Contato */
.contato-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.contato-info {
    flex: 1;
}

.contato-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contato-info p {
    margin-bottom: 20px;
}

.contato-mapa {
    flex: 1;
}

.contato-mapa iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: var(--cor-texto);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    margin-bottom: 20px;
}

.footer-content p {
    margin-bottom: 10px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cor-destaque);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 992px) {
    .sobre-conteudo,
    .contato-container {
        flex-direction: column;
    }

    .contato-mapa iframe {
        height: 300px;
    }

    .videos-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(0, 0, 0, 0.95);
        padding: 20px 0;
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    nav.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    nav ul li {
        margin: 20px 0;
    }

    nav ul li a {
        font-size: 1.5rem;
        color: white;
        padding: 10px 20px;
        display: block;
    }

    .menu-toggle {
        display: block;
        z-index: 1200;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (min-width: 992px) {
    .hero {
        height: 90vh;
    }
    .hero-video {
        left: 50%;
        transform: translateX(-50%);
    }
    .hero-content {
        max-width: 900px;
    }
    .hero-title {
        font-size: 5rem;
    }
    .hero-subtitle {
        font-size: 1.8rem;
    }
    .btn {
        padding: 14px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 80vh;
    }
    .hero-video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-dots .dot {
        width: 10px;
        height: 10px;
    }
    .modal-galeria .nav-prev {
        left: -30px;
    }
    .modal-galeria .nav-next {
        right: -30px;
    }
    .play-button {
        width: 60px;
        height: 60px;
    }
    .play-button i {
        font-size: 24px;
    }
}