
:root {
    /* Cores do Layout */
    --orange-primary: #F37B24;
    --orange-dark: #DB6F20;
    --teal-primary: #15AFAD;
    --teal-dark: #108382;
    --text-green: #073D3D;
    --white: #FEFEFE;
    --bg-gray: #F5F5F5;
    --black: #000000;
}


/* Navbar */

main {
    min-width: 100vw;
    min-height: 100vh;
}


.container-navbar {
    width: 100%;
    height: 100px;
    background-color: var(--white);
    box-shadow: 0px 1px 1px rgba(168, 168, 168, 0.25);
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.nav-links {
    display: flex;
    gap: 40px;
    font-weight: 400;
    font-size: 18px;
    color: var(--text-green);
    cursor: pointer;
}

.nav-links > li:hover {
    color: var(--teal-dark);
    opacity: 90%;
    transition: 0.3s;
}

.btn-navbar {
    padding: 16px 20px;
    background: linear-gradient(90deg, rgba(243, 123, 36, 1) 0%, rgba(219, 111, 32, 1) 52%);
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s all ease-in;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}


.btn-navbar > button {
    color: var(--white);
    text-decoration: none;
}

.btn-navbar:hover {
    opacity: 90%;
    transition: 0.2s all ease-in;
}



/* Botão Hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

/* Botão Primário */
.btn-primary {
    padding: 15px 30px;
    background: linear-gradient(90deg, rgba(243, 123, 36, 1) 0%, rgba(219, 111, 32, 1) 52%);
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s all ease-in;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    border: none;
    font-size: 16px;
}

.btn-primary:hover {
    opacity: 90%;
    transition: 0.2s all ease-in;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--text-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animação do hambúrguer quando ativo */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 100px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 100px);
    background-color: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease-in-out;
    z-index: 99;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    gap: 0;
}

.mobile-menu-links li {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-links li a {
    display: block;
    padding: 20px 10px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-green);
    transition: all 0.3s ease;
}

.mobile-menu-links li a:hover {
    color: var(--teal-primary);
    padding-left: 20px;
}

.mobile-menu-cta {
    border: none !important;
    margin-top: 30px;
}

.btn-mobile {
    display: block;
    padding: 15px 30px;
    background: linear-gradient(90deg, rgba(243, 123, 36, 1) 0%, rgba(219, 111, 32, 1) 52%);
    border-radius: 8px;
    color: var(--white) !important;
    font-weight: 600;
    text-align: center;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    transition: 0.2s all ease-in;
}

.btn-mobile:hover {
    opacity: 90%;
    padding-left: 30px !important;
}

/* ===================================
   SEÇÃO INICIAL
   =================================== */

.section_init {
    width: 100%;
    height: 100vh;
    background-image: url('../assets/image_session_one.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.init_content_section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    text-align: start;
    color: var(--white);
    padding: 100px;
}

.init_text_section {
        width: 80%;
}

.init_text_section p {
    line-height: 80px;
}

.init_text_section h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    width: 50%;
}

.init_attendance {
    font-size: 18px;
    font-weight: 400;
    line-height: 80px;
}

.text_color_init {
    color: var(--orange-primary);
    font-weight: 600;
}

.init_button_section {
    padding: 18px 30px;
    background: linear-gradient(90deg, rgba(243, 123, 36, 1) 0%, rgba(219, 111, 32, 1) 52%);
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    width: 20%;
    text-align: center;
    cursor: pointer;
    transition: 0.2s all ease-in;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    margin-top: 20px;
}

.init_button_section > button {
    color: var(--white);
    text-decoration: none;
    border: none;
    width: 100%;
    font-size: 16px;
}
.init_button_section:hover {
    opacity: 90%;
    transition: 0.2s all ease-in;
}

/* ===================================
   Cards
   =================================== */

.cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px;
    gap: 80px;
}

.title_cards > h3 {
    font-size: 32px;
    text-align: center;
    font-weight: 700;
    color: var(--text-green);
}

.content_cards {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 85px 20px;
    cursor: pointer;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.card:hover {
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.card_icon {
    padding: 20px;
    border-radius: 20px;
    background: var(--orange-dark);
}

.card-icon > img {
    width: 250px;
}

.card_text {
    max-width: 350px;
}

.card_text > h4{
    font-size: 20px;
    font-weight: 600;
    color: var(--text-green);
}

/* ===================================
   SEÇÃO SOBRE
   =================================== */

.about {
  width: 100%;
    background: var(--orange-dark);
    padding: 80px 0;
}

.about_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;   /* imagem + texto alinhados */
    gap: 60px;
}

.section_content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 60px;
    color: var(--white);
}

.section_text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.section_text > h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
}

.about_img {
    flex: 1;
    max-width: 100%;
}

