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

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ===========================
   TOPO
=========================== */
.topo {
    background: #ffffff;
    padding: 15px 0;
    padding-top: 30px;
    padding-bottom: 30px;
}

.topo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
}

.col {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-bloco {
    font-size: 14px;
    line-height: 1.3;
}

.info-bloco strong {
    font-size: 15px;
    color: #000000; /* vermelho do print */
}

.icone {
    font-size: 26px;
    }

/* TOPO CELULAR */

@media (max-width: 768px) {
    .topo-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
    }
}

@media (max-width: 480px) {
    .topo-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .col {
        justify-content: center;
    }
}




/* ===========================
   SEÇÕES
=========================== */
.secao {
    padding: 80px 20px;
    text-align: center;
}

.secao h2 {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 20px;
}

/* ===========================
   RODAPÉ
=========================== */
.rodape {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}


/* Remove padding da seção Home */
.secao.sem-padding {
    padding: 0;
}

/* ===========================
   CARROSSEL FULL WIDTH
=========================== */

.carousel {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    margin: auto;
}

.carousel-inner {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* TÍTULO SOBREPOSTO */
.slide {
    position: relative; /* mantém o texto preso ao slide */
}

.banner-texto {
    position: absolute;
    top: 20px;      /* margem superior */
    left: 20px;     /* margem esquerda */
    transform: none; /* remove o centralizado */
    color: #000000;
    z-index: 10;
    text-align: left;

    /* FUNDO CINZA TRANSPARENTE */
    background: rgba(179, 179, 179, 0.849);
    padding: 15px 25px;
    border-radius: 6px;
}


.banner-texto h2 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 3px 8px rgba(121, 121, 121, 0.6);
}

/* Botões */
.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    font-size: 32px;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 3;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Bolinhas */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 4;
}

.dots span {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s;
}

.dots .ativo {
    opacity: 1;
    background: #d4af37;
}


/* Sombra inferior do carrossel */
.carousel::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px; /* altura da sombra */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
    z-index: 5;
}



/* ====== CONTATO ====== */

/* BLOCO GERAL */
.contato-bloco {
    width: 100%;
    background: #424242;
    padding: 70px 0;
    color: #fff;
}

/* GRID */
.contato-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 50px;
}

/* IMAGEM ESQUERDA */
.contato-img {
    width: 90%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* COLUNA DIREITA */
.contato-col-dir {
    display: flex;
    justify-content: center;
}

/* BOX CINZA CLARO */
.contato-box {
    background: #f2f2f2;
    color: #333;
    padding: 35px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    max-width: 500px;
    text-align: center;
}

/* TÍTULO */
.contato-box h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* TEXTO */
.contato-box p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 12px;
    }

/* LINKS */
.contato-links {
  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza horizontalmente */
  justify-content: center; /* garante alinhamento vertical se houver altura definida */
  text-align: center;
}


.contato-links a {
    font-size: 20px;
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
}

.contato-links a:hover {
    opacity: .7;
}

.link-whats i {
    color: #25D366;
    font-size: 24px;
}

.link-email i {
    color: #c62828;
    font-size: 22px;
}

@media (max-width: 768px) {

    /* Container em 1 coluna */
    .contato-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 0px 0px;
        align-items: center;
    }

    /* IMAGEM E BOX MAIS LARGOS */
    .contato-col-esq,
    .contato-col-dir {
        width: 100%;
        max-width: 420px; /* AUMENTADO para acompanhar o restante do site */
    }

    /* Imagem */
    .contato-img {
        width: 100%;
        border-radius: 10px;
        display: block;
    }

    /* Box */
    .contato-box {
        background: #fff;
        padding: 20px 18px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        width: 100%;
    }

    .contato-box h2 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .contato-box p {
        font-size: 15px;
        line-height: 1.5;
        text-align: justify;
        margin-bottom: 15px;
    }

    /* LINKS — estilo original */
    .contato-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contato-links a {
        font-size: 16px;
        color: #333;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Ícones */
    .contato-links i {
        font-size: 20px;
    }

    /* WhatsApp VERDE */
    .link-whats i {
        color: #25D366 !important;
    }

    /* E-mail mantém cor original */
    .link-email i {
        color: #F36557;
    }

    /* Botão flutuante do WhatsApp */
    .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 65px;
        height: 65px;
        z-index: 9999;
    }

    .whatsapp-float img {
        width: 100%;
        height: auto;
    }

    /* Espaçamento entre seções */
    .contato-bloco {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}


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

