/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Botão Geral */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #007BFF;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* Header */
.header {
    width: 100%;
    padding: 20px 0;
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    max-width: 150px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu li a:hover {
    color: #ddd;
}

/* Navegação Responsiva */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    .nav-menu li {
        margin: 10px 0;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(240, 240, 240, 0.8), rgba(240, 240, 240, 0.2)), 
                url('../img/bkLogopy.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Sombra no título */
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #000;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Responsividade para Hero */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 16px;
    }
}

/* Features */
.features {
    padding: 100px 0;
    background-color: #fff;
}

.features h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #007BFF;
}

.feature-list {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 280px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 16px;
    color: #555;
}

/* Demo Section */
.demo {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.demo h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #007BFF;
}

.video-container {
    display: flex;
    justify-content: center;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: #fff;
}

.pricing h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #007BFF;
}

.pricing-table {
    display: flex;
    justify-content: center;
}

.pricing-table ul {
    list-style-type: none; /* Remove os pontos */
    padding-left: 0; /* Remove o espaçamento da lista */
}

.plan {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.plan.featured {
    border: 2px solid #007BFF;
}

/* Subscribe Section */
.subscribe {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.subscribe h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #007BFF;
}

.subscribe form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.subscribe input, .subscribe select {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
}

.cta-button {
    width: 100%;
    max-width: 400px;
}

/* Footer */
.footer {
    padding: 20px 0;
    background-color: #333;
    color: #fff;
    text-align: center;
}

/* Galeria */
.gallery {
    padding: 100px 0;
    background-color: #fff;
}

.gallery h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #007BFF;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.gallery-item {
     background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden; /* Garante que a imagem não saia do card */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%; /* Garante que a imagem preencha o card */
    height: auto; /* Mantém a proporção da imagem */
    border-radius: 10px;
}

.gallery-item:hover {
    transform: scale(2.08);
}

.gallery-item p {
    font-size: 16px;
    color: #555;
}

.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    color: #333;
}
.modal-content h2 {
    font-size: 24px;
    color: #007BFF;
    margin-bottom: 15px;
}
.modal-content p {
    font-size: 16px;
    margin-bottom: 15px;
}
.modal-submessage {
    font-weight: bold;
    margin-top: 15px;
    font-size: 18px;
    color: #555;
}
.password-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.password {
    font-size: 18px;
    color: #d9534f;
    font-weight: bold;
    background-color: #f0f0f0; /* Cinza claro */
    padding: 8px;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 5px;
    width: auto;
}
.copy-button {
    font-size: 14px;
    padding: 6px 12px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.copy-button:hover {
    background-color: #0056b3;
}
.button-space {
    margin-bottom: 15px;
}
.modal-content .btn {
    background-color: #007BFF;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}
.modal-content .btn:hover {
    background-color: #0056b3;
}

/* Estilos gerais para a seção demo */
.demo {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.demo h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #007BFF;
}

/* Container do vídeo */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px; /* Limita o tamanho máximo do vídeo */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px; /* Adiciona bordas arredondadas */
    background-color: #000;
}

/* Estilização do vídeo */
.video-container video {
    width: 100%;
    height: auto; /* Mantém a proporção do vídeo */
}

/* Media Query para telas menores */
@media (max-width: 768px) {
    .demo h2 {
        font-size: 28px; /* Reduz o tamanho do título */
    }
    .video-container {
        max-width: 90%; /* Reduz a largura máxima para telas menores */
    }
}

@media (max-width: 480px) {
    .demo h2 {
        font-size: 24px; /* Ajusta o tamanho do título para telas muito pequenas */
    }
    .video-container {
        max-width: 100%; /* O vídeo ocupa toda a largura disponível */
    }
}
