/* =========================
   CR CONTABILIDADE RODRIGUES
   ESTILO PREMIUM
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
    scroll-behavior: smooth;
}

body{
    background:#f5f7fa;
    color:#333;
}

/* MENU */

header{
    position: fixed;
    top:0;
    width:100%;
    height:90px;
    background:rgba(0, 33, 71, 0.95);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;
    z-index:1000;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.logo img{
    height:60px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    font-weight:600;
    transition:0.3s;
}

nav a:hover{
    color:#caa34d;
}


/* BANNER PRINCIPAL */

.hero{
    height:100vh;
    background:
    linear-gradient(
    rgba(0,33,71,0.85),
    rgba(0,33,71,0.85)),
    url("../imagens/banner.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    color:white;
}

.hero h1{
    font-size:48px;
    max-width:900px;
    margin:auto;
}

.hero p{
    font-size:20px;
    margin:25px auto;
    max-width:700px;
}


/* BOTÕES */

.botoes{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn-principal,
.btn-secundario{
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn-principal{
    background:#25D366;
    color:white;
}

.btn-secundario{
    background:#caa34d;
    color:white;
}

.btn-principal:hover,
.btn-secundario:hover{
    transform:translateY(-4px);
}


/* SEÇÕES */

section{
    padding:90px 8%;
}

h2{
    text-align:center;
    color:#002147;
    font-size:36px;
    margin-bottom:40px;
}


/* SERVIÇOS */

.cards{
    display:grid;
    grid-template-columns:
    repeat(auto-fit, minmax(240px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:
    0 10px 30px rgba(0,0,0,.10);

    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:45px;
    color:#002147;
    margin-bottom:15px;
}


/* SOBRE */

.sobre{
    background:#002147;
    color:white;
}

.sobre h2{
    color:white;
}

.sobre p{
    text-align:center;
    max-width:850px;
    margin:0 auto 50px;
    font-size:18px;
    line-height:1.7;
}

.diferenciais{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    justify-content:center;
}

.item{
    background:rgba(255,255,255,.10);
    padding:30px;
    width:260px;
    border-radius:15px;
    text-align:center;
}

.item i{
    font-size:40px;
    margin-bottom:15px;
    color:#caa34d;
}


/* NÚMEROS */

.numeros{
    background:#f0f3f8;
    display:flex;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
}

.numero{
    text-align:center;
}

.numero h3{
    font-size:42px;
    color:#002147;
}

.numero p{
    font-size:18px;
}


/* DEPOIMENTOS */

.depoimentos{
    background:white;
}

.depoimentos .card{
    border-top:5px solid #caa34d;
}


/* CONTATO */

.contato{
    background:#002147;
    color:white;
}

.contato h2{
    color:white;
}

form{
    max-width:650px;
    margin:0 auto;
}

input,
textarea{
    width:100%;
    padding:16px;
    margin:12px 0;
    border:none;
    border-radius:8px;
    font-size:16px;
}

button{
    width:100%;
    background:#caa34d;
    color:white;
    border:none;
    padding:16px;
    font-size:17px;
    border-radius:8px;
    cursor:pointer;
}

.informacoes{
    margin-top:40px;
    text-align:center;
}

.informacoes p{
    margin:15px;
    font-size:18px;
}

.informacoes i{
    color:#caa34d;
    margin-right:10px;
}


/* RODAPÉ */

footer{
    background:#00152c;
    color:white;
    text-align:center;
    padding:40px 20px;
}

footer img{
    height:65px;
    margin-bottom:15px;
}


/* WHATSAPP FLUTUANTE */

.whatsapp-fixo{
    position:fixed;
    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    background:#25D366;
    color:white;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:35px;

    text-decoration:none;

    z-index:999;
    box-shadow:0 8px 20px rgba(0,0,0,.35);
}

.whatsapp-fixo:hover{
    transform:scale(1.1);
}


/* RESPONSIVO */

@media(max-width:768px){

header{
    height:auto;
    padding:15px;
    flex-direction:column;
}

.logo img{
    height:55px;
    margin-bottom:10px;
}

nav a{
    margin:0 10px;
    font-size:14px;
}

.hero h1{
    font-size:32px;
}

.hero p{
    font-size:17px;
}

h2{
    font-size:28px;
}

}/* ANIMAÇÕES DE ENTRADA */

.esconder {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}


.mostrar {
    opacity: 1;
    transform: translateY(0);
}
/* Desenvolvedor do Site */

.desenvolvido {
    margin-top: 15px;
    font-size: 15px;
    color: #cccccc;
}

.desenvolvido a {
    color: #caa34d;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.desenvolvido a:hover {
    color: #ffffff;
}