/*
Theme Name: TCE
Description: Tema customizado para TCE Automation focado em velocidade e Core Web Vitals.
Version: 1.0
Author: Seu Nome
Text Domain: tce
*/

/* Reset e estilos básicos otimizados */

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Estilos para velocidade: usar CSS crítico inline se necessário, mas aqui básico */
.container {
    max-width: 95% !important;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Adicionar estilos para lazy loading de imagens */
img {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

/* Header */

header {
    position: relative;
    z-index: 20;
}

.site-header {
    background-color: #fff;

    margin: 0 auto;
    padding: 24px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-top: 24px;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-main .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    width: auto;
    z-index: 2;
}

.header-main .nav-primary {
    flex: 1;
    z-index: 1;
}

.header-main .header-right {
    z-index: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    /* Para empurrar para a direita */
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-primary {
    flex: 1;
}

.nav-primary ul.menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-primary ul.menu li {
    margin-right: 20px;
}

.nav-primary ul.menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-primary ul.menu li a:hover {
    border-bottom: 2px solid #0062A2;
    padding-bottom: 12px;
}

.logo {
    flex-shrink: 0;
    margin-right: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 34px;
}

.link-trabalhe {
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #3C3F41;

}




.mobile-only {
    display: none;
}

.mobile-links {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    margin-top: 20px;
}

.mobile-links a {
    display: block;
    max-width: max-content;
}

.mobile-links .btn-fale-topo {
    display: inline-block;
    margin-top: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-main {
        position: relative;
    }

    .nav-primary.mobile-only {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        border: 1px solid #e0e0e0;
        display: none;
        /* Esconder por padrão, mostrar com JS */
        max-height: 0;
        background-size: cover;
        background-position: center center;
        transition: max-height 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-primary.mobile-only.mobile-open {
        display: block;
        max-height: 500px;
        /* Altura suficiente para o menu */
    }

    .nav-primary.mobile-only ul.menu {
        flex-direction: column;
        padding: 20px;
    }

    .nav-primary.mobile-only ul.menu li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    /* Animação do ícone hambúrguer */
    .mobile-menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .mobile-menu-toggle span {
        transition: all 0.3s ease;
    }
}


.header-submenu .subnav {
    background: #FAFAFA;
    /* border-top: 1px solid rgba(0, 0, 0, 0.05); */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    backdrop-filter: blur(20px)
}

.subnav {
    display: flex;
    justify-content: center;

}

.subnav a {
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-style: Italic;
    font-size: 12px;
    color: #3C3F41;
    line-height: 160%;
    letter-spacing: 3%;

    transition: .2s;
    padding: 10px 24px;
}

.subnav a:hover {
    background: #E6E7E8;
    color: inherit;
}



/* Footer */
footer {
    background-color: #fafafa;
    padding: 96px 0;
    border-bottom: 1px solid #E6E7E8;
}

.signature {
    background: #fafafa;
    padding: 18px 0;
    font-family: 'Rajdhani', sans-serif;

}

.signature .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signature .container img {
    margin-right: 20px;
}

.signature p {
    margin: 0;
    font-size: 16px;
}

footer .container {
    display: flex;
    align-items: start;
    gap: 40px;
    /* espaço entre logo e menus */
}

@media(max-width:992px) {
    footer .container {
        flex-direction: column;
    }
}

.footer-menus {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex: 1;
    /* ← ocupa todo espaço restante após o logo */
}



.footer-menu h3 {
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0062A2;
    margin-bottom: 32px;
    margin-top: 0;
}

.footer-menu {
    max-width: 314px;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 5px;
}


.footer-menu a,
.footer-address {
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-style: Italic;
    font-size: 16px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #71767B;
    padding: 12px 0;
    display: block;


}

.footer-menu a:hover {
    border-bottom: 1px solid #71767B;
    max-width: max-content;

}

.footer-institutional a,
.footer-contact a,
.footer-address {
    font-weight: 400 !important;
    text-transform: none !important;
    font-style: normal !important;
}

.footer-address {
    line-height: 24px;
}


.footer-brand {
    flex: 0.6;
}

/* Seletores específicos do WordPress */
.nav-primary ul.menu,
.nav-secondary ul.menu-sub {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

/* Espaçamento entre os itens do menu vindo do painel */
.nav-primary ul.menu .menu-item {
    margin-right: 20px;
}

.nav-primary ul.menu .menu-item a {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #3C3F41;
    ;
}

/* Menu de categorias (Engenharia, Automation, etc) */
.nav-secondary {
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
    padding-top: 10px;
}

.nav-secondary ul.menu-sub {
    justify-content: center;
    gap: 40px;
}

.nav-secondary ul.menu-sub .menu-item a {
    text-decoration: none;
    color: #666;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*Hero*/

.page-template-page-home .hero-content {
    max-width: 940px;
}

.hero-banner {
    height: 85vh;
    position: relative;
    /* Ajuste conforme a necessidade */
    min-height: 868px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    margin-top: -159px;
}

/* container vira referência horizontal */
.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8));
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-container {
    position: relative;
    height: 100%;
    z-index: 2;
}

/* conteúdo vira absoluto */
.hero-content {
    position: absolute;
    bottom: 64px;
    /* 👈 pedido */
    left: 0;
    /* respeita a borda do container */
    max-width: 640px;
    color: #fff;
    padding: 0 20px;
}

@media(max-width:992px) {
    .hero-content {
        padding: 0 20px;
    }
}

.page-template-page-sobre .hero-content {
    max-width: 740px;
}

.hero-banner .container {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.page-template-page-home .hero-banner h1,
.page-template-page-engenharia .hero-banner h1 {
    margin-bottom: 0;
}

.hero-banner h1 {
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: clamp(42px, 10vw, 72px);
    line-height: 120%;
    letter-spacing: 0%;
    margin-top: 12px;
    text-align: left;

}



.hero-banner p {
    max-width: 700px;
    margin-bottom: 30px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #FFFFFFB2;
}

.btn-primary {
    background-color: #D37C00;
    /* Cor laranja do print */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    transition: 0.3s;

    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;

}

.btn-primary:hover {
    background-color: #F6940C;
}


/* Seção Principal */
.sobre {
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: #FAFAFA;
    display: flex;
    justify-content: center;
}

.sobre-grid {

    display: flex;
    align-items: center;
    gap: 60px;
    /* Espaço entre texto e imagem */
}


.tag,
.tag-white,
.tag-custom {
    display: block;
    margin-bottom: 12px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 13px;
    color: #0062A2;
    line-height: 160%;
    letter-spacing: 15%;
    text-transform: uppercase;

}

.tag-custom {
    color: #6DB0F4;
}

.tag-white {
    font-weight: 600;
    color: #fff;
    padding-bottom: 12px;
    border-bottom: 1px solid #fff;
    max-width: max-content;
}

.sobre-texto h2 {
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 36px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #3C3F41;
    margin: 0;
}

@media(min-width:992px) {
    .sobre-texto h2 {
        max-width: 448px;
    }
}

h2 {
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 36px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #3C3F41;
}

.sobre-texto p,
.topo-engenharia p,
.sobre-texto .descricao strong {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #71767B;
    line-height: 160%;
    letter-spacing: 0%;
    max-width: 433px;
}

.topo-engenharia p {
    margin: 0 auto;
}

.sobre-texto .descricao strong {
    font-weight: 600;
    color: #3C3F41
}

/* Botão */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border: 1px solid #ADB0B4;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #3C3F41;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;

    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #F6940C;
    border-color: #F6940C;
    color: #fff;
}

.btn-outline:hover svg path {
    fill: #fff;
}

.btn-conheca {
    margin-top: 32px;
}

/* Coluna de Imagem */
.sobre-img {
    width: 100%;
}


@media(min-width:992px) {
    .sobre-texto {
        width: 43%;
    }
}


.sobre-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* Arredondamento da imagem */
    display: block;
    object-fit: cover;
}

/* Responsividade para Celulares */
@media (max-width: 992px) {
    .sobre-grid {
        flex-direction: column;
        text-align: left;
        gap: 40px;
    }

    .sobre-texto h2 {
        font-size: 32px;
    }
}



/*brand*/


.brand {
    padding-top: 80px;
    padding-bottom: 120px;
}

.brand h2 {
    text-align: center;
    font-weight: 400;
    font-size: 27px;
}

.brand h2 span {
    background: linear-gradient(87.23deg, #00327D 76.46%, #33A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Container que esconde o que sai da tela */
.marquee-wrapper {
    width: 100%;
    background-size: cover;
    background-position: center center;
    padding: 40px 0;
    position: relative;
    display: flex;
    overflow: hidden;
}

/* O container dos logos que vai deslizar */
.brand-logos {
    display: flex;
    align-items: center;
    gap: 100px;
    /* Espaço entre os logos */
    animation: marquee-scroll 30s linear infinite;
    /* Velocidade do carrossel */
    width: max-content;
    /* Importante para não quebrar linha */
}

/* Pausa o carrossel ao passar o mouse */
.brand-logos:hover {
    animation-play-state: paused;
}

/* Estilo individual do logo */
.brand-logo {
    flex-shrink: 0;
}

.logo-header img {
    max-width: 150px;
}


.page-id-9 .logo-header img {
    max-width: 90px;
    max-height: 30px;
}

.brand-logo img {
    max-height: 100px;
    /* Ajuste conforme necessário */
    width: 100px;
    filter: grayscale(100%);
    /* Opcional: logos em P&B */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* A Mágica: Animação */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exatamente metade do conteúdo (já que duplicamos os logos no PHP) */
        transform: translateX(-50%);
    }
}

/*Atuação Nacional*/


.atuacao-nacional {
    background: linear-gradient(0deg, #00497D, #00497D),
        linear-gradient(106.89deg, #003154 0%, #0062A2 100%);
    padding: 80px 0;
    color: #fff;
}

.atuacao-nacional h2 {
    color: #fff;
    font-size: 61px;
    margin-bottom: 16px;
    margin-top: 0;
}

.txt-nacional {
    max-width: 299px;
}

.atuacao-nacional p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #FFFFFFB2;
    margin: 0;
}

.atuacao-nacional strong {
    font-weight: 600;
}

.atuacao-nacional .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
}

@media(min-width:992px) {
    .atuacao-nacional .container {
        gap: 107px;
        flex-direction: row;
    }
}

.execucao {
    padding-top: 120px;
    padding-bottom: 80px;
    background: #FAFAFA;
}

.execucao-texto {
    width: 53%;
}

iframe {
    width: 100%;
    height: 449px;
    border-radius: 24px;
}

/*experiencia*/

.experiencia {
    padding-top: 80px;
    padding-bottom: 120px;
}

@media(min-width:992px) {
    .experiencia-texto {
        width: 52%;
    }

}


/*news*/

.cta-section {
    padding: 69px 0;
}

.cta-content {
    width: 100%;
    padding-top: 75px;
    padding-bottom: 75px;
    /* Ajuste conforme a necessidade */
    background-image: url('./images/bg-news.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    border-radius: 12px
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 47px;
    margin-top: 0;
}

.cta-content p {
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-size: 27px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFFB2;
    max-width: 590px;
    margin: auto;
    margin-bottom: 40px;
}

/* Botão Estilizado */
.cta-button {
    background-color: #e68a00;
    /* Laranja da imagem */
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.cta-button:hover {
    background-color: #cc7a00;
    transform: translateY(-2px);
}




/*quem somos*/


.page-sobre-empresas h2 {
    max-width: 1150px;
    margin: 0px auto;
    margin-bottom: 64px;
}

.empresas,
.page-sobre-empresas {
    padding-top: 128px;
    padding-bottom: 80px;
}

.empresas h2 {
    max-width: 450px;
    margin: 0 auto;
    font-weight: 400;

}

.topo-engenharia {
    margin-bottom: 64px;
}


.box-empresas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 16px;
    overflow: hidden;
    gap: 1px;
}

@media(max-width:1024px) {
    .box-empresas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .box-empresas {
        grid-template-columns: 1fr;
    }
}

.empresa-item {
    position: relative;
    overflow: hidden;
    height: 293px;
}

.empresa-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.bg-fundo-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.empresa-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.empresa-item:hover::after {
    background: #0062A2;
    /* SUA COR AQUI */
}

.logo-nome {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;

    /* agora sim */
    width: 100%;

    display: flex;
    align-items: end;
    justify-content: center;
    max-width: 200px;

    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-style: Italic;
    font-size: 16px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #fff;

    transition: .45s cubic-bezier(.4, 0, .2, 1);
}


.card-hover-empresa {
    position: absolute;
    inset: 0;
    padding: 20px;
    z-index: 4;

    opacity: 0;

    transition: .45s cubic-bezier(.4, 0, .2, 1);
}

.empresa-item:hover .logo-nome {
    top: 20px;
    left: 24px;
    font-size: 12px;
    transform: none;
    /* remove centralização */
    text-align: left;
    color: #FFAF41;
}

.card-hover-empresa .topo-card {
    position: absolute;
    right: 20px;
    top: 20px;
}

.empresa-item:hover .logo-nome img {
    max-width: 90px;
    /* logo diminui levemente */
}

.card-hover-empresa .descricao-card p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;

    position: absolute;
    bottom: 15px;
    left: 20px;
    right: 20px;
}

.empresa-item:hover .card-hover-empresa {
    opacity: 1;
    transform: translateY(0);
}

.orange {
    color: #FFAF41;
}



@media(min-width:992px) {
    .page-template-page-sobre .sobre-texto {
        width: 50%;
    }

    .page-template-page-sobre .sobre-texto h2 {
        max-width: 433px;
    }
}





.page-template-page-sobre .sobre-grid {
    gap: 80px;
}


/*Page engenharia*/

.page-template-page-engenharia .hero-content {
    max-width: 840px;
}


.servicos {
    padding: 80px 0;
}

.servicos h2 {
    max-width: 680px;
    margin-top: 0;
}

.box-servicos .left ul {
    padding: 0;
    margin: 0;
}

.box-servicos {
    display: flex;
    gap: 4px;
    margin-top: 40px;
    flex-direction: column;
}



.right {

    background: #FAFAFA;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #E6E7E8;
    box-shadow: 0px 1px 3px 0px #1018281F;
    box-shadow: 0px 1px 2px 0px #1018280F;

}

@media(min-width:992px) {

    .box-servicos {
        flex-direction: row;
    }

    .left {
        width: 40%;
    }

    .right {
        width: 60%;
    }
}

.box-servicos .right ul {
    padding-inline-start: 17px !important;
    margin: 0;
}

.tab-item {
    cursor: pointer;
    padding-bottom: 12px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #71767B;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;

    transition: 0.3s;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tab-item.active {
    color: #D37C00;
    /* Cor laranja da imagem */
    font-weight: 500;
}

.arrow {
    margin-right: 10px;
}

/* Lógica de exibição */
.content {
    display: none;
}

.content h3 {
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 27px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-top: 0;
    margin-bottom: 32px;
    color: #3C3F41;
}

.content ul li {
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-size: 21px;
    color: #3C3F41;
    ;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;

}

.content ul li::marker {
    font-size: 10px;
}


.content ul li:not(:last-child) {
    margin-bottom: 16px;
}

.left ul li:not(:first-child) {
    padding-top: 12px;
}

.content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.segmentos h2 {
    max-width: 608px;
    margin-top: 0;
}

/* Removemos o max-width fixo da seção para permitir o sangrado */
.segmentos {
    width: 100%;
    background-size: cover;
    background-position: center center;
}


.carousel-css-wrapper {
    width: 100%;
    /* O padding-left deve ser igual à margem do seu container */
    /* calc( (100% - largura-do-container) / 2 ) */
    padding-left: calc((100% - 1360px) / 2 + 20px);
    overflow: visible;
    /* Permite que o conteúdo apareça fora do limite na direita */
}



.segmentos-swiper .swiper-slide {
    width: 467px !important;
    flex-shrink: 0;
}




/* Ajuste para telas menores que o container */
@media (max-width: 1240px) {
    .carousel-css-wrapper {
        padding-left: 20px;
        /* No mobile ele volta a ter margem normal */
    }
}

.card-content {
    height: 450px;
    width: 467px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center center;
    /* Corta a descrição que está "escondida" abaixo */
}

/* Overlay que sobe no Hover */
.card-overlay {
    background: #00497DCC;
    backdrop-filter: blur(24px);

    /* Azul institucional */
    width: 100%;
    padding: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(calc(100% - 70px));
    /* Deixa apenas o título visível */
}

/* Quando passa o mouse ou foca no card */
.card-segmento:hover .card-overlay {
    transform: translateY(0);
    /* Sobe tudo */
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    /* Altura fixa para alinhar as setas */
    margin-bottom: 12px;
}

.card-header h3 {
    color: #fff;
    margin: 0;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 21px;
    line-height: 160%;
    letter-spacing: 0%;

}

.card-description p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #FFFFFFB2;
    margin: 0;
}

/* Girar a seta no hover */
.arrow-up {
    transition: transform 0.3s;
}

.card-segmento:hover .arrow-up {
    transform: rotate(180deg);
}





.metodologia {
    padding: 80px 0;
    background-color: #fff;
}


.metodologia .container {
    display: flex;
}

@media(max-width:992px) {
    .metodologia .container {
        flex-direction: column;
    }
}

.metodologia .topo {
    width: 100%;
}

.grid-metodologia {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 colunas */
    gap: 60px 40px;
    /* Espaço entre linhas e colunas */
    margin-top: 130px;
}

.page-id-102 .grid-metodologia {
    grid-template-columns: repeat(3, 1fr);
}


.item-metodologia {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.item-metodologia .numero {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 47px;
    color: #E6E7E8;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;

}

.item-metodologia h3 {
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #3C3F41;
    margin: 8px 0;
}

.item-metodologia p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #71767B;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    margin: 0;

}

/* Responsividade */
@media (max-width: 768px) {
    .grid-metodologia {
        grid-template-columns: 1fr;
        /* 1 coluna no mobile */
        gap: 40px;
    }

    .item-metodologia .numero {
        font-size: 2.5rem;
    }
}


.metodologia h2 {
    margin: 0;
}

.page-template-page-engenharia .experiencia {
    background: #fafafa;
}

.projetos-tech {
    list-style: none;
    padding: 0;
    margin: 0;
}

.projetos-tech li {
    position: relative;
    padding-left: 22px;
    display: flex;
    align-items: center;

    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #3C3F41;
}

.projetos-tech li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;

    width: 18px;
    height: 18px;

    background-color: #0062A2;

    /* máscara com o SVG */
    -webkit-mask: url("data:image/svg+xml;utf8,<svg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><path d='M13.125 10.75H4V9.25H13.125L8.9375 5.0625L10 4L16 10L10 16L8.9375 14.9375L13.125 10.75Z' fill='black'/></svg>") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,<svg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><path d='M13.125 10.75H4V9.25H13.125L8.9375 5.0625L10 4L16 10L10 16L8.9375 14.9375L13.125 10.75Z' fill='black'/></svg>") no-repeat center / contain;
}

.diferenciais {
    padding: 80px 0;
}

.diferenciais h2 {
    margin: 0;
    font-size: 47px;
    font-weight: 400;
}


.diferenciais .topo {
    margin-bottom: 50px;
}

.grid-diferenciais {
    display: grid;
    /* Divide em 5 colunas iguais, como na imagem */
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.card-diferencial {
    background: #fff;
    border: 1px solid #E6E7E8;
    border-radius: 8px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}



.card-diferencial h3 {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #3C3F41;
    margin-top: 0;
    margin-bottom: 12px;
    min-height: 2.6em;
    /* Mantém o alinhamento mesmo com títulos curtos */
}

.card-diferencial p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #71767B;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;

    margin: 0;
}

/* Ajustes para Telas Menores */
@media (max-width: 1200px) {
    .grid-diferenciais {
        grid-template-columns: repeat(3, 1fr);
        /* 3 colunas em telas médias */
    }
}

@media (max-width: 768px) {
    .grid-diferenciais {
        grid-template-columns: 1fr;
        /* 1 coluna no mobile */
    }

    .card-diferencial {
        text-align: center;
        align-items: center;
    }
}



.hero-custom {
    height: 449px;

    margin-top: -159px;
    background: #003258;
}

.hero-custom .container {
    position: relative;
    height: 100%;
}

.content-wrapper {
    position: absolute;
    bottom: 64px;
    width: 100%;
}

.hero-custom h2 {
    color: #fff;
    font-size: 47px;
    margin: 0;
}

.breadcrumb,
.breadcrumb a {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 8px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    line-height: 160%;
    letter-spacing: 0%;
    color: #FFFFFF99;
}


/*cases*/
.cases-archive {
    padding: 96px 0;
}

.cases-archive h2 {
    max-width: 400px;
    margin: 0 auto;

}

.cases-tabs {
    margin-top: 64px;
    margin-bottom: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* wrapper */
.cases-select-mobile {
    display: none;
    position: relative;
    margin: 22px 0;
}

/* aparece no mobile */
@media (max-width:768px) {
    .cases-select-mobile {
        display: block;
    }

    .cases-tabs {
        display: none;
    }
}

/* SELECT PREMIUM */
.cases-select-mobile select {
    width: 100%;
    height: 54px;
    padding: 0 48px 0 18px;
    border-radius: 14px;
    border: 1px solid #e6e6e6;
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: .25s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
}

/* hover */
.cases-select-mobile select:hover {
    border-color: #d0d0d0;
}

/* focus */
.cases-select-mobile select:focus {
    border-color: #0b63f6;
    box-shadow: 0 0 0 3px rgba(11, 99, 246, .15);
}

/* seta fake */
.cases-select-mobile::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
}

/* quando abre (efeitinho de clique) */
.cases-select-mobile select:active {
    transform: scale(.99);
}

.cases-tabs .tab {

    background: transparent;
    padding: 8px 24px;
    border-radius: 30px;
    border: 1px solid #E6E7E8;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #71767B;
    letter-spacing: 5%;
    text-transform: uppercase;
    cursor: pointer;
}

.cases-tabs .tab.active {
    background: #0062A2;
    border-color: #0062A2;
    color: #fff;

}


#cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 colunas iguais */
    gap: 20px;
    /* substitui o truque de margin negativa */
}

#cases-grid .case-card {
    /* remova o flex e as margins, mantenha o resto */
    box-sizing: border-box;
    border-radius: 12px;
    overflow: hidden;
    background: #fafafa;
    border: 1px solid #E6E7E8;
    transition: border-color 0.3s ease;
}

#cases-grid .case-card:hover {
    border: 1px solid #307BBC;
}

