:root {
    --roxo-escuro: #403081;
    --roxo-medio: #6a54a3;
    --roxo-claro: #9677c6;
    --bege: #cdb192;
    --lilás: #896d89;
    --branco: #ffffff;
    --cinza-claro: #f5f5f5;
    --cinza-escuro: #333
 
}

/* Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: helvetica;
}

body {
    padding-top: 80px;
    background-color: var(--cinza-claro);
    color: var(--preto);
    font-family: 'Arial', sans-serif;
}

/* Cabeçalho e Menu */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--roxo-escuro);
    color: var(--branco);
    padding: 15px 20px;
    text-align: center;
    z-index: 1000;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu a {
    color: var(--branco);
    padding: 10px 15px;
    text-decoration: none;
    transition: color 0.3s;
    ;
}

.menu a:hover {
    color: var(--bege);
    border-radius: 5px;
}

/* Botão do Menu em Telas Pequenas */
.menu-btn {
    display: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 5px;
}

@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        position: absolute;
        background: #1a1a1a;
        width: 100%;
        left: 0;
        top: 50px;
        display: none;
    }

    .menu.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }
}

/* banner */
.banner-image {
    margin-top: -20px;
    width: 100%;
    height: 580px; /* Ajuste conforme necessário */
    object-fit: cover;
}
 
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--roxo-medio);
    color: var(--branco);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: var(--roxo-claro);
    transform: scale(1.05);
}

/* Seção Sobre */
.sobre {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 100px auto;
    padding: 50px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.sobre-text {
    width: 50%;
}

.sobre-text h2 {
    font-size: 30px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.sobre-text p {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.profile-img {
    width: 40%;
    border-radius: 10px;
}

/* redes sociais */
.redes-sociais {
    margin-top: 20px;
}

.redes-sociais h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    font-size: 28px;
    color: #403081;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #cdb192;
    transform: scale(1.2);
}

/* Seção Cursos*/
.banner-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text_bg {
    position: absolute;
    background: rgba(0, 5, 10, 0.343);
    padding: 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
}


.aprendizado {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px 20px;
    background: var(--cinza-claro);
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.col-1,
.col-2 {
    flex: 1;
    background: #6a54a3;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.col-1:hover,
.col-2:hover {
    transform: scale(1.05);
}

.col-1 ul,
.col-2 ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.col-1 h2,
.col-2 h2 {
    text-align: center;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .aprendizado {
        flex-direction: column;
    }
}

/* Cursos */
.cursos,
.curso-info,
.video-section {
    text-align: center;
    padding: 30px;
    background-color: var(--cinza-claro);
    color: var(--preto);
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card {
    background:var(--branco);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    margin-top: 20px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

li {
    list-style: none;
    text-align: justify;
}


.video-section h2 {
    margin-bottom: 20px;
}

.instagram-videos {
    display: flex;
    flex-wrap: wrap;
    /* Permite que os vídeos se ajustem em telas menores */
    gap: 20px;
    justify-content: center;
}

.instagram-media {
    max-width: 48%;
     min-width: 320px;
 }

/* Ajuste da seção de pagamento */
.curso-info {
    background: linear-gradient(45deg, #403081, #896d89);
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Layout em colunas */
.container-pagamento {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
}

/* Estilo dos cartões */
.card, .valores-pagamento {
    flex: 1;
    min-width: 280px;
    padding: 20px;
    margin: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.curso-info h2 {
    font-size: 1.5rem;
    color: var(--branco);
    font-weight: bold;
}

.curso-info p {
    color:#1a1a1a;
    font-size: 1.2rem;
    font-style: italic;
}
h3.blink {
    color: var(--roxo-escuro);
}
/* Métodos de pagamento */
.valores-pagamento {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.pagamento-opcoes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.metodo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: white;
}

.metodo i {
    font-size: 2rem;
    margin-right: 10px;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .container-pagamento {
        flex-direction: column;
        text-align: center;
    }

    .pagamento-opcoes {
        flex-direction: column;
    }
}

/* Botão destacado */
.btn-destaque {
    animation: pulse 1.5s infinite;
}

/* Efeito de pulo no botão */
.curso-info .btn {
    display: inline-block;
    background: var(--bege);
    color:var(--preto);
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    animation: pulo 1s infinite ease-in-out;
}

.btn-destaque {
    animation: pulse 1.5s infinite;
}

/* Animação de pulo */
@keyframes pulo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/*botao voltar ao topo*/
.back-to-top {
	position: fixed;
	right: 10px;
	bottom: 100px;
	background-color: transparent;
	border: 0.1px solid #5a3d73;
	border-radius: 50%;
	cursor: pointer;
	color: var(--roxo-escuro);
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: color 0.3s ease, background-color 0.3s ease;
	padding: 5px;
	animation: pulse 1.5s infinite;
}
/* Animação de pulso */
@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}
.back-to-top:hover {
	background-color: #3d2d4b;
	color: #99a9f454;
}

   /* Estilo do botão do WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px; /* Distância do fundo */
    right: 20px; /* Distância da direita */
    background-color: #25d366; /* Verde do WhatsApp */
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 32px;
    transition: transform 0.2s ease-in-out;
    z-index: 1000;
}

/* Efeito de hover */
.whatsapp-button:hover {
    transform: scale(1.1);
}

/* 🔹 Estilização da seção de contato */
.contato {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: var(--branco);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* 🔹 Estilizando a parte esquerda (chamada + redes sociais) */
.contato {
    margin-top: 80px;
    padding: 50px 20px;
    background: var(--branco);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contato .contato-info {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.contato .contato-info h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.contato .whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    animation: pulse 1.5s infinite;
}

/* Animação do botão do WhatsApp */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.contato .whatsapp-btn:hover {
    background: #1ebe5f;
}

/* 🔹 Ícones das redes sociais */
.contato .social-icons {
    display: flex;
    justify-content: center;
      margin-top: 30px;
      gap: 20px;
   }


.contato .social-icons a {
    font-size: 2rem;
    margin: 0 10px;
    color: #403081;
    transition: 0.3s;
}

.contato .social-icons a:hover {
    color: #cdb192;
}

/* 🔹 Estilizando a parte direita (formulário) */
.contato form {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--branco);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contato form input,
.contato form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--lilás);
    border-radius: 5px;
    font-size: 1rem;
}

.contato form textarea {
    height: 120px;
    resize: none;
}

.contato form .btn {
    background-color: var(--roxo-escuro);
    color: var(--branco);
    font-size: 1.2rem;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contato form .btn:hover {
    background-color: var(--roxo-medio);
}

/* Rodape */
footer {
    background: var(--roxo-escuro);
    color: var(--branco);
    padding: 10px 0; 
    font-size: 14px;
    text-align: center; 
}


/* Responsivo: Organiza melhor em telas maiores */
@media (min-width: 600px) {
    footer {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* 🔹 Responsividade */
@media (max-width: 768px) {
    .container-pagamento {
        flex-direction: column;
        text-align: center;
    }

    .pagamento-opcoes {
        flex-direction: column;
    }
}

/* Efeito de piscar */
h3.blink {
    animation: blink 1s infinite;
    color: var(--roxo-escuro);
}

/* Botão destacado */
.btn-destaque {
    animation: pulse 1.5s infinite;
}