html {
    scroll-behavior: smooth;
}
* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: Arial, sans-serif;

}



body {

    background: #f5f5f5;

}



/* CONTAINER */

.container {

    width: 90%;

    max-width: 1200px;

    margin: auto;

}



.flex-between {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



/* TOPO */

.topo {

    background: #fff;

    padding: 15px 0;

}



.logo {

    font-size: 22px;

    font-weight: bold;

}



.logo-icon {

    color: #007bff; /* azul */

}



.contato span {

    margin-left: 20px;

    font-size: 14px;

}



/* MENU */

.menu {

    background: #fff;

    padding: 15px 0;

    box-shadow: 0 4px 15px rgba(0,0,0,0.08);

    position: sticky;

    top: 0;

    z-index: 999;

}



/* Lista */

.menu ul {

    list-style: none;

    display: flex;

    align-items: center;

}



/* Itens */

.menu ul li {

    margin-right: 25px;

}



/* Links */

.menu ul li a {

    text-decoration: none;

    color: #333;

    font-weight: 600;

    font-size: 16px;

    padding: 8px 12px;

    border-radius: 8px;

    transition: all 0.3s ease;

}



/* Hover */

.menu ul li a:hover {

    background: rgba(0,123,255,0.1);

    color: #007bff;

}



/* Item ativo */

.menu ul li a.active {

    background: linear-gradient(45deg, #007bff, #3399ff);

    color: #fff;

    box-shadow: 0 3px 10px rgba(0,123,255,0.4);

}



/* BotÃ£o Ã¡rea cliente */

.btn-area {

    background: linear-gradient(45deg, #007bff, #3399ff);

    color: #fff;

    padding: 10px 20px;

    border-radius: 25px;

    text-decoration: none;

    font-weight: bold;

    box-shadow: 0 3px 10px rgba(0,123,255,0.3);

    transition: 0.3s;

}



.btn-area:hover {

    transform: scale(1.05);

}



/* BANNER */

.banner {

    position: relative;

    height: 500px;

    background: url('../img/banner.jpg') center/cover no-repeat;

    display: flex;

    align-items: center;

}



.overlay {

    position: absolute;

    width: 100%;

    height: 100%;

    background: rgba(0,0,0,0.6);

}



.conteudo-banner {

    position: relative;

    color: #fff;

}



.conteudo-banner p {

    font-size: 18px;

    margin-bottom: 10px;

}



.conteudo-banner h1 {

    font-size: 42px;

    margin-bottom: 20px;

}



/* BOTÃ•ES */

.botoes a {

    text-decoration: none;

    padding: 12px 20px;

    margin-right: 10px;

    border-radius: 25px;

}



.btn-primary {

    background: linear-gradient(45deg, #007bff, #3399ff);

    color: #fff;

}



.btn-white {

    background: #fff;

    color: #333;

}



/* PARCEIROS */

.parceiros {

    position: relative;

    margin-top: -70px;

    z-index: 10;

}



.logos {

    background: #fff;

    padding: 25px 30px;

    border-radius: 12px;

    display: flex;

    justify-content: space-around;

    align-items: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);

    gap: 20px;

    flex-wrap: wrap;

}



/* Logos */

.logos span {

    font-weight: 600;

    color: #555;

    font-size: 18px;

    opacity: 0.8;

    transition: 0.3s;

}



.logos span:hover {

    opacity: 1;

    transform: scale(1.05);

    color: #007bff;

}

.sobre-servicos {
    background: linear-gradient(135deg, #f8f9fb, #eef1f5);
    padding: 100px 0;
}

/* GRID */
.grid-sobre {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

/* TEXTO */
.tag {
    display: inline-block;
    background: #0d3b66;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.texto-sobre h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

.texto-sobre p {
    color: #555;
    margin-bottom: 25px;
    font-size: 16px;
}

/* BOTÃO PREMIUM */
.btn-premium {
    display: inline-block;
    background: linear-gradient(135deg, #0d3b66, #1e5fa3);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13,59,102,0.3);
}

/* CARDS */
.cards-sobre {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card-sobre {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    transition: 0.3s;
}

.card-sobre:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ÍCONE */
.icon-top {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d3b66, #1e5fa3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -25px;
    left: 20px;
    font-size: 20px;
}

/* TEXTO CARD */
.card-sobre h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #222;
}

.card-sobre p {
    color: #666;
    font-size: 14px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .grid-sobre {
        grid-template-columns: 1fr;
    }

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

    .texto-sobre h2 {
        font-size: 30px;
    }
}

.diferenciais {
    position: relative;
    background: linear-gradient(135deg, #0d3b66, #1e5fa3, #3a7bd5);
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

/* REMOVE overlay dourado */
.overlay-diferenciais {
    display: none;
}
.conteudo-diferenciais {
    position: relative;
    z-index: 2;
    text-align: center;
}

.diferenciais h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitulo {
    margin-bottom: 50px;
    font-size: 18px;
}

/* CARDS */
.cards-diferenciais {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card-dif {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    width: 320px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
}

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

/* IMAGEM */
.img-card {
    height: 180px;
    background-size: cover;
    background-position: center;
}

/* CONTEÚDO */
.conteudo-card {
    padding: 25px;
    text-align: left;
    color: #333;
    position: relative;
}

/* CURVA (efeito premium) */
.conteudo-card::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

/* ÍCONE */
.icon {
    color: #a87400;
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.card-dif h3 {
    margin-bottom: 10px;
    color: #222;
}

.card-dif p {
    font-size: 14px;
    color: #555;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .cards-diferenciais {
        flex-direction: column;
        align-items: center;
    }
}

.secao-contabilidade {
    background: #f4f7fb;
    padding: 100px 0;
    position: relative;
}

/* FUNDO DECORATIVO */
.secao-contabilidade::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(13, 59, 102, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.secao-contabilidade::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(13, 59, 102, 0.08);
    border-radius: 50%;
    bottom: -100px;
    left: 50px;
}

/* BOX */
.box-contabilidade {
    display: grid;
    grid-template-columns: 2fr 1fr;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TEXTO */
.texto-contabilidade {
    padding: 50px;
}

.texto-contabilidade h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0d3b66;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Ícone decorativo */
.icone-titulo {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0d3b66, #1e5fa3);
    border-radius: 8px;
    display: inline-block;
}

.texto-contabilidade p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* BOTÃO */
.btn-azul {
    display: inline-block;
    background: linear-gradient(135deg, #0d3b66, #1e5fa3);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-azul:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13,59,102,0.3);
}

/* IMAGEM */
.img-contabilidade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .box-contabilidade {
        grid-template-columns: 1fr;
    }

    .texto-contabilidade {
        padding: 30px;
    }
}

.planos {
    background: linear-gradient(135deg, #f4f7fb, #e9eef5);
    padding: 100px 0;
    text-align: center;
}

/* TÍTULO */
.titulo-planos {
    font-size: 34px;
    margin-bottom: 60px;
    color: #333;
}

.titulo-planos span {
    color: #0d3b66;
    font-weight: bold;
}

/* GRID */
.cards-planos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD */
.card-plano {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    width: 300px;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
}

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

/* DESTAQUE */
.card-plano.destaque {
    transform: scale(1.08);
    border: 2px solid #0d3b66;
    z-index: 2;
}

/* BADGE */
.badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #0d3b66;
    color: #fff;
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 20px;
}

/* SUBTÍTULO */
.sub {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

/* LISTA */
.card-plano ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.card-plano ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

/* ÍCONE CHECK PREMIUM */
.card-plano ul li::before {
    content: "?";
    position: absolute;
    left: 0;
    color: #1e5fa3;
    font-weight: bold;
}

/* PREÇO */
.preco {
    margin-bottom: 25px;
}

.preco span {
    font-size: 12px;
    color: #777;
}

.preco h4 {
    font-size: 32px;
    color: #0d3b66;
    margin: 5px 0;
}

.preco small {
    color: #777;
}

/* BOTÃO */
.btn-plano {
    display: block;
    text-align: center;
    background: #e9eef5;
    color: #0d3b66;
    padding: 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

/* BOTÃO DESTAQUE */
.destaque-btn {
    background: linear-gradient(135deg, #0d3b66, #1e5fa3);
    color: #fff;
}

/* HOVER */
.btn-plano:hover {
    transform: translateY(-2px);
}

.destaque-btn:hover {
    box-shadow: 0 10px 25px rgba(13,59,102,0.3);
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .cards-planos {
        flex-direction: column;
        align-items: center;
    }

    .card-plano.destaque {
        transform: none;
    }
}

.footer {
    background: linear-gradient(135deg, #0d3b66, #08223a);
    color: #fff;
    padding: 60px 0 20px;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* COLUNAS */
.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p {
    color: #cfd8e3;
    line-height: 1.6;
}

/* LISTAS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: #cfd8e3;
}

/* LINKS */
.footer-col ul li a {
    color: #cfd8e3;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

/* CONTATO */
.footer-col .contato i {
    margin-right: 8px;
    color: #3a7bd5;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
    display: inline-block;
    margin-top: 15px;
    background: #25d366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

/* RODAPÉ FINAL */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #cfd8e3;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

