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

/* ===== VARIÁVEIS ===== */
:root {
    --azul-principal: #15499a;
    --amarelo-detalhe: #fecc08;
    --preto: #282828;
    --branco: #ffffff;
}

/* ===== CONTAINER PADRÃO ===== */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ======================= 
 ========== MENU ========= 
 =========================*/

.navbar .nav-link {
    color: var(--branco);
    font-weight: 500;
    margin-left: 20px;
}

.navbar .nav-link:hover {
    color: var(--amarelo-detalhe);
}

/* Botão WhatsApp */
.btn-whatsapp {
    background-color: var(--amarelo-detalhe);
    color: var(--preto);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
}

.btn-whatsapp:hover {
    background-color: var(--branco);
    color: var(--azul-principal);
}

/* ===== MENU PADRÃO (TOPO) ===== */
.header {
    background: transparent;
    padding: 16px 0;
    z-index: 1000;
    transition: all 0.35s ease;
}


/* ===== MENU SCROLL ===== */
.header.scrolled {
    background: rgba(21, 73, 154, 0.92); /* azul com transparência */
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* COR DOS LINKS */
.header.scrolled .nav-link {
    color: var(--branco);
}

/* Logo */
.header.scrolled .navbar-brand {
    color: var(--branco);
}

/* Botão WhatsApp no scroll */
.header.scrolled .btn-whatsapp {
    background-color: var(--amarelo-detalhe);
    color: var(--preto);
}

.header.scrolled {
    padding: 10px 0;
}


/* Logo do menu */
.navbar-brand img {
    height: 42px;          /* controla a altura */
    width: auto;           /* mantém proporção */
    max-width: 100%;
    transition: all 0.3s ease;
}

.header.scrolled .navbar-brand img {
    height: 36px;
}


/* ===== DROPDOWN PRODUTOS ===== */
.dropdown-menu {
    border: none;
    border-radius: 14px;
    padding: 10px 0;
    background-color: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    min-width: 220px;
}

/* Itens */
.dropdown-item {
    padding: 12px 22px;
    font-weight: 500;
    color: #282828;
    transition: all 0.3s ease;
}

/* Hover */
.dropdown-item:hover {
    background-color: #15499a;
    color: #ffffff;
}

/* Remove seta padrão azul feia do Bootstrap */
.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
}


@media (max-width: 992px) {
    .navbar-brand img {
        height: 34px;
    }
}


/* ===========================
   HEADER MOBILE – SEM DELAY
=========================== */

