/* Estilos para tablet */
@media (min-width: 768px) {

    /* HEADER e MENU */
    .menu-nav ul li {
        width: 320px;
    }

    .menu-nav ul li a {
        font-size: 2.5rem;
    }

    /* HOME */
    .text-home h1 {
        font-size: 4.5rem;
    }

    .text-home .texto-destaque {
        font-size: 4rem;
    }

    .text-home {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    .text-home p {
        font-size: 1.5rem;
        max-width: 700px;
    }

    .btn-home {
        padding: 1rem 2.5rem;
    }

    .btn-home a {
        font-size: 1.5rem;
    }

    .legal,
    .contatos {
        font-size: .9rem;
    }

    /* PLANEJAMENTO */
    .animation-social {
        background-color: black;
        width: 300px;
        height: 70px;
        border-radius: 12px;
    }

    .triangulo {
        position: absolute;
        top: 95%;
    }

    .animation-social li {
        font-size: 1.6rem;
        gap: 10px;
    }

    .animation-social img {
        width: 30px;
    }

    .cta-planejamento .titulos h1 {
        font-size: 3rem;
    }

    .cta-planejamento .titulos h2 {
        font-size: 3rem;
    }

    .cta-planejamento span {
        font-size: 1.8rem;
    }

    .btn-planejamento {
        padding: 1rem 3rem;
    }

    .btn-planejamento a {
        font-size: 1.3rem;
    }

    .servico-gestao-cta a {
        font-size: 1.3rem;
    }

    /* AGENDAMENTO */
    .cta-agendamento h1 {
        font-size: 3rem;
    }

    .cta-agendamento span {
        font-size: 1.8rem;
    }

    .btn-agendamento {
        padding: 1rem 3rem;
    }

    .btn-agendamento a {
        font-size: 1.3rem;
    }

    .container-clientes {
        height: 360px;
    }

    .scroll-clientes img {
        height: 220px;
    }

    /* SERVIÇOS */
    .servicos {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .container-servicos h1 {
        font-size: 5rem;
    }

    .servico-full,
    .servico {
        border: 1px solid rgba(0, 0, 0, 0.2);
        padding: 1.2rem 3rem;
    }

    .servico-titulo {
        font-size: 1.3rem;
    }

    .servico-descricao {
        font-size: 1.4rem;
    }

    /* SOBRE */
    .container-sobre h1 {
        font-size: 5rem;
    }

    .container-sobre p {
        font-size: 2rem;
        max-width: 540px;
    }

    /* PORTFOLIO */
    .portfolio {
        padding: 4rem 1.2rem;
    }

    .title {
        font-size: 1.5rem;
    }

    .divider {
        height: 2px;
    }

    .info {
        font-size: 1rem;
    }

    .sector {
        font-size: 1rem;
    }

    /* VIDEO */
    .video-icon img {
        width: 100px;
    }


    .cta-video .titulo-video h1 {
        font-size: 3rem;
    }

    .btn-video {
        padding: 1rem 3rem;
    }

    .btn-video a {
        font-size: 1.3rem;
    }

    .servico-video-cta a {
        font-size: 1.3rem;
    }

    /* CONTATO */
    .text-contato h1 {
        font-size: 8rem;
    }

    .text-contato span {
        font-size: 1.6rem;
    }

    .form {
        padding: 1rem 2rem;
    }

    .formulario-contato textarea {
        padding: 1rem 2rem;
    }

    .email-contato img {
        width: 30px;
    }

    .email-contato a {
        font-size: 1.5rem;
    }

    .btn-enviar {
        padding: 0.6rem 2rem;
        width: 360px;
    }

    .btn-enviar a {
        font-size: 1.5rem;
    }

    /* FOOTER */
    .footer {
        padding: 3rem 1.2rem;
    }

    .container-footer {
        gap: 3rem;
    }

    .logo-footer img {
        width: 150px;
    }

    .menu-footer a {
        font-size: 1.2rem;
    }

    .social-footer span {
        font-size: 1.2rem;
        padding: .6rem 1.4rem;
    }

    .lista-redes-footer a {
        font-size: 1.2rem;
    }

    .lista-redes-footer a i {
        font-size: 1.2rem;
    }

    .legal-footer {
        font-size: .8rem;
    }

    .contatos-footer {
        font-size: .8rem;
    }
}

/* Estilos para desktops menores ******************************************/
@media (min-width: 1024px) {

    .container-header,
    .container-home,
    .container-planejamento,
    .container-agendamento,
    .container-servicos,
    .container-sobre,
    .container-portfolio,
    .container-video,
    .container-contato,
    .container-footer {
        max-width: 1400px;
        margin: 0 auto;
    }

    .menu-icon {
        display: none;
    }

    .menu-desktop {
        display: block;
    }


    .menu-desktop ul li {
        list-style: none;
        display: inline-block;
        margin-right: 20px;
    }
    
    .menu-desktop ul li a {
        padding: 10px 20px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 30px;
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    .menu-desktop ul li a:hover,
    .menu-desktop ul li a.active {
        background-color: white;
        color: black;
    }

    .text-home h1 {
        font-size: 6rem;
        margin-bottom: -20px;
    }

    .text-home .texto-destaque {
        font-size: 6rem;
        margin-bottom: -20px;
    }

    .container-planejamento {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-planejamento {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .cta-planejamento .titulos h1 {
        font-size: 4rem;
    }

    .cta-planejamento .titulos h2 {
        font-size: 4rem;
    }

    .cta-planejamento span {
        max-width: 1100px;
    }

    .agendamento {
        height: 100%;
        padding-top: 3rem;
        padding-bottom: 4rem;
    }

    .container-agendamento {
        display: flex;
        height: 100vh;
        align-items: center;
        justify-content: center;
        gap: 0;
    }


    .animation-agendamento {
        display: flex;
    }

    .large-circle {
        width: 250px;
        height: 250px;
        font-size: 1.5rem;
    }

    .medium-circle {
        width: 150px;
        height: 150px;
    }

    .small-circle {
        width: 100px;
        height: 100px;
    }

    .cta-agendamento {
        width: 50%;
    }

    .cta-agendamento h1 {
        font-size: 4rem;
    }

    .cta-agendamento span {
        max-width: 1000px;
    }

    .container-clientes {
        margin-bottom: -15px;
        height: auto;
        z-index: 0;
    }

    .servicos {
        height: 100%;
    }

    .container-servicos h1 {
        position: relative;
    }

    .container-servicos {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
        height: 100%;
    }

    /* Lista de serviços à esquerda */
    .lista-servicos {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .container-sobre {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .infos-sobre {
        width: 100%;
        height: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    .container-portfolio {
        width: 100%;
        height: 100%;
        gap: 2rem;
    }

    .top-portfolio {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        height: 100%;
    }

    .card-1,
    .card-2,
    .card-6 {
        display: flex;
        justify-content: space-between;
        width: 31%;
        height: 620px;
        gap: 1rem;
    }

    .center-portfolio .card-3 {
        width: 100%;
        height: auto;
        max-height: 550px;
    }

    .bottom-portfolio {
        height: auto;
    }

    .card-4,
    .card-5 {
        min-height: 620px;
    }

    .bottom-portfolio .card-4 {
        display: flex;
        justify-content: space-between;
        width: 31%;
        height: 620px;
        gap: 1rem;
    }

    .bottom-portfolio .card-5 {
        width: 66%;
        display: flex;
        justify-content: space-between;
        height: 620px;
        gap: 1rem;
    }


    .carousel-images img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .container-contato {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }


    #contact-form {
        width: 100% !important;
    }

    .conteudo-contato {
        width: 100%;
        gap: 1rem;
        display: flex;
        flex-direction: column;
    }

    .text-contato {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .text-contato h1 {
        font-size: 4rem;
    }

    .text-contato span {
        font-size: 1.5rem;
    }
}