.footer {
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.footer-content {
    display: flex;
    justify-content: flex-end; /* alinha tudo à direita */
    align-items: center;
}

.footer .copy {
    font-size: 1rem;
    color: #333; /* preto suave */
}

.footer .wa-link {
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
}

.footer .wa-logo {
    width: 55px; /* ajuste se quiser menor */
    height: auto;
    margin-left: 6px;
    opacity: 0.9;
    transition: 0.3s;
}

.footer .wa-logo:hover {
    opacity: 1;
}


.retorno {
    margin-top: 10px;
    font-weight: bold;
}
.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}



/* ===========================
   SESSÃO PROJETOS
=========================== */
/* TÍTULO */
/* ===== SESSÃO ===== */
.projetos-bloco {
    width: 90%;
    margin: 60px auto;
}

/* ===== TÍTULO ===== */
.projetos-titulo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 35px;
    color: #222;
    text-align: left;
}

/* ===== GRID ===== */
.projetos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* ===== CARD ===== */
.projeto-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
    padding-bottom: 20px;

    opacity: 0;
    transform: translateY(30px);
    animation: aparecer .6s ease forwards;
}

/* ===== ANIMAÇÃO EM CASCATA ===== */
.projeto-item:nth-child(1) { animation-delay: .1s; }
.projeto-item:nth-child(2) { animation-delay: .25s; }
.projeto-item:nth-child(3) { animation-delay: .4s; }

/* ===== IMAGEM ===== */
.projeto-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* ===== TÍTULO DO CARD ===== */
.projeto-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 20px 5px;
    color: #333;
}

/* ===== TEXTO DO CARD ===== */
.projeto-item p {
    font-size: 16px;
    margin: 0 20px;
    color: #666;
}

/* ===== ANIMAÇÃO ===== */
@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HOVER ===== */
.projeto-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

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

@media (max-width: 600px) {
    .projetos-container {
        grid-template-columns: 1fr;
    }

    .projeto-img img {
        height: 200px;
    }
}


.projetos-barra {
    background: #424242; /* cor elegante semelhante ao print */
    padding: 10px 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.projetos-barra h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}


#projetos {
    scroll-margin-top: 70px; /* ajuste conforme a altura do seu header */
}

/* WHATSAPP FLUTUANTE */