#cases-grid .case-card img {
    transition: transform .6s ease;
}

#cases-grid .case-card:hover img {
    transform: scale(1.08);
}

#cases-grid .case-card:hover .case-card-title {
    color: #307BBC;
}

#cases-grid .case-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

#cases-grid .case-card-thumb img {
    width: 100%;
    height: 260px;
    /* altura fixa */
    object-fit: cover;
}

.case-card-content {
    padding: 24px;
}

.case-card-excerpt {
    margin: 0;

    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #71767B;
    line-height: 160%;
    letter-spacing: 5%;
    vertical-align: middle;
    text-transform: uppercase;

}

.case-card-title {
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-size: 27px;
    color: #3C3F41;
    line-height: 140%;
    letter-spacing: 0%;
    margin-top: 0;
    margin-bottom: 40px;
    min-height: 86px;

    transition: color 0.3s ease;
}

.case-card-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.case-tag {
    border: 1px solid #307BBC;
    padding: 4px 16px;
    border-radius: 30px;

    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 160%;
    letter-spacing: 5%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #0062A2
}

.cases-grid-home {
    margin-top: 64px;
}

.page-template-page-home .execucao {
    background: #fafafa;
}

.box-cases {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

@media(max-width:992px) {
    .box-cases {
        flex-direction: column;
        align-items: start;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    #cases-grid {
        grid-template-columns: 1fr !important;
    }
}

.breadcrumb-single {
    justify-content: start;
}



.hero-custom-single h2 {
    max-width: 880px;
    ;
}

.hero-custom-single {
    height: 577px;
}

.hero-custom-single .content-wrapper {
    position: absolute;
    bottom: 64px;
    max-width: 95%;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 120px;
}

.info-item strong,
.info-item span {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 16px;

    line-height: 160%;
    letter-spacing: 0%;
    display: block;

}

.info-item span {
    font-weight: 400;
    color: #FFFFFFB2;

}

.breadcrumb-single {
    margin-bottom: 10px;
}

.hero-right-infos {
    padding-top: 50px;
    text-align: left;
    color: #fff;
    font-size: 0.9rem;
}

.case-text-content h2 {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 27px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #3C3F41;
}

.case-text-content p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #71767B;

}

