/* Estilos personalizados */
    body {
        margin: 0;
        padding: 0;
        height: 100vh;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
    }

  img {
    pointer-events: none; /* Bloqueia interações com imagens */
  }

    .video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        will-change: transform;
        backface-visibility: hidden;
    }

    .section-title, .plan-header, .plan-price, .plan-item {
        color: #f7fafc;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .buy-button {
        background: linear-gradient(45deg, #00ff88, #00a1ff);
        color: white;
        padding: 12px 24px;
        font-size: 1.125rem;
        font-weight: bold;
        border-radius: 8px;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        display: inline-block;
        text-align: center;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.5), 0 0 20px rgba(0, 161, 255, 0.5);
    }

    .buy-button:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 40px rgba(0, 161, 255, 0.8);
        border-color: #00ff88;
    }

    .buy-button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300%;
        height: 300%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 70%);
        transform: translate(-50%, -50%) rotate(45deg);
        transition: all 0.5s ease;
        opacity: 0;
    }

    .buy-button:hover::before {
        opacity: 1;
        width: 150%;
        height: 150%;
    }

    #btnTop {
        display: none;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 99;
        background-color: #007BFF;
        color: white;
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        font-size: 24px;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease;
    }

    #btnTop:hover {
        background-color: #0056b3;
    }

    /* Estilo do Ícone do YouTube */
    .youtube-icon {
        position: absolute;
        top: 10px;
        right: 10px;
        color: #fff; /* Cor do YouTube */
        font-size: 24px;
        animation: pulse 1.5s infinite;
    }

    /* Animação de pulso */
    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1);
        }
    }
   /* Estilo do Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
    animation: fadeIn 0.5s ease-in-out;
}

/* Animação de fade-in */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Conteúdo do Modal */
.modal-content {
    background: linear-gradient(145deg, #f7f7f7, #e0e0e0);
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #ddd;
    width: 80%;
    max-width: 800px;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow-y: auto;
}

/* Estilo da Tabela */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table thead {
    background-color: #4CAF50;
    color: white;
}

.styled-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.styled-table tbody tr:hover {
    background-color: #ddd;
}

/* Botão de Fechar */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #f44336;
    text-decoration: none;
    cursor: pointer;
}

/* Responsividade da Tabela */
@media screen and (max-width: 768px) {
    .styled-table {
        font-size: 16px;
    }
    .modal-content {
        width: 90%;
        max-width: 90%;
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .styled-table {
        font-size: 14px;
    }
    .modal-content {
        width: 95%;
        max-width: 95%;
        padding: 15px;
    }
}
/* Container para alinhar os elementos na mesma linha */
.container-buttons {
    display: flex;
    gap: 20px; /* Espaçamento entre os botões */
    justify-content: center; /* Alinha os botões horizontalmente */
    align-items: center; /* Alinha os botões verticalmente */
}

/* Estilo do botão Comprar */
.buy-button {
    background: linear-gradient(45deg, #00ff88, #00a1ff); /* Cor do botão Comprar */
    color: white;
    padding: 12px 24px;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5), 0 0 20px rgba(0, 161, 255, 0.5);
}

/* Estilo do botão Detalhes */
.details {
    background: linear-gradient(45deg, #ff4d4d, #ff1a1a); /* Cor vermelha */
    color: white;
    padding: 12px 24px;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.5), 0 0 20px rgba(255, 26, 26, 0.5);
}

/* Efeito de hover no botão Comprar */
.buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 40px rgba(0, 161, 255, 0.8);
    border-color: #00ff88;
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

/* Efeito ao passar o mouse no botão Comprar */
.buy-button:hover::before {
    opacity: 1;
    width: 150%;
    height: 150%;
}

/* Efeito de hover no botão Detalhes */
.details:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.8), 0 0 40px rgba(255, 26, 26, 0.8);
    border-color: #ff1a1a;
}

.details::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

/* Efeito ao passar o mouse no botão Detalhes */
.details:hover::before {
    opacity: 1;
    width: 150%;
    height: 150%;
}
.logos-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logos-slide {
    display: inline-block;
    white-space: nowrap; /* Garante que as imagens fiquem em uma única linha */
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move apenas metade do conteúdo */
    }
}

.logos-slide img {
    display: inline-block;
    margin: 0 20px;
}