body {
    font-family: Arial, sans-serif;
    color: #1f1f1f;
}

/*logo*/

.logo-navbar {
    height: 48px;
}

@media (max-width: 768px) {
    .logo-navbar {
        height: 38px;
    }
}

/*navbar*/
.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
}

.contato-negrito {
    font-weight: bold;
}
/*SECAO HERO*/
/* =========================
   HERO
========================= */
.hero-section {
    position: relative;
    height: 68vh;
    min-height: 460px;
    max-height: 620px;
    background: #d9d9d9;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-overlay-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-panel {
    position: absolute;
    max-width: 600px;
    background: rgba(45, 156, 219, 0.48);
    border-radius: 0 100px 100px 0;
    display: flex;
    align-items: center;
    padding: 2rem 1.8rem;
}

.hero-title {
    color: #fff;
    font-size: clamp(2rem, 3.1vw, 3.8rem);
    line-height: 1.18;
    font-weight: 700;
    max-width: 620px;
    margin: 0;
}
/* CELULAR */
@media (max-width: 767.98px) {
    .hero-section {
        height: 56vw;
        min-height: 200px;
        max-height: 320px;
    }

    .hero-overlay-content {
        align-items: flex-end;
        padding-bottom: 1rem;
    }

    .hero-panel {
        width: 82%;
        padding: 0.8rem 1.2rem 0.8rem 1rem;
        border-radius: 0 60px 60px 0;
    }

    .hero-title {
        font-size: clamp(0.82rem, 3vw, 1.05rem);
        line-height: 1.3;
        max-width: 100%;
    }
}

/* TELAS MUITO PEQUENAS */
@media (max-width: 480px) {
    .hero-section {
        height: 60vw;
        min-height: 200px;
        max-height: 300px;
    }

    .hero-panel {
        width: 86%;
        padding: 0.7rem 1rem 0.7rem 0.8rem;
        border-radius: 0 50px 50px 0;
    }

    .hero-title {
        font-size: 0.82rem;
        line-height: 1.28;
    }
}

/* SECAO INTRO*/

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #3b3b3b;
}
.intro-text p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #2c4a63;
}

/* SECAO VIDEO TEXTO*/
.section-video-text {
    background: #d6d6cf;
    padding-top: 70px;
    padding-bottom: 70px;
}

.section-video-text p {
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    line-height: 1.7;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 1.2rem;
}

.video-box {
    border-radius: 1.5rem;
    overflow: hidden;
    background: #000;
    position: relative;
}

.video-player {
    display: block;
    width: 100%;
    height: auto;
    background: #000;
    border-radius: 1.5rem;
}

.section-title {
    font-size: clamp(1.6rem, 2.2vw, 2.5rem);
    line-height: 1.5;
    font-weight: 600;
    color: #2a2a2a;
}
/* Loader */
.video-loader {
    position: absolute;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-loader::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 4px solid #fff;
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Play button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 3;
}

/* Hide when playing */
.video-playing .video-play-btn {
    display: none;
}

.video-playing video {
    opacity: 1;
}

.video-playing .video-loader {
    display: none;
}