.whatsapp-float {
  position: fixed;
  bottom: 50px;
  right: 8px;
  width: 100px; /* tamanho do botão */
  height: auto;
  z-index: 1000;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float img {
  width: 100%; /* tamanho do ícone */
  height: 100%;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}



/* ===========================
   MENU FIXO AO ROLAR
=========================== */
.menu {
    background: #ffffff; /* fundo preto */
    padding: 14px 0;
    width: 100%;
    border-bottom: 8px solid #F36557;
    border-top: 1px solid #cccccc;
    position: sticky; /* fixa ao rolar */
    top: 0;           /* gruda no topo da tela */
    z-index: 999;     /* fica acima do conteúdo */

    }

.menu ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.menu a {
    color: #697076;
    text-decoration: none;
    font-weight:600;
    padding: 15px 20px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

/* efeito moderno */
.menu a::before {
    content: "";
    position: absolute;
    top: 0; /* AGORA A LINHA FICA EM CIMA */
    left: 0;
    width: 0%;
    height: 2px;
    background: #F36557;
    
}


.menu a:hover::before {
    width: 100%;
}

.menu a:hover {
    color: #F36557;
    transform: translateY(-2px);
}

.menu a.ativo {
    color: #F36557;
}

.menu a.ativo::before {
    width: 100%;
}



/* ===== MENU MOBILE (NÃO AFETA DESKTOP) ===== */
@media (max-width: 768px) {

    .menu ul {
        position: fixed;
        top: 60px; /* abaixo do botão */
        right: 15px;
        width: auto;
        padding: 10px 0;
        background: #ffffff;
        border: 2px solid #F36557;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        display: none;
        flex-direction: column;
        opacity: 0;
        transform: translateY(-10px);
        transition: .25s ease;
        z-index: 9999;
    }

        .menu ul.show {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .menu a {
        padding: 18px 28px !important; /* mais largo e mais alto */
        font-size: 19px !important;    /* mais legível */
        line-height: 1.4;
    }

    .menu ul li {
        margin: 2px 0;
    }



    /* Botão mobile */
.menu-mobile {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 10000;
        background: #ffffff;
        padding: 8px;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    /* Hambúrguer */
    .hamburguer div {
        width: 28px;
        height: 3px;
        background: #F36557;
        margin: 5px 0;
        transition: .3s;
    }



    .menu a:hover {
        color: #F36557;
        transform: none;
    }

    
  /* Remove qualquer risco, borda ou destaque antigo */
    .menu a,
    .menu a.ativo,
    .menu li a,
    .menu li a.ativo {
        border: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
        text-decoration: none !important;
    }

    /* Estilo elegante do item ativo */


    /* Ajuste para o hover continuar funcionando */
    .menu a:hover {
        background: rgba(243, 101, 87, 0.12);
        color: #F36557;
    }

.menu a::before {
    content: "";
    position: absolute;
    top: 0; /* AGORA A LINHA FICA EM CIMA */
    left: 0;
    width: 0%;
    height: 0px;
    background: #003366;
    
}

}

/* ÁREAS DE ATUAÇÃO */

/* Fundo da sessão */
.atuacao-bg {
  width: 100%;
  background: #c0c0c0;
  padding: 70px 0;
}



/* Container central */
.atuacao-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px; /* controla o respiro lateral */
}


/* Título */
.atuacao-titulo {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* Grid dos cards */
.atuacao-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Cards */
.atuacao-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 25px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  border-top: 8px solid #015488; /* Azul Personnall */
  text-align: center;
}

/* Ícones */
.atuacao-card .icon {
  font-size: 48px;
  color: #015488;
  margin-bottom: 15px;
}

/* Títulos chamativos */
.atuacao-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #015488;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.atuacao-card p {
  font-size: 15px;
  color: #444;
}

/* Hover */
.atuacao-card:hover {
  background: #015488;
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.atuacao-card:hover h3,
.atuacao-card:hover p,
.atuacao-card:hover .icon {
  color: #fff;
}



.atuacao-barra {
    width: 100%;
    background: #015488;
    padding: 10px 25px;
    border-radius: 6px;
    margin-bottom: 30px;
    
}

.atuacao-barra h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    }



/* Modal */
.modal {
  display: none;              /* ESSENCIAL: começa escondido */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  margin: 8% auto;
  padding: 40px;
  border-radius: 12px;
  width: 80%;
  max-width: 650px;
  position: relative; /* ESSENCIAL */
}


.modal-content h3 {
  font-size: 26px;
  font-weight: 800;
  color: #015488;
  margin-bottom: 20px;
}

.modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-list li {
  font-size: 17px;
  color: #333;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  line-height: 1.4;
}

.modal-list li::before {
  content: "✔";
  color: #015488;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #015488;
  cursor: pointer;
  transition: 0.2s ease;
}

.close:hover {
  color: #013f66;
  transform: scale(1.2);
}

/* ===========================
   ÁREAS DE ATUAÇÃO — MOBILE
=========================== */
@media (max-width: 768px) {

    /* Container geral */
    .atuacao-container {
        padding-top: 10px !important;
    }

    .atuacao-bg {
        padding-top: 20px !important;
        margin-top: 0 !important;
    }

    /* Título */
    .atuacao-barra h2 {
        font-size: 22px;
        text-align: center;
    }

    /* Grid vira 1 coluna */
    .atuacao-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    /* Cards */
    .atuacao-card {
        width: 100%;
        padding: 18px 15px;
        border-radius: 10px;
        text-align: center;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        cursor: pointer;
    }

    .atuacao-card .icon {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .atuacao-card h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

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

    /* MODAIS MOBILE */
    .modal {
        display: none;
        position: fixed;
        z-index: 99999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        padding: 20px;
        overflow-y: auto;
    }

    .modal-content {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        width: 100%;
        max-width: 95%;
        margin: 40px auto;
    }

    .modal-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center;
    }

    .modal-list li {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .close {
        font-size: 28px;
        float: right;
        cursor: pointer;
        margin-top: -10px;
    }
}



/* ===========================
   EMPRESA
=========================== */
.empresa-bloco {
    padding: 60px 0;
}

.empresa-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.empresa-texto {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    color: #333;
}

.empresa-destaque {
    font-size: 28px;
    font-weight: 600;
    margin: 10px 0;
    margin-bottom: 30px;;
    color: #F36557;
}

.empresa-lista {
    margin-top: 15px;
    padding-left: 20px;
}

.empresa-lista li {
    margin-bottom:2px;
    font-size: 18px;
}

.empresa-imagem {
    flex: 1;
}

.empresa-imagem img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ===========================
   EMPRESA — MOBILE
=========================== */
@media (max-width: 768px) {

    /* Container geral */
    .empresa-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 20px 15px;
    }

    /* Texto */
    .empresa-texto h2 {
        font-size: 22px;
        text-align: center;
        line-height: 1.3;
    }

    .empresa-texto p {
        font-size: 15px;
        line-height: 1.5;
        text-align: justify;
    }

    .empresa-lista li {
        font-size: 15px;
        margin-bottom: 8px;
    }

    /* Imagem + destaque */
    .empresa-imagem {
        text-align: center;
    }

    .empresa-destaque {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .empresa-imagem img {
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
        display: block;
        margin: 0 auto;
    }

    /* Reduz espaço entre seções */
    .empresa-bloco {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}


/* INC SERVIÇOS */
.servicos-bloco {
    width: 90%;
    margin: 0px auto;
    }

.servicos-titulo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: left;
    color: #222;
}

.servicos-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
}

.servico-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.servico-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #696969;
}

.servicos-barra {
    background: #F36557; /* cor elegante semelhante ao print */
    padding: 10px 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.servicos-barra h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

/* GRID */
.servicos-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px 40px;
}

/* CAIXAS */
.servico-item {
    background: #fff;
    padding: 22px 25px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;

    /* animação base */
    opacity: 0;
    transform: translateY(30px);
    animation: aparecer .6s ease forwards;
}

/* ANIMAÇÃO */
@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ANIMAÇÃO EM CASCATA */
.servico-item:nth-child(1) { animation-delay: .1s; }
.servico-item:nth-child(2) { animation-delay: .25s; }
.servico-item:nth-child(3) { animation-delay: .4s; }
.servico-item:nth-child(4) { animation-delay: .55s; }

/* HOVER */
.servico-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

#servicos {
    scroll-margin-top: 70px; /* ajuste conforme a altura do seu header */
}

/* ===========================
   SERVIÇOS — MOBILE
=========================== */
@media (max-width: 768px) {

    /* Barra de título */
    .servicos-barra h2 {
        font-size: 22px;
        text-align: center;
        padding: 0 10px;
        line-height: 1.3;
    }

    /* Container geral */
    .servicos-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 20px 15px;
    }

    /* Cada serviço */
    .servico-item {
        background: #fff;
        padding: 18px 15px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .servico-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
        text-align: center;
        line-height: 1.3;
    }

    .servico-item p {
        font-size: 15px;
        line-height: 1.5;
        text-align: justify;
        margin-bottom: 10px;
    }

    /* Reduz espaço entre seções */
    .servicos-bloco {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}