@media (max-width: 991px) {

    /* Header SEMPRE com fundo no mobile */
    .header {
        background: rgba(21, 73, 154, 0.95);
        backdrop-filter: blur(8px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        transition: none; /* remove delay */
    }

    /* Links */
    .header .nav-link {
        color: #ffffff;
    }

    /* Botão WhatsApp */
    .header .btn-whatsapp {
        background-color: var(--amarelo-detalhe);
        color: var(--preto);
    }
}

@media (max-width: 991px) {

    .navbar-collapse {
        background-color: rgba(21, 73, 154, 0.95);
        padding: 20px;
        border-radius: 0 0 20px 20px;
    }

    .dropdown-menu {
        background-color: transparent;
        box-shadow: none;
        padding-left: 15px;
    }

    .dropdown-item {
        color: #ffffff;
        padding: 10px 0;
    }

    .dropdown-item:hover {
        background: none;
        color: #fecc08;
    }
}


/* ======================= 
 ========== HERO ========= 
 =========================*/

.hero {
    position: relative;
    min-height: 100vh;
    background-image: url("../img/hero.webp"); /* imagem aqui */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

/* Overlay escuro para leitura */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(21, 73, 154, 0.75);
    z-index: 1;
}

/* Conteúdo do hero */

.hero .site-container {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.hero-content {
    max-width: 70%;
    padding-left: 30px;
    text-align: left;
    
}

/* Texto para todos*/
.hero h1 {
    color: var(--branco);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero p {
    color: var(--branco);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Botão hero */
.btn-hero {
    background-color: var(--amarelo-detalhe);
    color: var(--preto);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 40px;
}

.btn-hero:hover {
    background-color: var(--branco);
    color: var(--azul-principal);
}

/* ===== Responsivo Hero ===== */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .navbar .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}



/* ======================= 
 ===== SEÇÃO PADRÃO ===== 
 =========================*/

section {
    padding: 80px 0;
}

/* Subtítulo */
.section-subtitle {
    display: inline-block;
    color: var(--amarelo-detalhe);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Título padrão do site */
.section-title {
    color: var(--azul-principal);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

/* ===== RESPONSIVO SUBTÍTULO  ===== */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
}


/* ======================= 
 ======= QUEM SOMOS ====== 
 =========================*/

.quem-somos {
    background-color: var(--branco);
}

.quem-somos p {
    color: var(--preto);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Lista */
.quem-somos-lista {
    margin: 20px 0;
    padding-left: 20px;
}

.quem-somos-lista li {
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--preto);
}

/* ===== MOSAICO QUEM SOMOS ===== */
.mosaico-premium {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 18px;
}

/* Coluna empilhada */
.mosaico-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

/* Base das imagens */
.mosaico-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.5s ease;
}

/* Tamanhos */
.mosaico-item.grande {
    grid-row: span 1;
}

.mosaico-item.vertical {
    grid-row: span 2;
}

/* ===== HOVER PREMIUM ===== */
.mosaico-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.45) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mosaico-item:hover::after {
    opacity: 1;
}

.mosaico-item:hover {
    transform: scale(1.04);
}

/* ===== IMAGENS ===== */
.img-1 { background-image: url("../img/mosaico-1.webp"); }
.img-2 { background-image: url("../img/mosaico-2.webp"); }
.img-3 { background-image: url("../img/mosaico-3.webp"); }
.img-4 { background-image: url("../img/mosaico-4.webp"); }
.img-5 { background-image: url("../img/mosaico-5.webp"); }
.img-6 { background-image: url("../img/mosaico-6.webp"); }
.img-7 { background-image: url("../img/mosaico-7.webp"); }


/* ===== RESPONSIVO QUEM SOMOS ===== */
@media (max-width: 991px) {
    .mosaico-premium {
        grid-auto-rows: 150px;
        gap: 12px;
    }

    .mosaico-stack {
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .mosaico-premium {
        grid-auto-rows: 120px;
        gap: 10px;
    }
}


/* ======================= 
 ======== SERVIÇOS ======= 
 =========================*/

.servicos-section {
    padding: 120px 0;
    background-color: #e5eaf7;
}

.section-header {
    max-width: 700px;
    margin-bottom: 70px;
}

.section-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Grid de serviços */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.servico-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Linha decorativa hover */
.servico-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #15499a, #fecc08);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Ícone */
.servico-icon {
    font-size: 42px;
    color: #15499a;
    margin-bottom: 20px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.servico-card:hover .servico-icon {
    color: #fecc08;
    transform: scale(1.1);
}

/* Textos */
.servico-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #282828;
    margin-bottom: 15px;
}

.servico-feature {
    font-weight: 500;
    color: #444;
    margin-bottom: 10px;
}

.servico-advantage {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.servico-benefit {
    font-size: 14px;
    font-weight: 600;
    color: #15499a;
}

/*===== RESPONSIVO SERVIÇOS ======*/

@media (max-width: 992px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }
}


/* ======================= 
 ==== SESSÃO PRODUTOS ==== 
 =========================*/

.hero .site-container {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.produtos-section {
    padding: 120px 0;
    background-color: #fff;
}

.produtos-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Card */
.produto-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Linha decorativa topo (mesmo padrão serviços) */
.produto-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #15499a, #fecc08);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.produto-card:hover::before {
    transform: scaleX(1);
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Ícone */
.produto-icon {
    font-size: 48px;
    color: #15499a;
    margin-bottom: 25px;
    transition: color 0.4s ease, transform 0.4s ease;
}

.produto-card:hover .produto-icon {
    color: #fecc08;
    transform: scale(1.1);
}

/* Título */
.produto-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #282828;
    margin-bottom: 25px;
}

/* Link Ver mais */
.produto-link {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 50px;
    background-color: #fecc08;
    color: #282828;
    font-weight: 600;
    transition: all 0.3s ease;
}

.produto-card:hover .produto-link {
    background-color: #15499a;
    color: #fff;
}

/*====== Responsivo seção Produtos ======*/

@media (max-width: 992px) {
    .produtos-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 60px auto 0;
    }
}


/* ======================= 
 ==== BIG NUMBERS ==== 
 =========================*/

.big-numbers-section {
    background-color: #fecc08;
    padding: 120px 0;
}

/* Ajuste de título sobre fundo amarelo */
.section-header-dark .section-subtitle {
    color: #15499a;
}

.section-header-dark .section-title {
    color: #282828;
}

.section-header-dark .section-description {
    color: #333;
}

/* Grid */
.big-numbers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 70px;
}

/* Item */
.big-number-item {
    background: rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: all 0.4s ease;
}

.big-number-item:hover {
    background: #fff;
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Número */
.big-number {
    display: block;
    font-size: 46px;
    font-weight: 800;
    color: #15499a;
    margin-bottom: 10px;
}

/* Texto */
.big-number-item p {
    font-size: 15px;
    font-weight: 600;
    color: #282828;
}

/*====== Responsivo Big Numbers ======*/

@media (max-width: 992px) {
    .big-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .big-numbers-grid {
        grid-template-columns: 1fr;
    }

    .big-number {
        font-size: 40px;
    }
}

/* ======================= 
 ======== UNIDADES ======== 
 =========================*/

/* Grid padrão continua existindo */
.localizacao-grid {
    display: grid;
    gap: 30px;
    margin-top: 70px;
    justify-content: center;
}

/* Grid com 3 unidades */
.localizacao-grid-3 {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
}
.localizacao-card {
    background: #e5eaf7;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.localizacao-endereco {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.4;
}

.localizacao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.localizacao-img {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.localizacao-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.localizacao-card:hover .localizacao-img img {
    transform: scale(1.06);
}

.localizacao-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #15499a;
    margin-bottom: 18px;
}

.localizacao-link {
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    background-color: #fecc08;
    color: #15499a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.localizacao-card:hover .localizacao-link {
    background-color: #15499a;
    color: #fff;
}

@media (max-width: 768px) {
    .localizacao-grid-3  {
        grid-template-columns: 1fr;
    }

    .localizacao-img {
        height: 180px;
    }
}



/* ======================= 
 ======= CTA FINAL ======= 
 =========================*/

.cta-final-section {
    position: relative;
    padding: 140px 0;
    background-image: url("../img/cta-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

/* Overlay escuro para leitura */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(21, 73, 154, 0.85);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

/* Texto */
.cta-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.cta-list li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 26px;
    position: relative;
}

/* Setinha simples */
.cta-list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #fecc08;
    font-weight: 700;
}

/* Frase destaque */
.cta-highlight {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 35px;
    color: #fecc08;
}

/* Botão */
.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #fecc08;
    color: #282828;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #15499a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/*===== Responsivo CTA ======*/

@media (max-width: 768px) {
    .cta-final-section {
        padding: 100px 0;
        background-attachment: scroll;
    }

    .cta-text h2 {
        font-size: 32px;
    }
}



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



.footer {
    background: #fff;
    color: #15499a;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px 60px;
}

/* ===============================
   HEADER DO FOOTER
=================================*/

.footer-header {
    margin-bottom: 60px;
}

.footer-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--amarelo-detalhe);
    margin-bottom: 10px;
}