.about_img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.social_media_about {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social_media_about >  a {
    color: var(--white);
    font-size: 24px;
    padding: 10px;
    background: #5a595915;
    border-radius: 16px;
    transition: color 0.3s ease;
}


/* Atendimento */



.cards_secao_atendimento {
    display: flex;
    flex-direction: column;
    padding: 60px;
    gap: 80px;
    align-items: center;
    justify-content: center;
    align-items: center;
}

.cards_atendimento {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 40px 20px;
    cursor: pointer;
    border-radius: 16px;
}

.card_atendimento_item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
     transition: all 0.3s ease;
}

.atendimento_imagem {
    padding: 10px;
    background: var(--orange-primary);
    border-radius: 50%;
}


.atendimento_imagem > img {
    width: 32px;
    cursor: pointer;
}

.atendimento_texto > p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-green);
}


.card_atendimento_item:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
    opacity: 90%;
}

/* Agenda atendimento */


.agenda_atendimento_secao {
    width: 100%;
    background: var(--orange-dark);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-align: center;
    color: var(--white);
}

.botao_agenda {
    padding: 20px 40px;
    border: none;
    border-radius: 8px;
    color: var(--white);
   background: #108382;
    background: linear-gradient(90deg, rgba(16, 131, 130, 1) 66%, rgba(11, 120, 120, 1) 100%);
    cursor: pointer;
    transition: 3s all ease-in-out;
    box-shadow: 0px 0.8px 0.6px rgba(0, 0, 0, 0.25);
}

.botao_agenda > button {
    color: var(--white);
    text-decoration: none;
    border: none;
    width: 100%;
    font-size: 16px;
}

.botao_agenda:hover {
    opacity: 90%;
    transition: 3s all ease-in-out;
     background: linear-gradient(90deg, rgb(4, 66, 65) 66%, rgb(6, 49, 49) 100%);
}


/* Materiais Pedagógicos */


.materiais_pedagogicos_secao {
    width: 100%;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.materiais_pedagogicos_secao > .title_cards {
    text-align: center;
}


.materiais_pedagogicos {
    display: flex;
    justify-content: center;
    padding: 40px;
    width: 100%;
    gap: 60px;
    flex-wrap: wrap;
}

.material {
    display: flex;
    align-items: stretch;
    gap: 20px;                  

    width: 450px;

    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Imagem */
.material-imagem {
    width: 160px;
    min-width: 160px;
    background: var(--bg-gray);
}

.material-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;      
    display: block;           
}
/* Conteúdo */
.material-conteudo {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.material-conteudo h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.material-conteudo p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* Preço */
.material-preco {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-green);
    margin-top: 5px;
}

/* Botão */
.material-botao {
    margin-top: 10px;
    width: fit-content;

    background: var(--text-green);
    color: var(--white);
    border: none;
    border-radius: 8px;

    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
    transition: 0.2s;
}

.material-botao:hover {
    filter: brightness(0.95);
    opacity: 70%;
    transition: 1s all ease-in;
}

.duvida_frequentes_secao {
    width: 100%;
    background-color: #ffffff;
    color: var(--text-green);
    display: flex;
    padding: 80px 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.duvidas_frequentes_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.duvidas_frequentes_title h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-green);
}


.duvidas_frequentes_title p {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-green);
}


.duvidas_frequentes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 40px 40px;
    max-width: 900px;
}

.duvida_item {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.duvida_item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.duvida_item.active {
    background: #f9f9f9;
}

.duvida_conteudo {
    flex: 1;
    margin-right: 20px;
}

.duvida_item p {
    display: none;
    animation: slideDown 0.4s ease;
    margin-top: 15px;
    color: #666;
    line-height: 1.6;
}

.duvida_item p.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        margin-top: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
        margin-top: 15px;
    }
}

.duvida_item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-green);
    cursor: pointer;
    margin: 0;
}

.toggle-icon {
    transition: transform 0.3s ease;
    min-width: 24px;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Formulario contato */


.formulario_contato_secao {
   display: flex;
   justify-content: center;
   padding: 80px 20px;
   border-radius: 16px;
}

.formulario_contato {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 40px 20px;
    background: var(--white);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.formulario_contato_form > form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Remove definição duplicada de .formulario_contato que estava conflitando */

.formulario_contato_title h3{
    font-size: 32px;
    font-weight: 700;
    color: var(--text-green);
    margin-bottom: 10px;
    margin-top: 0;
}

.formulario_contato_title p {
    font-size: 16px;
    color: #666;
    margin: 0 0 20px 0;
}

#errosMensagem,
#sucessoMensagem {
    width: 100%;
    min-height: auto;
    margin-bottom: 0;
    display: none;
}

#errosMensagem:not(:empty),
#sucessoMensagem:not(:empty) {
    display: block;
    margin-bottom: 15px;
}

