/* ===========================
   TABLETS
=========================== */

@media (max-width: 960px){

    .container{
        width:92%;
    }

    /* Header */

    .nav{
        display:none;
    }

    .btn-header{
        display:none;
    }

    .navbar{
        height:80px;
    }

    .logo img{
        width:45px;
        height:45px;
    }

    .logo-text h2{
        font-size:1.3rem;
    }

    .logo-text span{
        display:none;
    }

    /* Hero */

    .hero{
        min-height:auto;
        padding:120px 0 80px;
    }

    .hero-container{
        grid-template-columns:1fr;
        gap:50px;
        text-align:center;
    }

    .hero-left{
        order:2;
    }

    .hero-right{
        order:1;
    }

    .hero-right img{
        width:320px;
        max-width:100%;
    }

    .hero-left h1{
        font-size:3rem;
    }

    .hero-left p{
        max-width:600px;
        margin:auto;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }

    .hero-numbers{
        justify-content:center;
        flex-wrap:wrap;
        gap:30px;
    }

    /* Sobre */

    .about-content{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-image{
        order:-1;
    }

    .about-cards{
        grid-template-columns:1fr;
    }

    /* Serviços */

    .services-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    /* Tecnologias */

    .tech-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    /* Processo */

    .timeline{
        grid-template-columns:1fr;
        gap:25px;
    }

    /* Diferenciais */

    .differentials-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    /* CTA */

    .cta-box{
        grid-template-columns:1fr;
        text-align:center;
        padding:50px 30px;
        gap:40px;
    }

    .cta-buttons{
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }

    .cta-image img{
        width:260px;
        max-width:100%;
    }

}


/* ===========================
   CELULARES
=========================== */

@media (max-width:650px){

    .container{
        width:90%;
    }

    .section{
        padding:80px 0;
    }

    .title{
        font-size:2rem;
        line-height:1.2;
    }

    .subtitle{
        font-size:1rem;
    }

    /* Hero */

    .hero-left h1{
        font-size:2.3rem;
    }

    .hero-left p{
        font-size:1rem;
        line-height:1.8;
    }

    .hero-right img{
        width:240px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-buttons a{
        width:100%;
        max-width:300px;
        text-align:center;
    }

    .hero-numbers{
        flex-direction:column;
        gap:20px;
    }

    /* Serviços */

    .service-card{
        width:100%;
    }

    /* Tecnologias */

    .tech-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .tech-card{
        width:100%;
        min-height:110px;
    }

    /* CTA */

    .cta-content h2{
        font-size:2rem;
        line-height:1.2;
    }

    .cta-content p{
        font-size:1rem;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-primary,
    .btn-outline{
        width:100%;
        max-width:280px;
        text-align:center;
    }

    .cta-image img{
        width:220px;
    }

}


/* ===========================
   CELULARES PEQUENOS
=========================== */

@media (max-width:480px){

    .hero-left h1{
        font-size:2rem;
    }

    .title{
        font-size:1.8rem;
    }

    .hero-right img{
        width:210px;
    }

    .tech-grid{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .service-card,
    .about-card,
    .timeline-card,
    .differential-card{
        padding:25px;
    }

}

/* ===========================
   NAVBAR - CELULAR
=========================== */

@media (max-width: 650px) {

    .navbar {
        height: 75px;
        gap: 10px;
        padding: 0;
    }

    .logo {
        gap: 8px;
        min-width: 0;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    .logo-text h2 {
        font-size: 1.25rem;
    }

    .logo-text span {
        display: none;
    }

    .nav {
        display: none;
    }

    .btn-navbar {
        margin-left: auto;
        padding: 11px 16px;
        font-size: .85rem;
        border-radius: 50px;
    }

}

@media (max-width: 400px) {

    .navbar {
        gap: 8px;
    }

    .logo img {
        width: 36px;
        height: 36px;
    }

    .logo-text h2 {
        font-size: 1.1rem;
    }

    .btn-navbar {
        padding: 10px 13px;
        font-size: .75rem;
    }

}