.case-text-content {
    max-width: 640px;
    margin: 128px 0;
}

.case-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 16px;
    overflow: hidden;
}

.gallery-item img {
    display: block;
    width: 100%;
    max-height: 342px;
    object-fit: cover;
}

.page-template-page-trabalhe .hero-content {
    max-width: 840px;
    ;
}

.page-template-page-trabalhe .btn-primary svg {
    transform: rotate(90deg);
}

.pilares {
    padding-top: 120px;
    padding-bottom: 80px;
}

.pilares h2 {
    max-width: 590px;
    margin: 0;
}


.rh-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #FAFAFA;
    border: 1px solid #E6E7E8;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 32px;
    box-shadow: 0px 1px 3px 0px #1018281F;

    box-shadow: 0px 1px 2px 0px #1018280F;
    min-height: 367px;

}

.rh-card {
    padding: 24px;
    border-right: 1px solid #E6E7E8;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease;
}

.rh-card:last-child {
    border-right: none;
}



.rh-number {
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 27px;
    line-height: 140%;
    letter-spacing: 0%;
    display: block;
    color: #E6E7E8;
}

.rh-title {


    margin: 12px 0;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    max-width: 200px;
    font-size: 21px;
    color: #3C3F41;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;

    /* Alinha os textos caso os títulos variem de tamanho */
}

