/* Estilos Gerais */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.menu {
	text-align: left;
    padding: 10px;
    color: #2c3e50;
    width: 200px;
    background: #f9f9f9;
    border-radius: 0px 105px 10px 0px;
}

.menu:hover {
    border-radius: 0px 10px 105px 0px;
}

.links {
	color: #2c3e50;
	text-decoration: none;
}

.links:hover {
	color: #fff;
	text-decoration: none;
	background: #2c3e50;
	padding: 5px;
	border-radius: 5px;
}

.logo {
	border-radius: 20px;
	height: 15pc;
}

h1, h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
    margin: 5px;
}

.btn:hover {
    background-color: #2980b9;
}

/* Botão Flutuante do Telegram */
.telegram-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0088cc; /* Cor oficial do Telegram */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: blink;
}

.telegram-float:hover {
    transform: scale(1.1);
}

/* Cabeçalho / Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1500x500') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: #fff;
}

.hero h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Seções */
section {
    padding: 60px 0;
}

section:nth-child(even) {
    background-color: #fff;
}

/* Seção Sobre Nós */
.about ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.about ul li {
    background-color: #ecf0f1;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about ul li i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 1.2em;
}

/* Seção Planos */
.plans {
    background-color: #f9f9f9;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.plan-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
    border: 3px solid #3498db;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.plan-card h3 {
    color: #3498db;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.plan-card .price {
    font-size: 2.5em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.plan-card .price span {
    font-size: 0.5em;
    font-weight: normal;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-card ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-card ul li:last-child {
    border-bottom: none;
}

.plan-card ul li i.fa-check {
    color: #27ae60;
    margin-right: 8px;
}

.plan-card ul li i.fa-times {
    color: #e74c3c;
    margin-right: 8px;
}

/* Seção FAQ */
.faq {
    background-color: #fff;
}

.faq-item {
    background-color: #ecf0f1;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #34495e;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer; /* Indica que é clicável */
}

.faq-item p {
    display: none; /* Oculta a resposta por padrão */
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
}

.faq-item.active p {
    display: block; /* Mostra a resposta quando ativo */
}


/* Rodapé */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;
}

footer i {
    color: #e74c3c; /* Coração vermelho */
}
/* Video Background */
	.video-background {
		position: fixed; /* Fixa o vídeo ao fundo */
		top: 50%; /* Centraliza verticalmente */
		left: 50%; /* Centraliza horizontalmente */
		min-width: 100%; /* Garante que o vídeo cubra toda a largura */
		min-height: 100%; /* Garante que o vídeo cubra toda a altura */
		width: auto;
		height: auto;
		z-index: -999; /* Coloca o vídeo atrás de outros elementos */
		opacity: 0.9;
		transform: translate(-50%, -50%); /* Centraliza o vídeo */
	}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero h2 {
        font-size: 1.5em;
    }

    .plan-cards {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }

    .plan-card.featured {
        transform: none; /* Remove o transform em telas menores */
    }

    .telegram-float {
        width: 50px;
        height: 50px;
 		font-size: 25px;
    }
}
