/* Barra de Navegação */
.logo img {
    height: 60px;
    width: auto;
    max-width: 130px;
    margin-left: 30px;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;

}

.menu a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    color: #f1f1f1;
    font-weight: 400;
    font-size: 1rem;
    transition: 0.3s;
    position: relative;
    
}

.cabecalho {
    background-color: #141312;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 5%;
    height: 70px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.hamburger {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    margin-right: 30px;
}
    


.hamburger span {
    width: 26px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #f1f1f1;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

.menu a:hover {
    color: #f1f1f1;
}

.btn-contato {
    background-color: #35271c;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
}

.btn-contato:hover {
    background-color: #583014;
    color: white;
}

.btn-contato::after {
    display: none;
}

/* Section Inicio */

#inicio {
    width: 100%;
    position: relative; 
    display: flex;
}
#inicio h2 {
    color: white;
}

#inicio h1{
    color: white;
    font-family: "Rubik Distressed", sans-serif;
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

#inicio img{
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
    position: relative;
    filter: brightness(0.5); 
}

#inicio p{
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ffffff;
}

#inicio strong{
    color: rgb(255, 244, 233);
    display: block;
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 25px;
}

.cmc {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    padding: 40px 50px;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #161212;
    border-radius: 12px;
    text-align: left;
}

#inicio a{
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #22211d;
    border-radius: 30px;
    background-color: #35271c;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

#inicio a:hover{
    background-color: #583014;
    color: #ffffff;
}

/* Section Sobre */

#sobre {
    padding: 200px 8%;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
}

.container-sobre {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

.sobrebox {
    flex: 1;
    max-width: 600px;
}

#sobre h2 {
    font-family: "Rubik Distressed", sans-serif;
    font-size: 2.8rem;
    color: #553e2d;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#sobre h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #614511;
    margin-bottom: 20px;
}

.divisor {
    width: 100px;
    height: 4px;
    background-color: #614511;    
    margin-left: auto;
    margin-right: auto;    
    margin-bottom: 25px;
    margin-top: 10px;
}

#sobre p {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

.sobre-imagem {
    flex: 1;
    display: flex;
    justify-content: center;
}

#sobre img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 20px 20px 0px #35271c;
}

/* Section Aulas */

#aulas {
    padding: 100px 5% 150px 5%; 
    background-color: #9c8a7f; 
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

#aulas > header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

#aulas > header h2 { 
    font-family: "Rubik Distressed", sans-serif;
    font-size: 2.8rem;
    color: #35271c;
    text-transform: uppercase;
}

#aulas > header p {
    color: #35271c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.container-aulas {

    background-color: #dfd8d1;
    padding: 50px;            
    border-radius: 20px;       
    box-shadow: 0 15px 40px rgba(53, 39, 28, 0.2); 
    border: 3px solid #35271c; 
    margin-bottom: 40px;

    
    display: flex;
    align-items: center; 
    gap: 40px;           
    max-width: 1800px;   
    width: 100%;
}

#aulas > article figure {
    flex: 1; 
    display: flex;
    justify-content: flex-start;
}

#aulas > article img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: none; 
}

.aulasinfo {
    flex: 2;                   
    border-radius: 15px;
}

#aulas > article h3 {
    font-family: "Rubik Distressed", sans-serif;
    font-size: 2.5rem; 
    color: #35271c;
    margin-bottom: 20px;
    text-align: center;
}

#aulas > article p {
    color: #35271c;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 500;
    text-align: justify;
    margin-bottom: 8px;
}

/* Section Planos */

#plano {
    padding: 100px 5% 150px 5%; 
    background-color: #f1f1f1; 
    display: flex;
    flex-direction: column;
    align-items: center; 
}

#planos > header{
    text-align: center;
    margin-bottom: 50px;
}

#plano > header h2 { 
    font-family: "Rubik Distressed", sans-serif;
    font-size: 2.8rem;
    color: #35271c;
    text-transform: uppercase;
    text-align: center;
}

#plano > header p {
    color: #35271c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
} 