/* BANDEIRAS NAVBAR DESKTOP */
.bandeira-navbar {
    width: 32px;
    height: 22px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 2px;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.bandeira-link:hover .bandeira-navbar,
.bandeira-link.active .bandeira-navbar {
    opacity: 1;
    border-color: #0b4f8a;
}

/*BANDEIRAS*/

.language-flags {
    position: fixed;
    right: 20px;
    top: 35%;
    z-index: 1050;
}

.language-flags img {
    width: 60px;
    height: 42px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.language-flags a.active img
.language-flags-mobile a.active img {
    transform: scale(1.08);
}
/*responsivo logo  e bandeiras*/
/* MOBILE */
.language-flags-mobile img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border: 1px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.logo-navbar {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .logo-navbar {
        height: 42px;
    }
    .navbar-toggler {
        padding: 0.45rem 0.65rem;
    }
}
@media (max-width: 575.98px) {
    .language-flags-mobile img {
        width: 24px;
        height: 18px;
    }

    .logo-navbar {
        height: 36px;
    }
}

/* ============================================= */
/* SEÇÃO SOLUÇÕES (usada em home, etc.)          */
/* Cards com altura igual no desktop             */
/* ============================================= */
.servicos-section {
    background: #ffffff;
}

.servicos-titulo {
    color: #0b4f8a;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 1px;
}

.servico-card-custom {
    position: relative;
    background: rgba(215, 222, 235, 0.45);
    border-radius: 1.6rem;
    padding: 4.5rem 1.5rem 2rem;
    min-height: 290px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.servico-icone-circulo {
    width: 72px;
    height: 72px;
    background: #0b4f8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
}

.servico-icone-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.servico-card-titulo {
    color: #0b4f8a;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.servico-card-texto {
    color: #1f2f46;
    font-size: 0.93rem;
    line-height: 1.55;
    margin-bottom: 0;
}

/* Desktop: cards de Soluções com mesma altura */
@media (min-width: 992px) {
    .servicos-section .row > [class*="col-"] {
        display: flex;
    }

    .servicos-section .servico-card-custom {
        width: 100%;
        height: 100%;
    }
}

/* Mobile: altura natural */
@media (max-width: 991.98px) {
    .servico-card-custom {
        min-height: auto;
    }
}

/* ============================================= */
/* SEÇÃO SERVIÇOS (página laboratório)           */
/* Cards com altura igual entre si               */
/* ============================================= */
.laboratorio-servicos-section {
    background: #ffffff;
}

.laboratorio-servicos-titulo {
    color: #0b4f8a;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Espaçamento vertical entre linhas de cards */
.laboratorio-servicos-section .row {
    row-gap: 4rem !important;
}

.laboratorio-servico-card {
    position: relative;
    background: rgba(215, 222, 235, 0.45);
    border-radius: 1.6rem;
    padding: 4.5rem 1.5rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.laboratorio-servico-icone-circulo {
    width: 72px;
    height: 72px;
    background: #0b4f8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
}

.laboratorio-servico-icone-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.laboratorio-servico-card-titulo {
    color: #0b4f8a;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Desktop: cards de Serviços com mesma altura */
@media (min-width: 992px) {
    .laboratorio-servicos-section .row > [class*="col-"] {
        display: flex;
    }

    .laboratorio-servicos-section .laboratorio-servico-card {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
    
/* SECÇÃO EXPORTACÕES E LABORATÓRIO */
.bloco-mapa-exportacoes,
.bloco-laboratorio {
    background: #f4f4f4;
}

.bloco-titulo {
    color: #0b4f8a;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 1px;
}

.bloco-texto {
    color: #1d4f7c;
    font-size: clamp(1.15rem, 1.5vw, 1.7rem);
    line-height: 1.45;
    max-width: 520px;
}

.bloco-imagem-mapa,
.bloco-imagem-laboratorio {
    border-radius: 0.3rem;
    max-width: 100%;
    height: auto;
    display: inline-block;
}

@media (max-width: 991.98px) {
    .bloco-texto {
        max-width: 100%;
    }

    .bloco-titulo,
    .bloco-texto {
        text-align: center;
    }
}
/* SEÇÃO ICONES WHATSSAP */
.servicos-tags-section {
    background: #f4f4f4;
    position: relative;
}

.pill-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    background: #3b82bd;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(59, 130, 189, 0.18);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 50%;
}

@media (max-width: 991.98px) {
    .pill-card {
        min-width: 150px;
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 18px;
    }

    .whatsapp-float img {
        width: 62px;
        height: 62px;
    }
}

/* SEÇÃO NOSSO TIME */
.nosso-time-section {
    background: #173a5e;
    color: #fff;
}

.titulo-time {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    
}

.card-time {
    display: inline-block;
    text-align: center;
    text-decoration: underline;
}

.img-time {
    width: 180px;
    height: 230px;
    object-fit: cover;
    background: #e5e5e5;
}

.nome-box {
    background: #fff;
    color: #0b4f8a;
    font-weight: 600;
    padding: 8px 10px;
    margin-top: -4px;
    font-size: 0.95rem;
}
.div-caixa {
    margin-bottom: 60px; /* Cria 20px de espaço abaixo da div */
}
/* SEÇÃO TIME INDIVIDUAL */
.time-detalhe-body {
    background: #173a5e;
    color: #fff;
    min-height: 100vh;
}

.time-detalhe-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 30px 120px;
}

.titulo-time-detalhe {
    text-align: center;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 70px;
}

.bloco-time-detalhe {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    align-items: start;  /* 👈 ESSA LINHA resolve */
    margin-top: 4px; /* opcional pra micro ajuste */
}
.img-time-detalhe {
    width: 180px;
    height: 280px;
    object-fit: cover;
    background: #d9d9d9;
    display: block;
}

.nome-box {
    background: #fff;
    color: #0b4f8a;
    font-weight: 600;
    padding: 8px 10px;
    font-size: 0.95rem;
    text-align: center;
}

.texto-time {
    max-width: 820px;
}

.texto-time p {
    font-size: clamp(1.15rem, 1.35vw, 1.6rem);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-style: italic;
    text-align: justify;
}

@media (max-width: 991.98px) {
    .bloco-time-detalhe {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .texto-time {
        max-width: 100%;
    }

    .texto-time p {
        font-size: 1.05rem;
        line-height: 1.65;
        text-align: left;
    }
}

/* SEÇÃO GENÉTICA */
.secao-genetica {
    background: #f5f5f5;
    overflow: hidden;
}

.titulo-genetica {
    color: #1b4f7c;
    font-weight: 700;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

/* BLOCO DE CIMA */
.mapa-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.mapa-completo {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
}

.coluna-checks-genetica {
    padding-left: 3.5rem;
}

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

.lista-check li {
    position: relative;
    padding-left: 2.3rem;
    margin-bottom: 14px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #1b4f7c;
    line-height: 1.4;
}

.lista-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.02rem;
    width: 1.45rem;
    height: 1.45rem;
    border: 2px solid #77b9f1;
    border-radius: 50%;
    color: #77b9f1;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: transparent;
}

/* BLOCO DE BAIXO */
.bloco-pasto {
    position: relative;
    margin-top: 60px;
    overflow: hidden;
    line-height: 0;
}
.img-pasto {
    width: 100%;
    height: auto;
    display: block;
    max-height: 480px;
    object-fit: cover;
    line-height: 0;
}
.overlay-azul {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    transform: none;
    width: 48%;
    background: rgba(45, 156, 219, 0.50);
    border-top-left-radius: 140px;
    border-bottom-left-radius: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2.8rem;
}
.banner-azul-texto {
    color: #fff;
    font-size: clamp(1.35rem, 1.9vw, 2.1rem);
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    max-width: 560px;
}

/* TABLET */
@media (max-width: 991.98px) {
    .mapa-wrapper {
        min-height: 320px;
    }

    .mapa-completo {
        max-width: 480px;
    }

    .coluna-checks-genetica {
        padding-left: 1.5rem;
    }

    .lista-check li {
        font-size: 1.08rem;
        padding-left: 4rem;
    }

    .bloco-pasto {
        height: auto;
    }
    .overlay-azul {
        width: 60%;
        min-height: 180px;
        padding: 1.5rem 2rem;
        border-top-left-radius: 100px;
        border-bottom-left-radius: 100px;
    }

    .banner-azul-texto {
        font-size: 1.2rem;
        max-width: 430px;
    }
}

/* CELULAR */
@media (max-width: 767.98px) {
    .titulo-genetica {
        font-size: 1.55rem;
        line-height: 1.2;
    }

    .mapa-wrapper {
        min-height: auto;
        margin-bottom: 1rem;
    }

    .mapa-completo {
        width: 92%;
        max-width: 420px;
        height: auto;
    }

    .coluna-checks-genetica {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .lista-check li {
        font-size: 0.98rem;
        padding-left: 1.9rem;
        margin-bottom: 12px;
    }

    .lista-check li::before {
        width: 1.3rem;
        height: 1.3rem;
        font-size: 0.9rem;
    }

    .bloco-pasto {
        height: auto;
        margin-top: 40px;
    }
    
    .overlay-azul {
        top: auto;
        bottom: 0;
        right: 0;
        transform: none;
        width: 100%;
        min-height: auto;
        padding: 0.8rem 1rem;
        border-radius: 0;
    }
    .banner-azul-texto {
        font-size: 1rem;
        line-height: 1.35;
        max-width: 100%;
    }
}

/* TELAS MUITO PEQUENAS */
@media (max-width: 575.98px) {
    .mapa-completo {
        width: 96%;
    }

    .coluna-checks-genetica {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }

    .lista-check li {
        font-size: 0.92rem;
        padding-left: 1.8rem;
    }

    .bloco-pasto {
        height: auto;
    }

    .overlay-azul {
        width: 100%;
        padding: 0.7rem 0.8rem;
        border-radius: 0;
    }
    .banner-azul-texto {
        font-size: 0.92rem;
    }
}
/* ANIMAÇÃO MAPA DO GADO*/

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.9s ease;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* SECAO HOME */

.fique-home-section {
    background: #f5f5f5;
}

.titulo-fique-home {
    color: #163f67;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
}

.card-noticia-home {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.card-noticia-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.img-card-noticia-home {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.card-noticia-home-body {
    padding: 1rem 1rem 1.2rem;
}

.card-noticia-home-titulo {
    color: #163f67;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.card-noticia-home-resumo {
    color: #425a70;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.card-noticia-home-mais {
    color: #163f67;
    font-weight: 700;
    text-align: right;
}

.btn-ver-todas-noticias {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: #3b82bd;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
}

.btn-ver-todas-noticias:hover {
    color: #fff;
    opacity: 0.92;
}

.texto-vazio-noticias {
    color: #425a70;
    font-size: 1rem;
}

@media (max-width: 767.98px) {
    .img-card-noticia-home {
        height: 210px;
    }

    .card-noticia-home-titulo {
        font-size: 1rem;
    }

    .card-noticia-home-resumo {
        font-size: 0.92rem;
    }
}

/*catalogo home*/

.catalogo-hero-section {
    background: #f3f3f3;
}

.catalogo-hero-img-wrap {
    position: relative;
    overflow: hidden;
}

.catalogo-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.catalogo-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.catalogo-hero-panel {
    width: 48%;
    max-width: 760px;
    min-height: 220px;
    background: rgba(45, 156, 219, 0.48);
    border-top-right-radius: 170px;
    border-bottom-right-radius: 170px;
    display: flex;
    align-items: center;
    padding: 2rem 1.8rem;
}

.catalogo-hero-title {
    color: #fff;
    font-size: clamp(2rem, 3vw, 3.4rem);
    line-height: 1.18;
    font-weight: 700;
    max-width: 540px;
    margin: 0;
}

.catalogo-home-section {
    background: #f3f3f3;
}

.catalogo-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.catalogo-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    position: relative;
}

.catalogo-card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.catalogo-card-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

@media (max-width: 991.98px) {
    .catalogo-hero-img {
        height: 320px;
    }

    .catalogo-hero-panel {
        width: 68%;
        min-height: 180px;
        border-top-right-radius: 120px;
        border-bottom-right-radius: 120px;
        padding: 1.6rem 1.4rem;
    }

    .catalogo-card-img {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .catalogo-hero-img {
        height: 240px;
    }

    .catalogo-hero-panel {
        width: 88%;
        min-height: auto;
        border-top-right-radius: 85px;
        border-bottom-right-radius: 85px;
        padding: 1.2rem 1rem;
    }

    .catalogo-hero-title {
        font-size: 1.15rem;
        line-height: 1.3;
    }

    .catalogo-card-img {
        height: 200px;
    }
}

/*catalogo leite*/

.catalogo-leite-section {
    background: #f3f3f3;
    min-height: 70vh;
}

.catalogo-titulo {
    color: #163f67;
    font-size: clamp(2.2rem, 3vw, 3.3rem);
    font-weight: 700;
    line-height: 1.2;
}

.catalogo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    background: #4a9ad6;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 600;
}

.catalogo-pdf-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.catalogo-pdf-link {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.catalogo-pdf-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.catalogo-pdf-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    color: #fff;
    font-size: clamp(1.8rem, 2.4vw, 2.7rem);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.catalogo-pdf-footer {
    background: #4a9ad6;
    padding: 0.45rem 0.8rem;
    text-align: right;
}

.catalogo-pdf-download {
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
}

.catalogo-pdf-download:hover {
    color: #fff;
    opacity: 0.92;
}

@media (max-width: 767.98px) {
    .catalogo-pill {
        font-size: 1.35rem;
        min-width: 140px;
        padding: 0.7rem 1.5rem;
    }

    .catalogo-pdf-img {
        height: 230px;
    }
}

.catalogo-pdf-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalogo-pdf-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}



/* ================================
   PÁGINA INICIAL - SLIDESHOW
================================ */
.banner-slide-img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-item {
    overflow: hidden;
}
@media (max-width: 991.98px) {
    .banner-slide-img { height: 320px; }
}

@media (max-width: 767.98px) {
    .banner-slide-img { height: auto; min-height: 200px; }
}

/* ================================
   PÁGINA INICIAL - GRID SERVIÇOS
================================ */
.pagina-inicial-grid {
    background: #fff;
}

.pagina-inicial-subtitulo {
    color: #2c4a63;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pagina-inicial-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.8rem;
    cursor: pointer;
}

.pagina-inicial-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pagina-inicial-card:hover .pagina-inicial-card-img {
    transform: scale(1.05);
}

.pagina-inicial-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 79, 138, 0.78);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.6rem 0.8rem;
    text-align: center;
}

@media (max-width: 767.98px) {
    .pagina-inicial-card-img { height: 160px; }
    .pagina-inicial-card-label { font-size: 0.82rem; padding: 0.45rem 0.5rem; }
}

/* ================================
   PÁGINA INICIAL - BLOCO SOBRE
================================ */
.pagina-inicial-bloco-sobre {
    background: #f4f4f4;
}

.pagina-inicial-bloco-texto {
    color: #1d4f7c;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ================================
   BOTÕES PADRÃO ZEBU
================================ */
.btn-zebu-primary {
    background: #4a9ad6;
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    transition: opacity 0.2s;
}

.btn-zebu-primary:hover {
    color: #fff;
    opacity: 0.88;
}

.btn-zebu-outline {
    border: 2px solid #0b4f8a;
    color: #0b4f8a;
    border-radius: 999px;
    font-weight: 600;
    background: transparent;
    transition: all 0.2s;
    padding: 0.5rem 1.8rem;
    text-decoration: none;
    display: inline-block;
}

.btn-zebu-outline:hover {
    background: #0b4f8a;
    color: #fff;
}

/* ================================
   MAPA EXPORTAÇÕES - NOVA SEÇÃO ÍCONES
================================ */
.mapa-servicos-section {
    background: #f8f8f8;
}

.mapa-servico-item {
    text-align: center;
    padding: 1.2rem 0.8rem;
}

.mapa-servico-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 0.8rem;
}

.mapa-servico-item p {
    color: #1d4f7c;
    font-size: 0.92rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

/* ================================
   SEÇÃO CONTATO
================================ */
.contato-section {
    background: #163f67;
}

.contato-titulo {
    color: #fff;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    font-weight: 700;
}

.contato-form .form-control,
.contato-form .form-select {
    border-radius: 0.4rem;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    padding: 0.6rem 0.9rem;
    background: #fff;
}

.contato-form .form-control:focus,
.contato-form .form-select:focus {
    border-color: #4a9ad6;
    box-shadow: none;
}

.btn-contato-enviar {
    background: #4a9ad6;
    color: #fff;
    border: none;
    border-radius: 0.4rem;
    font-weight: 600;
    padding: 0.6rem 2rem;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.btn-contato-enviar:hover {
    opacity: 0.88;
    color: #fff;
}

/* ================================
   SEÇÃO CERTIFICAÇÃO ISO
================================ */
.certificacao-iso-section {
    background: #f4f4f4;
}

.certificacao-iso-titulo {
    color: #0b4f8a;
    font-size: 1.3rem;
    font-weight: 700;
}

.certificacao-iso-texto {
    color: #1d4f7c;
    font-size: 1rem;
    line-height: 1.7;
}

/* ================================
   QUEM NÓS SOMOS (nosso_time)
================================ */
.quem-somos-section {
    background: #fff;
}

.quem-somos-titulo {
    color: #0b4f8a;
    font-size: clamp(1.6rem, 2.2vw, 2.4rem);
    font-weight: 700;
}

.quem-somos-texto {
    color: #1d4f7c;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}


/* ÍCONES MAPA SERVIÇOS */
.mapa-servico-icone {
    font-size: 2.8rem;
    color: #0b4f8a;
    display: block;
    margin-bottom: 0.8rem;
}


/* ================================
   FOOTER
================================ */
.footer-section {
    background: #fff;
    color: #1d4f7c;
    border-top: 2px solid #e0eaf4;
}

.footer-logo {
    height: 32px;
    width: auto;
}
.footer-frase {
    color: #1d4f7c;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-divider {
    border-color: #d0e2f0;
    margin: 0;
}

.footer-contato-link {
    color: #1d4f7c;
    text-decoration: none;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
}

.footer-contato-link:hover {
    color: #0b4f8a;
}

.footer-contato-link i {
    font-size: 1.1rem;
    color: #0b4f8a;
}

.footer-social-titulo {
    color: #1d4f7c;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: right;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-social-link {
    color: #1d4f7c;
    font-size: 1.5rem;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-social-link:hover {
    color: #4a9ad6;
}

.footer-copy {
    color: #6a8faa;
    font-size: 0.85rem;
}
/* ============================================= */
/* SEÇÃO CATÁLOGO - EM BREVE                     */
/* ============================================= */
.catalogo-em-breve-section {
    background: #ffffff;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.catalogo-em-breve-card {
    background: rgba(215, 222, 235, 0.45);
    border-radius: 1.6rem;
    padding: 3rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.catalogo-em-breve-titulo {
    color: #0b4f8a;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.catalogo-em-breve-texto {
    color: #1f2f46;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}
/* ============================================= */
/* SEÇÃO ITENS SÊMEN (leite e corte)             */
/* Cards com mesma altura entre si               */
/* ============================================= */
.semen-itens-section {
    background: #ffffff;
}

/* Espaçamento vertical entre linhas de cards */
.semen-itens-section .row {
    row-gap: 4rem !important;
}

.semen-item-card {
    position: relative;
    background: rgba(215, 222, 235, 0.45);
    border-radius: 1.6rem;
    padding: 4.5rem 1.5rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.semen-item-icone-circulo {
    width: 72px;
    height: 72px;
    background: #0b4f8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
}

.semen-item-icone-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.semen-item-card-titulo {
    color: #0b4f8a;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Desktop: cards com mesma altura */
@media (min-width: 992px) {
    .semen-itens-section .row > [class*="col-"] {
        display: flex;
    }

    .semen-itens-section .semen-item-card {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