.rh-text {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #71767B;
    margin: 0;
}

/* Responsividade para tablets e celulares */
@media (max-width: 992px) {
    .rh-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rh-card:nth-child(2) {
        border-right: none;
    }

    .rh-card {
        border-bottom: 1px solid #eee;
    }
}

@media (max-width: 600px) {
    .rh-grid {
        grid-template-columns: 1fr;
    }

    .rh-card {
        border-right: none;
    }
}



.trabalhe-contato {
    position: relative;
    padding: 100px 0;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Container da Imagem de Fundo */
.bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Faz a imagem se comportar como background */
}



.content-relative {
    position: relative;
    z-index: 2;
    /* Garante que o texto fique acima do overlay */
}

.trabalhe-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 768px) {
    .trabalhe-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        /* opcional, pra não ficar gigante */
    }
}

/* Estilização dos Itens de Contato (Cards Escuros) */
.contato-item {
    display: flex;
    align-items: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        linear-gradient(0deg, rgba(0, 98, 162, 0.2), rgba(0, 98, 162, 0.2));

    padding: 14px;
    margin-bottom: 10px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    max-width: 339px;
}




.trabalhe-info h2 {
    color: #fff;
    margin-top: 0;
    max-width: 500px;
    margin-bottom: 16px;
}

.trabalhe-info p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #FFFFFFB2;
    margin-top: 0;
    max-width: 600px;
    margin-bottom: 32px;
}


