/* =====================================================
   VITA PETS
   CSS PROFISSIONAL
=====================================================*/

/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Arial, Helvetica, sans-serif;
    background:#f5f7f5;
    color:#333;
    line-height:1.6;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/*=========================
MENU
=========================*/

header{

    position:sticky;

    top:0;

    z-index:9999;

    background:#fff;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    height:150px;
    width:auto;

}

nav ul{

    display:flex;

    gap:35px;

    align-items:center;

}

nav a{

    color:#004b22;

    font-weight:bold;

    transition:.3s;

}

nav a:hover{

    color:#ff8c00;

}

/* Botão Menu */

.menu-toggle{

    display:none;

    background:none;

    border:none;

    cursor:pointer;

    font-size:30px;

    color:#004b22;

}

/* ===========================
   BOTÕES
=========================== */

.btn,
.btn-whats,
.btn-secundario{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:15px 30px;

    border-radius:40px;

    font-weight:bold;

    transition:.3s;

}

.btn,
.btn-whats{

    background:#ff8c00;
    color:white;

}

.btn:hover,
.btn-whats:hover{

    background:#e77700;

    transform:translateY(-3px);

}

.btn-secundario{

    background:white;

    color:#004b22;

}

.btn-secundario:hover{

    transform:translateY(-3px);

}

/* ===========================
   HERO
=========================== */