.footer-main-title {
    font-size: 32px;
    font-weight: 800;
    color: #15499a;
    margin: 0;
}


/* ===============================
   SEÇÕES
=================================*/

.footer-section {
    margin-bottom: 70px;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #fecc08;
    margin-bottom: 30px;
}

.footer-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #fecc08;
    opacity: 0.5;
}

/* ===============================
   CONTEÚDO
=================================*/

.footer-content p,
.footer-store p {
    margin-bottom: 8px;
    line-height: 1.1;
    color: #15499a;
}

.footer i {
    color: #fecc08;
    margin-right: 6px;
}

/* ===============================
   UNIDADES - 3 COLUNAS
=================================*/

.footer-unidades {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Cada unidade */
.footer-unidade h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--amarelo-detalhe);
    margin-bottom: 12px;
}

.footer-unidade p {
    font-size: 14px;
    line-height: 1.6;
    color: #15499a;
    margin-bottom: 6px;
}


/* Linha separadora vertical */
.footer-unidade:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.1);

}



/* ===============================
   LOGOS + REDES
=================================*/

/* ===== REDES SOCIAIS ===== */

.footer-social {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #3fa9f5;

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

    text-decoration: none;
    transition: background 0.3s ease;
}

/* Ícone */
.footer-social a i {
    font-size: 20px;
    color: #ffffff;
    line-height: 1;
    margin-right: 0;
}


/* Hover */
.footer-social a:hover {
    background-color: #fecc08;
}

.footer-social a:hover i {
    color: #ffffff;
}

/* ===============================
   LOGOS DO FOOTER
=================================*/

.footer-bottom-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(12, 12, 12, 0.2);

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

/* Container dos logos */
.footer-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Imagens dos logos */
.footer-logos img {
    max-height: 45px;
    width: auto;
    opacity: 0.85;
    transition: all 0.3s ease;
}

/* Hover suave */
.footer-logos img:hover {
    opacity: 1;
    transform: translateY(-3px);
}


/* ===============================
   COPYRIGHT
=================================*/

.footer-copy {
    text-align: center;
    padding: 20px;
    background: #111;
    font-size: 13px;
    color: #ccc;
}

/* ===============================
   RESPONSIVO
=================================*/