.trabalhe-info .text strong,
.trabalhe-info .text span {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 12.51px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
}

.trabalhe-info .text span {
    font-weight: 400;
    color: #FFFFFFB2;
}


.trabalhe-form-card h2 {
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    font-size: 27px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #3C3F41;
    margin: 0;

}


.trabalhe-form-card p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #71767B;
    margin-top: 0;
    margin-bottom: 50px;
}

/* Card do Formulário */
.trabalhe-form-card {
    background: #FAFAFA;
    padding: 31px 36px;
    border-radius: 16px;
    border: 1px solid #E6E7E8;
    box-shadow: 0px 1px 3px 0px #1018281F;
    box-shadow: 0px 1px 2px 0px #1018280F;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* CAMPOS */
.field-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.field-group label {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 13px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #3C3F41;
    margin-bottom: 8px;
}

.trabalhe-form input,
.trabalhe-form textarea {
    width: 100%;
    border: 1px solid #E6E7E8;
    border-radius: 4px;
    padding: 14px;
    font-size: 14px;
    background: #fff;
    transition: .2s;
    font-family: 'Rubik', sans-serif;
}


.trabalhe-form input::placeholder,
.trabalhe-form textarea::placeholder {
    color: #3C3F4180;
}

.trabalhe-form input:focus,
.trabalhe-form textarea:focus {
    outline: none;
    border-color: #D37C00;
}

/* BOTÃO */
.btn-enviar {
    background: #D37C00;
    color: #fff;
    border: none;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .2s;
}

.btn-enviar:hover {
    background: #a96500;
}

/* RESPONSIVO */
@media(max-width:768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .trabalhe-form-card {
        padding: 28px;
    }
}

.red {
    color: #D37C00;
}

.line hr {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 107px;
    background: #E6E7E8;
    height: 1px;
    border: none;
}


.page-template-page-contato .hero-banner::before {
    background: transparent;
}

.page-template-page-contato .hero-banner {
    min-height: 467px;
    height: 467px;
}

.page-template-page-contato .hero-content .btn-primary {
    display: none;
}

.page-template-page-contato .hero-content .tag-white {
    color: #D37C00;
    border-bottom: none;
    margin: 0;
}

.page-template-page-contato .hero-banner h1 {
    font-size: 47px;
    margin: 0;

}

.page-template-page-contato .hero-content {
    max-width: 440px;
}

.page-template-page-contato p {
    color: #71767B;
    max-width: 500px;
}

.page-template-page-contato h2 {
    color: #3C3F41;
}

.page-template-page-contato .contato-item {
    background: transparent;
    max-width: 494px;
    width: 100%;
    border-bottom: 1px solid #E6E7E8;
    gap: 16px;
}

.page-template-page-contato .trabalhe-info .text strong {
    color: #71767B;
}


.page-template-page-contato .trabalhe-info .text span {
    color: #3C3F41;
    max-width: 359px;
    display: block;
}

.page-template-page-contato .trabalhe-grid {
    display: flex;

    align-items: center;
}



.page-template-page-contato .trabalhe-form-card {
    width: 60%;
}

/* bloco geral */
.file-upload {
    margin-top: 8px;
}

/* caixa pontilhada */
.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    width: 100%;
    height: 89px;
    border: 2px dashed #D9D9D9;
    border-radius: 10px;
    background: #FAFAFA;

    font-size: 14px;
    color: #6B7280;
    cursor: pointer;
    transition: all .2s ease;
}