.alerta-erro {
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.alerta-erro ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.alerta-erro li {
    color: #c62828;
    font-size: 13px;
    margin: 4px 0;
    line-height: 1.3;
}

.alerta-sucesso {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.alerta-sucesso p {
    color: #2e7d32;
    font-size: 13px;
    margin: 0;
}



.formulario_contato_form > form > label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: var(--text-green);
    font-weight: 500;
}

.formulario_contato_form > form > label > input,
.formulario_contato_form > form > label > textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.formulario_contato_form > form > label > input:focus,
.formulario_contato_form > form > label > textarea:focus {
    outline: none;
    border-color: var(--teal-primary);
    box-shadow: 0 0 0 3px rgba(21, 175, 173, 0.1);
}

.formulario_contato_form > form > label > textarea {
    height: 200px;
    resize: vertical;
    min-height: 100px;
}

.formulario_contato_form > form > button {
    padding: 14px 30px;
    background: linear-gradient(90deg, rgba(16, 131, 130, 1) 39%, rgba(16, 131, 130, 1) 46%, rgba(11, 120, 120, 1) 100%);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: 0.2s all ease-in;
    margin-top: 20px;
}

.formulario_contato_form > form > button:hover {
    opacity: 90%;
    transition: 0.2s all ease-in;
}

.formulario_contato_form > form > button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}



/* Modal Calendly */
.calendly-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.calendly-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.calendly-modal-content {
    background-color: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    margin: auto;
}

.calendly-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(90deg, rgba(243, 123, 36, 1) 0%, rgba(219, 111, 32, 1) 52%);
    color: var(--white);
    flex-shrink: 0;
}

.calendly-modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.calendly-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    line-height: 1;
}

.calendly-close:hover {
    transform: scale(1.2);
}