@media (max-width: 992px) {

    .footer-stores {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-stores .footer-store:first-child {
        border-right: none;
        padding-right: 0;
    }

    .footer-stores .footer-store:last-child {
        padding-left: 0;
    }

    .footer-store {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 20px;
    }

    .footer-store:last-child {
        border-bottom: none;
    }

   .footer-bottom-area {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logos {
        justify-content: center;
    }


    .footer-social {
        justify-content: center;
    }

}


@media (max-width: 992px) {

    .footer-unidades {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-unidade {
        border-right: none;
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 20px;
    }

    .footer-unidade:last-child {
        border-bottom: none;
    }
}


@media (max-width: 768px) {

    .footer-unidades {
        grid-template-columns: 1fr;
    }

    .footer-unidade {
        padding: 0 !important; /* remove desalinhamento */
        text-align: left; /* mantém padrão */
    }

}
/*------------------------------------- PÁGINAS --------------------------------------*/

.hero-produtos {
    position: relative;
    height: 30vh; /* metade do hero principal */
    min-height: 500px;
    background: url("../img/hero-produtos.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
}

/* Overlay escuro */
.hero-produtos .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(21, 73, 154, 0.85);
    z-index: 1;
}

.hero-produtos h1 {
     margin-top: 60px; 
}

/* ============================= 
 ======= PÁGINA PRODUTOS ======= 
 ===============================*/

.products-page {
    padding: 50px 0;
    background-color: #f8f9fb;
}


.section-title p {
    font-size: 16px;
    color: #555;
    margin-top: 0px;
}


/* Grid 5 colunas */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Card */
.product-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    transition: all 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Imagem */
.product-image {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    cursor: zoom-in;
}

.product-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

/* Texto */
.product-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--azul-principal);
    margin-bottom: 6px;
}

.product-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* ===== MODAL ===== */

/* Fundo do modal */
.modal {
    background: rgba(0, 0, 0, 0.8);
}

/* Caixa do modal */
.modal-content {
    background: #b9c8df; /* cor clara ou azul claro */
    padding: 6px;        /* borda fina */
    border-radius: 8px;
    max-width: 60%;
    all: center;
}
.modal-dialog {
    display: flex;
    align-items: center;   /* vertical */
    justify-content: center; /* horizontal */
    min-height: 100vh;
}

/* Imagem */
.modal-content img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ===== Responsivo página produtos ===== */

@media (max-width: 992px) {
    .hero-produtos {
        height: 45vh;
        min-height: 360px;
    }

    .hero-produtos h1 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .hero-produtos {
        height: auto;
        padding: 120px 0 80px;
    }

    .hero-produtos h1 {
        font-size: 28px;
    }

    .hero-produtos p {
        font-size: 15px;
    }
}

@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================== 
 ======= PÁGINA TACÓGRAFOS ======= 
 ================================*/

/* Grid 5 colunas */
.tacografos-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;
}

/* ===== TACÓGRAFO LISTA COM ÍCONE ===== */

/* Card continua centralizado */
.tacografo-card {
    text-align: center;
}

/* Lista como bloco central */
.tacografo-list {
    list-style: none;
    padding: 0;
    margin: 20px auto 0;   /* centraliza o bloco */
    max-width: 320px;      /* controla largura */
}

/* Linha alinhada à esquerda */
.tacografo-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 👈 esquerda */
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
    text-align: left;
}

/* Ícone seta */
.tacografo-list li::before {
    content: "➜";
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: #fecc08;
    color: #15499a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 12px;
    font-weight: bold;
}

/* Destaque */
.tacografo-list .highlight {
    font-weight: 600;
    color: #15499a;
}

/*Responsivo é o mesmo da página produtos pois a estrutura das imgens é a mesma*/


/* ============================= 
 ======= PÁGINAS PAINÉIS ======= 
 ===============================*/

/* Página Painéis */
.paineis-page {
    padding: 50px 0;
    background-color: #f8f9fb;
}

/* Grupo por marca */
.painel-group {
    margin-top: 70px;
}

/* Subtítulo da marca */
.painel-brand {
    position: relative;
    padding-bottom: 14px;
    font-size: 20px;
    font-weight: 700;
    color: var(--amarelo-detalhe);
    margin-bottom: 10px;

    display: flex;
    align-items: center;
    gap: 12px; /* espaço entre seta e texto */
}

.painel-brand::before {
    content: "➜";
    width: 26px;
    height: 26px;
    min-width: 26px;

    background: #fecc08;
    color: #15499a;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: bold;
}

.painel-brand::after {
    content: "";
    flex: 1;                 /* ocupa o espaço restante */
    height: 2px;
    background-color: var(--amarelo-detalhe);
    opacity: 0.6;
}

/* Texto da marca */
.painel-text {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin-bottom: 30px;
}

/* Grid mantém padrão */
.painel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
}


/*===== Responsivo Página Painéis =======*/
@media (max-width: 992px) {
    .painel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }

    .painel-brand {
        font-size: 24px;
    }
}