/* hover bonitinho */
.file-upload-label:hover {
    border-color: #C7C7C7;
    background: #F5F5F5;
}

/* texto azul "Clique para selecionar" */
.file-upload-label::before {
    content: "⬆";
    display: block;
    font-size: 22px;
    margin-right: 8px;
    color: #9CA3AF;
}

/* linha opcional pequena */
.optional {
    font-weight: normal;
    color: #9CA3AF;
    font-size: 13px;
}

.page-template-page-contato .file-upload-label {
    flex-direction: column;
    background: #fff;
}

.file-upload-input {
    display: none;
}

.blue-color {
    color: #0062A2;
}

@media(max-width:992px) {
    .page-template-page-contato .trabalhe-grid {
        flex-direction: column;
        gap: 40px;
    }

    .page-template-page-contato .trabalhe-form-card {
        width: 100%;
    }
}

.page-template-page-engenharia.page-id-98 .hero-content,
.page-template-page-engenharia.page-id-89 .hero-content {
    max-width: 940px;
}


/*animações*/

/* estado inicial antes do JS agir */
.reveal,
.reveal-stagger>* {
    opacity: 0;
    will-change: transform, opacity;
}

/* evita flicker feio antes da animação */
.reveal,
.reveal-stagger>* {
    transition: none;
}