.calendly-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.calendly-inline {
    width: 100%;
    height: 100%;
    min-height: 700px;
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Definições duplicadas removidas - ver estilos de .formulario_contato_form acima na linha ~790 */


/* fotter */

.fotter_secao {
    width: 100%;
    background: var(--white);
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.fotter_secao > p {
    font-size: 14px;
    color: var(--text-green);
}

.fotter_links {
    display: flex;
    gap: 20px;
}

.fotter_links > a {
    font-size: 16px;
    color: var(--text-green);
    transition: color 0.3s ease;
}

.fotter_links > a:hover {
    color: var(--teal-primary);
}


.fotter_social {
    display: flex;
    gap: 10px;
    flex-direction: column;
    color: var(--text-green);
    justify-content: center;
    align-items: center;
}

.link_social {
    font-size: 12px;
    padding: 10px;
    display: flex;
    gap: 18px;
}

.link_social > a {
    color: var(--text-green);
    background: var(--orange-dark);
    border-radius: 10px;
    padding: 10px;
    transition: color 0.3s ease;
}

.link_social > a > img {
    width: 20px;
}

.link_social > a:hover {
    background: var(--teal-primary);
    transition: color 0.3s ease;
}

.fotter_copy {
    text-align: center;
    background: var(--orange-dark);
    color: var(--white);
    padding: 20px;
    font-size: 14px;
    cursor: pointer;
}

.fotter_copy:hover {
    opacity: 90%;
    transition: 0.2s all ease-in;
}

/* ===================================
   RESPONSIVIDADE
   =================================== */

/* Tablets e telas médias (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .container-navbar {
        padding: 0 20px;
        justify-content: space-between;
    }

    .nav-links {
        gap: 25px;
        font-size: 16px;
    }

    .init_content_section {
        padding: 100px 60px;
    }

    .init_text_section {
        width: 70%;
    }

    .init_text_section h3 {
        width: 70%;
        font-size: 28px;
        line-height: 36px;
    }
}

/* Tablets pequenos (max-width: 768px) */
@media screen and (max-width: 768px) {
    .container-navbar {
        height: 80px;
        padding: 0 15px;
    }

    .logo {
        width: 120px;
        height: auto;
    }

    /* Esconde menu desktop e botão */
    .nav-links {
        display: none;
    }

    .btn-navbar {
        display: none;
    }

    /* Mostra hambúrguer */
    .hamburger {
        display: flex;
    }

    /* Ajusta altura do menu mobile */
    .mobile-menu {
        top: 80px;
        height: calc(100vh - 80px);
    }

    .section_init {
        background-position: center center;
    }

    .init_content_section {
        padding: 80px 30px;
        gap: 15px;
    }

    .init_text_section {
        width: 100%;
    }

    .init_text_section p {
        line-height: 50px;
        font-size: 16px;
    }

    .init_text_section h3 {
        width: 100%;
        font-size: 24px;
        line-height: 32px;
    }

    .init_attendance {
        font-size: 16px;
        line-height: 50px;
    }

    .init_button_section {
        padding: 12px 24px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
}

/* Dispositivos móveis (max-width: 480px) */
@media screen and (max-width: 480px) {
    .container-navbar {
        height: 70px;
        padding: 0 10px;
    }

    .logo {
        width: 100px;
    }

    .hamburger {
        width: 28px;
        height: 22px;
    }

    .hamburger-line {
        height: 2.5px;
    }

    .mobile-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .mobile-menu-links {
        padding: 30px 20px;
    }

    .mobile-menu-links li a {
        font-size: 16px;
        padding: 18px 10px;
    }

    .init_content_section {
        padding: 70px 20px;
        justify-content: flex-start;
        padding-top: 120px;
    }

    .init_text_section p {
        line-height: 40px;
        font-size: 14px;
    }

    .init_text_section h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .init_attendance {
        font-size: 14px;
        line-height: 40px;
    }

    .init_button_section {
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 15px;
    }
}

/* Dispositivos móveis muito pequenos (max-width: 360px) */
@media screen and (max-width: 360px) {
    .container-navbar {
        height: 65px;
    }

    .logo {
        width: 90px;
    }

    .hamburger {
        width: 26px;
        height: 20px;
    }

    .mobile-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .mobile-menu-links {
        padding: 25px 15px;
    }

    .mobile-menu-links li a {
        font-size: 15px;
        padding: 16px 8px;
    }

    .btn-mobile {
        padding: 12px 20px;
        font-size: 15px;
    }

    .init_content_section {
        padding: 65px 15px;
        padding-top: 100px;
    }

    .init_text_section h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .init_button_section {
        font-size: 13px;
    }
}

/* Tablets pequenos (max-width: 768px) - Melhorias adicionais */
@media screen and (max-width: 768px) {

    .imagem_formulario {
        display: none;
    }

    html {
        overflow-x: hidden;
    }

    .formulario_contato_secao {
        flex-direction: column;
        padding: 50px 20px;
        gap: 30px;
    }

    .formulario_contato {
        padding: 40px 20px;
    }

    .formulario_contato_form > form > button {
        width: 100%;
    }

    .cards {
        padding: 40px 20px;
        gap: 40px;
    }

    .content_cards {
        gap: 30px;
        margin: 0 auto;
        justify-content: center;
    }

    .card {
        padding: 50px 25px;
    }

    .about_container {
        padding: 0 30px;
        flex-direction: column;
        gap: 30px;
    }

    .cards_secao_atendimento {
        padding: 40px 20px;
        gap: 40px;
    }

    .cards_atendimento {
        gap: 30px;
    }

    .card_atendimento_item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .materiais_pedagogicos {
        padding: 20px;
        gap: 30px;
    }

    .material {
        width: 100%;
        max-width: 100%;
    }

    .duvidas_frequentes {
        gap: 15px;
        width: 100%;
    }

    .duvida_item {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .duvida_conteudo {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .toggle-icon {
        margin-top: 10px;
    }

    .calendly-modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .fotter_secao {
        flex-direction: column;
        gap: 30px;
    }

    .fotter_links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Dispositivos móveis pequenos (max-width: 600px) */
@media screen and (max-width: 600px) {
    .formulario_contato {
        padding: 30px 15px;
    }

    .formulario_contato_title h3 {
        font-size: 24px;
    }

    .imagem_formulario {
        display: none;
    }

    .title_cards > h3 {
        font-size: 24px;
    }

    .section_text > h3 {
        font-size: 24px;
    }

    .init_text_section h3 {
        width: 100%;
        font-size: 22px;
    }

    .card_atendimento_item:hover {
        transform: scale(1);
    }

    .duvida_item:hover {
        transform: translateY(0);
    }

    .calendly-modal-header h3 {
        font-size: 18px;
    }

    .calendly-close {
        width: 28px;
        height: 28px;
        font-size: 24px;
    }

    .calendly-inline {
        min-height: 500px;
    }
}

/* Dispositivos muito pequenos (max-width: 400px) */
@media screen and (max-width: 400px) {
    .formulario_contato_title h3 {
        font-size: 20px;
    }

    .formulario_contato_title p {
        font-size: 14px;
    }

    .btn-primary {
        padding: 12px 20px;
        font-size: 14px;
    }

    .title_cards > h3 {
        font-size: 20px;
    }

    .title_cards > p {
        font-size: 14px;
    }

    .duvida_item h4 {
        font-size: 14px;
    }

    .duvida_item p {
        font-size: 13px;
    }

    .material {
        flex-direction: column;
    }

    .material-imagem {
        width: 100%;
        height: 150px;
    }

    .material-conteudo {
        padding: 15px;
    }
}

/* Footer Responsividade */
@media screen and (max-width: 768px) {
    .fotter_secao {
        flex-direction: column;
        text-align: center;
    }

    .fotter_links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .fotter_social {
        order: -1;
    }
}