.container-planos {
    position: relative;
    background-color: #dfd8d1;
    padding: 20px; 
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(53, 39, 28, 0.5);
    border: 3px solid #35271c;
    
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    max-width: 900px;
    width: 100%;
    min-height: 200px;
    padding-bottom: 40px;
}

/* Estilização da caixa do Select */
.select-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
    position: relative;
}

#plan-select {
    width: 100%;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #35271c;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px; 
    appearance: none;   
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


.select-wrapper::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
}

#plan-select:focus {
    outline: none;
    border-color: #35271c;
}

#plano nav {
    display: flex;
    background-color: #dfd8d1;  
    padding: 5px;
    border-radius: 50px;
    margin: 0 auto 30px;
    max-width: 600px;
    border: 2px solid #35271c;
    gap: 5px;
}

#plano button {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 15px;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #35271c;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

#plano button.active {
    background-color: #35271c;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.solo-card {
    min-height: 250px;
    justify-content: center;
    transition: transform 0.3s ease;
}

#display-price {
    font-size: 2rem;
    margin: 10px 0;
}

#display-label {
    font-size: 2rem;
}

.fade-in {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#plano small {
    display: block;
    margin-bottom: 5px;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-style: italic;
}

.planosinfo {
    width: 100%; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px; 
    border-bottom: 1px solid rgba(53, 39, 28, 0.1); 
}

#plano h3 {
    font-family: "Rubik Distressed", system-ui;
    font-size: 1.5rem; 
    color: #35271c;
    margin-bottom: 0; 
    text-align: left;
}

.planosinfo p {
    color: #35271c;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem; 
    font-weight: 700;
    text-align: right;
    margin: 0;
}

.formas-pagamento-mini {
    position: absolute;
    bottom: 5px;
    left: 40px; 
    display: flex;
    flex-direction: row; 
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

#plano span{
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; 
    font-weight: 700;
    color: #35271c;
    text-transform: uppercase;
}

.icones-mini {
    display: flex;
    gap: 8px;
}

.icones-mini img {
    height: 28px; 
    width: auto;
    object-fit: contain;
    
}

.aceitamos-tbm {
    position: absolute;
    bottom: 5px;
    right: 40px; 
    display: flex;
    flex-direction: row; 
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    margin-right: -10px;
}

/* Section Horarios     */

#horarios {
    padding: 100px 8%;
    background-color: #161212;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#horarios > header {
    align-items: center;
    margin-bottom: 50px;
}

#horarios > header h2{
    font-family: "Rubik Distressed", system-ui;
    font-size: 2.8rem;
    color: bisque;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}

#horarios > header p{
    color: #dfd8d1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
}

.container-horarios{
    background-color: #dfd8d1;
    padding: 40px; 
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(207, 196, 188, 0.5);
    border: 3px solid #35271c;
    
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    max-width: 900px;
    width: 100%;
    min-height: 200px;
    padding-bottom: 40px;
}

#horarios > div h2{
    text-align: center;
    color: #161212;
    font-family: "Rubik Distressed", system-ui;
    margin-top: 10px;
    font-size: 2rem;
    margin-bottom: 50px;
}

.grade-horarios {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 40px;
    flex-wrap: wrap;
}

#horarios > div article {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

#horarios > div h3 {
    font-family: "Rubik Distressed", system-ui;
    color: #161212;
    font-size: 1.6rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #35271c;
    display: inline-block;
    padding-bottom: 5px;
}

#horarios > div h4 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #583014;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.divisor-hr {
    width: 50px;
    height: 2px;
    background-color: rgba(53, 39, 28, 0.2);
    margin: 20px auto;
}

#horarios > div small {
    display: block;
    margin-top: 30px;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-style: italic;
}

/* Section Peguntas */
#perguntas {
    padding: 100px 5% 150px 5%; 
    background-color: #9c8a7f; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
}

#perguntas > header{
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

#perguntas > header h2 { 
    font-family: "Rubik Distressed", system-ui;
    font-size: 2.8rem;
    color: #35271c;
    text-transform: uppercase;
}