.hero{

    background:linear-gradient(135deg,#004b22,#006d31);

    color:white;

    padding:90px 0;

    overflow:hidden;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.tag{

    display:inline-block;

    background:#ff8c00;

    padding:10px 20px;

    border-radius:40px;

    margin-bottom:25px;

    font-weight:bold;

}

.hero h1{

    font-size:60px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    font-size:20px;

    margin-bottom:35px;

    max-width:520px;

}

.hero-botoes{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-imagem{

    position:relative;

}

.hero-imagem img{

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.30);

}

/* ===========================
   CARDS FLUTUANTES
=========================== */

.info-card{

    position:absolute;

    background:white;

    color:#333;

    padding:15px 20px;

    border-radius:15px;

    font-weight:bold;

    box-shadow:0 10px 30px rgba(0,0,0,.18);

}

.card1{

    top:20px;
    left:-20px;

}

.card2{

    right:-20px;
    bottom:270px;

}

.card3{

    left:20px;
    bottom:20px;

}

/* =====================================================
   SOBRE
=====================================================*/

.sobre{

    padding:100px 0;
    background:#f8f8f8;

}

.sobre-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.sobre h2{

    font-size:42px;
    color:#004b22;
    margin-bottom:25px;

}

.sobre p{

    font-size:18px;
    line-height:1.9;
    color:#555;

}

.sobre img{

    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}


/* =====================================================
   PRODUTOS
=====================================================*/

.servicos{

    padding:100px 0;
    background:white;

}

.servicos h2{

    text-align:center;
    font-size:42px;
    color:#004b22;
    margin-bottom:60px;

}

.cards{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.card{

    background:white;

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.card i{

    font-size:58px;

    color:#ff8c00;

    margin-bottom:25px;

}

.card h3{

    color:#004b22;

    margin-bottom:10px;

    font-size:23px;

}

.card p{

    color:#666;

    font-size:16px;

}


/* =====================================================
   DIFERENCIAIS
=====================================================*/

.diferenciais{

    padding:100px 0;

    background:#f5f5f5;

}

.diferenciais h2{

    text-align:center;

    color:#004b22;

    font-size:42px;

    margin-bottom:60px;

}

.grid-diferenciais{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.grid-diferenciais div{

    background:white;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.grid-diferenciais div:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.grid-diferenciais i{

    font-size:48px;

    color:#ff8c00;

    margin-bottom:20px;

}

.grid-diferenciais h3{

    color:#004b22;

    margin-bottom:12px;

}

.grid-diferenciais p{

    color:#666;

}


/* =====================================================
   NÚMEROS
=====================================================*/

.numeros{

    background:linear-gradient(135deg,#004b22,#006d31);

    color:white;

    padding:80px 0;

}

.numeros .container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

    text-align:center;

}

.numero h2{

    color:#ff8c00;

    font-size:52px;

    margin-bottom:10px;

}

.numero p{

    font-size:20px;

}


/* =====================================================
   CTA
=====================================================*/

.cta{

    padding:90px 20px;

    background:#ff8c00;

    color:white;

    text-align:center;

}

.cta h2{

    font-size:44px;

    margin-bottom:20px;

}

.cta p{

    font-size:20px;

    margin-bottom:35px;

}

.cta .btn{

    background:#004b22;

}

.cta .btn:hover{

    background:#006d31;

}


/* =====================================================
   FOOTER
=====================================================*/

footer{

    background:#003b17;

    color:white;

    padding:70px 20px;

    text-align:center;

}

.logo-footer{

    width:300px;

    margin:0 auto 25px;

}

footer p{

    margin:10px 0;

    color:#ddd;

}


/* =====================================================
   WHATSAPP FLUTUANTE
=====================================================*/

.whatsapp-fixo{

    position:fixed;

    right:25px;

    bottom:25px;

    width:70px;

    height:70px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:36px;

    box-shadow:0 15px 35px rgba(0,0,0,.30);

    z-index:99999;

    transition:.3s;

}

.whatsapp-fixo:hover{

    transform:scale(1.1);

}

/* =====================================================
   ANIMAÇÕES
=====================================================*/

.hidden{

    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;

}

.show{

    opacity:1;
    transform:translateY(0);

}

/* Animação suave nos botões */

.btn,
.btn-whats,
.btn-secundario{

    transition:all .3s ease;

}

.card,
.grid-diferenciais div{

    transition:all .35s ease;

}

.hero-imagem img{

    transition:transform .5s ease;

}

.hero-imagem img:hover{

    transform:scale(1.03);

}

/* =====================================================
   RESPONSIVO - TABLETS
=====================================================*/

@media(max-width:992px){

    nav ul{

        gap:20px;

    }

    .hero{

        padding:70px 0;

    }

    .hero-grid{

        grid-template-columns:1fr;
        text-align:center;
        gap:40px;

    }

    .hero p{

        margin:0 auto 35px;

    }

    .hero-botoes{

        justify-content:center;

    }

    .sobre-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .cards{

        grid-template-columns:repeat(2,1fr);

    }

    .grid-diferenciais{

        grid-template-columns:repeat(2,1fr);

    }

    .numeros .container{

        grid-template-columns:1fr;

    }

    .info-card{

        position:static;

        margin-top:15px;

        display:inline-block;

    }

}

/* =====================================================
   RESPONSIVO - CELULAR
=====================================================*/

@media(max-width:768px){

   header .container{

    height:80px;

}



.logo img{

    height:120px;

}



.menu-toggle{

    display:block;

}

nav{

    position:absolute;

    top:80px;

    left:0;

    width:100%;

    background:#fff;

    max-height:0;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

nav.active{

    max-height:500px;

}

nav ul{

    flex-direction:column;

    align-items:center;

    gap:20px;

    padding:25px;

}

    .hero{

        padding:60px 0;

    }

    .hero h1{

        font-size:38px;

    }

    .hero p{

        font-size:18px;

    }

    .hero-botoes{

        flex-direction:column;

    }

    .btn,
    .btn-whats,
    .btn-secundario{

        width:100%;

    }

    .sobre{

        padding:70px 0;

    }

    .sobre h2{

        font-size:32px;

    }

    .servicos{

        padding:70px 0;

    }

    .servicos h2{

        font-size:32px;

    }

    .cards{

        grid-template-columns:1fr;

    }

    .card{

        padding:35px 25px;

    }

    .diferenciais{

        padding:70px 0;

    }

    .diferenciais h2{

        font-size:32px;

    }

    .grid-diferenciais{

        grid-template-columns:1fr;

    }

    .cta{

        padding:70px 20px;

    }

    .cta h2{

        font-size:32px;

    }

    .cta p{

        font-size:18px;

    }

    .numero h2{

        font-size:40px;

    }

    footer{

        padding:50px 20px;

    }

    .whatsapp-fixo{

        width:60px;

        height:60px;

        font-size:30px;

        right:20px;

        bottom:20px;

    }

}

/* =====================================================
   SCROLLBAR
=====================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#eeeeee;

}

::-webkit-scrollbar-thumb{

    background:#006d31;

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:#ff8c00;

}