.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 18px 0px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .1);
    z-index: 9999;
}

.cookie-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

@media(max-width:992px) {
    .cookie-bar .container {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }
}

.cookie-bar.hidden {
    display: none;
}

.cookie-bar span {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #71767B;
    line-height: 160%;
    letter-spacing: 0%;

}

.cookie-bar span a {
    color: #0062A2;
    text-decoration: none;
}

.cookie-bar .btn-outline {
    background: none;
    width: 180px;
    text-align: center;
    justify-content: center;
}

.cookie-bar .btn-outline:hover {
    background: #F6940C;
    border-color: #F6940C;
    color: #fff;
}

@media(max-width:992px) {
    h2 {
        font-size: 30px !important;
    }

    p {
        font-size: 16px !important;
    }

    .hero-custom-single .content-wrapper {
        position: static;
        flex-direction: column;
        padding: 200px 0 50px;
        gap: 10px
    }

    .hero-custom-single {
        height: auto;
    }

    .grid-metodologia {
        grid-template-columns: 1fr !important;
    }

}

```css id="css-canal-denuncia"
/* =====================================================
   CANAL DE DENÚNCIAS — FORMULÁRIO ESPECÍFICO
===================================================== */

#wpcf7-f163-p164-o1{
    max-width: 900px;
    margin: 0 auto;
}

#wpcf7-f163-p164-o1 form{
    display:flex;
    flex-direction:column;
    gap:24px;
}

/* TITULOS */
#wpcf7-f163-p164-o1 h2{
    font-size:28px;
    line-height:1.3;
    margin:40px 0 10px;
    padding-bottom:12px;
    border-bottom:1px solid #e5e5e5;
}

/* LABELS */
#wpcf7-f163-p164-o1 label{
    display:flex;
    flex-direction:column;
    gap:10px;
    font-weight:600;
    width:100%;
}

/* INPUTS */
#wpcf7-f163-p164-o1 input[type="text"],
#wpcf7-f163-p164-o1 input[type="email"],
#wpcf7-f163-p164-o1 input[type="tel"],
#wpcf7-f163-p164-o1 input[type="date"],
#wpcf7-f163-p164-o1 select,
#wpcf7-f163-p164-o1 textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #dcdcdc;
    border-radius:10px;
    font-size:16px;
    background:#fff;
    box-sizing:border-box;
}

/* TEXTAREA */
#wpcf7-f163-p164-o1 textarea{
    min-height:140px;
    resize:vertical;
}

/* RADIO E CHECKBOX WRAPPER */
#wpcf7-f163-p164-o1 .wpcf7-radio,
#wpcf7-f163-p164-o1 .wpcf7-checkbox,
#wpcf7-f163-p164-o1 .wpcf7-acceptance{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:10px;
}

/* ITENS */
#wpcf7-f163-p164-o1 .wpcf7-list-item{
    margin:0;
    display:block;
}

/* LABEL DOS ITENS */
#wpcf7-f163-p164-o1 .wpcf7-list-item label{
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    gap:12px;
    font-weight:400;
    cursor:pointer;
}

/* INPUT RADIO/CHECK */
#wpcf7-f163-p164-o1 input[type="radio"],
#wpcf7-f163-p164-o1 input[type="checkbox"]{
    width:18px;
    height:18px;
    margin-top:2px;
    flex-shrink:0;
}

/* UPLOAD */
#wpcf7-f163-p164-o1 input[type="file"]{
    padding:14px;
    border:1px dashed #ccc;
    border-radius:10px;
    background:#fafafa;
}

/* BOTÃO */
#wpcf7-f163-p164-o1 input[type="submit"]{
    background:#000;
    color:#fff;
    border:none;
    padding:16px 24px;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    width:fit-content;
}

#wpcf7-f163-p164-o1 input[type="submit"]:hover{
    opacity:.85;
}

/* HR */
#wpcf7-f163-p164-o1 hr{
    border:none;
    border-top:1px solid #e5e5e5;
    margin:10px 0;
}

/* TEXTO PEQUENO */
#wpcf7-f163-p164-o1 small{
    color:#666;
    font-size:14px;
}

/* MENSAGENS */
#wpcf7-f163-p164-o1 .wpcf7-response-output{
    margin-top:20px;
    border-radius:10px;
    padding:16px;
}

/* RESPONSIVO */
@media(max-width:768px){

    #wpcf7-f163-p164-o1 h2{
        font-size:22px;
    }

    #wpcf7-f163-p164-o1 input[type="submit"]{
        width:100%;
    }

}