#perguntas > header p {
    color: #35271c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.container-perguntas {
    background-color: #dfd8d1;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(207, 196, 188, 0.5);
    border: 3px solid #35271c;
    max-width: 900px;
    width: 100%;
    display: block; 
}


.accordion-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#perguntas > div details{
    background-color: #f9f7f5;
    border: 1px solid #35271c;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#perguntas > div details[open] {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(53, 39, 28, 0.1);
}

#perguntas > div details summary {
    padding: 18px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #35271c;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}


#perguntas > div details summary::-webkit-details-marker {
    display: none;
}

#perguntas > div details summary::after {
    content: '+';
    font-size: 1.4rem;
    color: #583014;
    transition: transform 0.3s ease;
}

#perguntas > div details[open] summary::after {
    transform: rotate(45deg);
}


.container-perguntas .faq-content {
    padding: 0 25px 20px 25px;
    animation: slideDown 0.4s ease-out;
}

.container-perguntas #perguntas > div details p {
    color: #444;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; 
    font-style: normal; 
    text-align: left;
    margin: 0;
    line-height: 1.6;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Footer */

#rodape {
    background-color: #141312;
    color: #f1f1f1;
    padding: 60px 8% 20px 8%;
    border-top: 2px solid #35271c;
    font-family: 'Montserrat', sans-serif;
}

.container-footer {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bbb;
    text-align: left;
}

.footer-col h3 {
    font-family: "Rubik Distressed", system-ui;
    font-size: 1.5rem;
    color: bisque;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: bisque;
    padding-left: 5px;
}

.maps-link {
    display: inline-block;
    margin-top: 15px;
    color: #35271c;
    background-color: bisque;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
}

.maps-link:hover {
    background-color: #583014;
    color: white;
}

.icons-contato{
    display: flex;
    gap: 20px;
}

.icons-contato img{
    max-width: 35px;
    height: 35px;
}

.social-icons {
    margin-top: 20px;
    font-size: 0.9rem;
    gap: 20px;
}
.social-icons p{
    margin-bottom: 5px;
}

.social-icons a{
    text-decoration: none;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}



/* Media Queries */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; 
        gap: 15px;
        transition: 0.3s ease;
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #141312;
       
    }

    .nav-links li {
        width: 100%; 
        text-align: center;
    }

    .nav-links a {
        display: block; 
        padding: 20px 0; 
        width: 100%; 
        font-size: 1.2rem;
    }
    
    
    .nav-links .btn-contato {
        width: auto;
        display: inline-block;
        margin: 10px 0;
        padding: 15px 30px;
    }

    
    
    .menu.active .nav-links {
        right: 0;
    }

    .menu.active .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu.active .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .menu.active .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; 
        gap: 15px;
        transition: 0.3s ease;
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #141312;
       
    }

    .nav-links li {
        width: 100%; 
        text-align: center;
    }

    .nav-links a {
        display: block; 
        padding: 20px 0; 
        width: 100%; 
        font-size: 1.2rem;
    }
    
    
    .nav-links .btn-contato {
        width: auto;
        display: inline-block;
        margin: 10px 0;
        padding: 15px 30px;
    }

    
    
    .menu.active .nav-links {
        right: 0;
    }

    .menu.active .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu.active .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .menu.active .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (max-width: 992px) {
    .menu ul {
        gap: 15px;
    }

    .cmc {
        position: absolute; 
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); 
        
        width: 90%; 
        margin: 0; 
        z-index: 10; 
        background: rgba(0, 0, 0, 0.6); 
        text-align: center;
    }


    .cmc h1 {
        font-size: 2.2rem;
    }

    .imagemfundo img {
        filter: brightness(0.5); 
    }
}

@media (max-width: 768px) { 
    .cmc {
        position: absolute; 
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); 
        
        width: 90%; 
        margin: 0; 
        z-index: 10; 
        background: rgba(0, 0, 0, 0.6); 
        text-align: center;
    }

    
    .imagemfundo img {
        height: 100vh; 
        filter: brightness(0.5); 
    }


    .cmc h1 {
        font-size: 1.8rem;
    }

    .imagemfundo img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .cmc h1 {
        font-size: 1.5rem;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .container-sobre {
        flex-direction: column;
        text-align: center;
    }

    .divisor {
        margin: 0 auto 25px;
        margin-top: 10px;
    }

    .sobrebox p {
        text-align: center;
    }

    .sobre-imagem img {
        box-shadow: 10px 10px 0px #35271c;
        max-width: 100%;
    }
    
}

