        /* Reset bÃ¡sico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Layout de fundo e fontes */
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(
                    to bottom,
                    rgba(252, 209, 22, 0.6) 20%,   /* Amarelo vai até 60% */
                    rgba(0, 56, 168, 0.6) 80%,     /* Azul ocupa uma faixa menor */
                    rgba(206, 17, 38, 0.6) 100%    /* Vermelho no final */
            );
            background-attachment: fixed;
            background-size: cover;
            color: #222;
            line-height: 1.6;
        }

        /* ContÃªiner principal */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* CabeÃ§alho */
        header {
            text-align: center;
            padding: 40px 0;
            background-color:#7b7cb5;
            color: white;
        }

        header h1 {
            font-size: 2.5rem;
        }

        /* SeÃ§Ã£o de introduÃ§Ã£o */
        .intro {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .intro h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .intro p {
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .intro img {
            width: 100%;
            max-width: 600px;
            margin-top: 20px;
            border-radius: 8px;
        }
.intro {
    text-align: center;
    padding: 20px;
}

.intro iframe {
    width: 40%;     /* largura padrão no desktop */
    height: 1000px;  /* mesma altura que você já tinha */
    border: none;
}

/* Responsividade para telas menores (celulares) */
@media (max-width: 768px) {
    .intro iframe {
        width: 90%;
        aspect-ratio: 9 / 16; /* mantém proporção */
    }
}

        /* SeÃ§Ã£o de informaÃ§Ãµes sobre as aulas */
        .aulas {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .aula {
            background-color: #ffffff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .aula h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            text-align: center;   
        }

        .aula p {
            font-size: 1rem;
        }

        /* SeÃ§Ã£o de contato */
        .contato {
            background-color: #7b7cb5;
            color: white;
            padding: 40px 20px;
            margin-top: 40px;
            text-align: center;
            align-items: center; 
        }

        .contato h2 {
            margin-bottom: 20px;
        }

        .contato p {
            font-size: 1.2rem;
            margin-bottom: 10px;
            position: relative;
            top: -5px;  /* sobe o texto em relação ao ícone */
        }

        .contato a#whatsapp {
            font-size: 1.2rem;
            margin-bottom: 10px;
            background-color: #7b7cb5;
            color: inherit; /* Garantir que a cor do texto seja a mesma */
            padding: 0px 12px 0px 12px; /* Se vocÃª nÃ£o quiser nenhum padding */
        }
        a#whatsapp p img {
            vertical-align: -3px; /* ajuste fino: -3px a -6px conforme seu gosto */
            margin-right: 6px;
        }  
        .contato a {
            background-color: #412f74;
            color: white;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            display: inline-block;
            transition: background 0.3s;
        }
        
        .contato a:hover {
            background-color: #a17ee2;
        }
        
        /* Estilo especÃ­fico para o link com o ID "whatsapp" */    

        /* Responsividade */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
            }

            .intro h2 {
                font-size: 1.5rem;
            }

            .aulas {
                grid-template-columns: 1fr;
            }

            .contato a {
                font-size: 1.1rem;
            }
        }