@media (max-width: 992px) {
    .container-aulas {
        flex-direction: column;
        text-align: center;
        padding: 20px; 
        gap: 20px;
    }
    
    #aulas {
        align-items: center; 
    }

    #aulas > article p{
        text-align: left;
    }

    #aulas > article h3 {
        font-size: 1.8rem;
    }
    
     #aulas > article img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .formas-pagamento-mini {
        position: static;
        align-items: center;
        margin-top: 20px;
    }
     .aceitamos-tbm {
        position: static;
        align-items: center;
        margin-top: 20px;
    }

    
    .container-planos {
        flex-direction: column;
        padding-bottom: 30px;
    }

    .planosinfo {
        flex-direction: column; 
        text-align: center;
    }

    .planosinfo h3, .planosinfo p {
        text-align: center;
    }

    .planos-toggle-container {
        flex-direction: column; 
        border-radius: 15px;    
        padding: 8px;
        max-width: 90%;         
    }

    .plan-btn {
        width: 100%;            
        border-radius: 8px;     
        padding: 12px;
        font-size: 0.9rem;      
        text-align: center;
    }

    .plan-btn.active {
        transform: scale(1.02);
    }

    #display-price {
        font-size: 2.5rem; 
    }
}

@media (max-width: 768px) {
    #horarios {
        padding: 60px 5%; 
    }

    .container-horarios {
        padding: 20px 15px; 
        width: 95%;
    }

    .text-title-hr h2 {
        font-size: 1.5rem; 
        margin-bottom: 30px;
    }

    .coluna-dia {
        min-width: 100% ; 
        margin-bottom: 30px;
    }

    .coluna-dia h3 {
        font-size: 1.3rem;
    }

    .periodo h4 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    
    #perguntas {
        padding: 50px 15px; 
    }

    .container-perguntas {
        padding: 40px 15px; 
        width: 100%;
        max-width: 100%;
        min-height: auto; 
    }
    
    .tit-perguntas h2 {
        font-size: 1.6rem; 
        line-height: 1.2;
        word-wrap: break-word; 
    }

    .textperguntas h3 {
        font-size: 1.3rem;
        margin-top: 15px;
    }

    .textperguntas p {
        font-size: 1rem;
        padding: 0 5px;
    }
}

@media (max-width: 768px) {
    .container-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-desc {
        text-align: center;
    }

    .footer-col h3 {
        margin-top: 20px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}



@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none; 
    }

   
    .cmc {
        left: 5%; 
        transform: translateY(-50%);
        width: 90%;
        padding: 25px;
        max-width: none;
    }

    #inicio h1 {
        font-size: 1.8rem; 
        text-align: center;
    }

    #inicio p {
        text-align: center;
        font-size: 1rem;
    }

    
    .container-sobre, .container-aulas {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    #sobre img, #aulas > article img {
        max-width: 100%;
        box-shadow: 10px 10px 0px #35271c;
    }

    #plano nav {
        flex-wrap: wrap; 
        justify-content: center;
        border-radius: 15px;
        max-width: 100%;
    }

    #plano button {
        flex: none; 
        width: auto;
        padding: 10px 12px;
    }
}


@media (max-width: 320px) {
    #inicio h1 {
        font-size: 1.5rem; 
    }

    .logo img {
        max-width: 110px;
        margin-left: 10px;
    }

    .hamburger {
        margin-right: 15px;
    }

    
    #plano h2 {
        font-size: 2rem;
    }

    #plano button {
        font-size: 0.65rem;
        padding: 8px 6px;
    }

    .planosinfo {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }

    #perguntas > header h2 {
        font-size: 2.3rem;
    }

    #sobre h2{
        font-size: 2.3rem;
    }
    
}









