:root {
    --cor-principal: #F8682D;
    --cor-principal-hover: #db521b;

    --cor-secundaria: #1A2A4B;
    --cor-texto: #0E3248;

    --cor-redes: #FA9921;
    --nav-link-default: #DCE2E5;
    --nav-link-active: #2D6283;

    --fonte-principal: 'Roboto', sans-serif;
    --espacamento-padrao: 1rem;

    --titulo-hero-size: 4.5rem;
    --titulo-section-size: 2.2rem;
    --subtitulo-hero-size: 1.5rem;
    --btn-action-hero-width: 26.25rem;
    --btn-action-hero-height: 2.5rem;


    --fundo-neutro: #f6f6f6;
    --card-fundo: #FFFFFF;
    --card-sombra: 0 6px 12px rgba(0, 0, 0, 0.1);
    --card-sombra-hover: 0 12px 24px rgba(0, 0, 0, 0.15);

    --fundo-secao: #F18F37;
    --fundo-secao-azul: #1A2A4B;

    --minipet-orange: #FF6600;
    /* Laranja principal para botões e detalhes */
    --minipet-dark-blue: #213B63;
    /* Azul escuro para seções de fundo */
    --minipet-light-orange-bg: #FFE5CC;
    /* Laranja claro para fundos de cards */
    --minipet-text-gray: #343a3fff;
    /* Cinza para textos secundários */
    --minipet-light-gray-bg: #F8F9FA;
    /* Fundo leve para o formulário */
}

/* Estilos Globais e Reset */
body,
button,
input,
select,
textarea {
    font-family: var(--fonte-principal);
    color: var(--cor-texto);
}

p {
    color: var(--cor-texto);
    line-height: 1.8;
}


.servicos h3{
    color: var(--cor-secundaria);
}


#quem-somos-section h2 {
    color: #C24F20;
    background-color: #FEEAE2;
    padding: 0.625rem 0.9375rem;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-size: var(--titulo-section-size);
}

/* Bloco #1: Seção de Destaque (Hero Section) - REVISADO */
.destaque-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 80vh;
    background: var(--fundo-neutro);
    overflow: hidden;
    padding: 3rem;
}

.destaque-top a {
    color: #F2F2F2 !important;
}

.bloco-destaque {
    max-width: 75%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 3%;
    text-align: left;
    z-index: 2;
    padding: 0 1rem;
}

.animais_top {
    position: absolute;
    right: -15%;
    width: 60%;
    bottom: 0;
    object-fit: contain;
    z-index: 1;
}

.titulo_destaque {
    color: var(--cor-principal);
    font-size: var(--titulo-hero-size);
    font-weight: bold;
    text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.41);
    line-height: 1.1;
}

.subtitulo_destaque {
    /* Novo seletor */
    font-size: var(--subtitulo-hero-size);
    color: var(--cor-texto);
    font-weight: bold;
}

/* Botão de ação PRINCIPAL (customizado) */
.btn-action-custom {
    background: var(--cor-principal);
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    height: var(--btn-action-hero-height);
    width: var(--btn-action-hero-width);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    text-decoration: none;
}

.btn-action-custom:hover {
    background: var(--cor-principal-hover);
    transform: translateY(-2px);
}

.btn-action-custom-2 {
    background: var(--card-fundo);
    color: var(--cor-secundaria);
    border: 1px solid var(--cor-secundaria);
    border-radius: 0.5rem;
    height: var(--btn-action-hero-height);
    width: var(--btn-action-hero-width);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    text-decoration: none;
}

.btn-action-custom-2:hover {
    transform: translateY(-2px);
}

.btn-action-custom i {
    margin-right: 0.5rem;
}


/* Bloco #2: Wrapper dos Cards  */
.wrapper-cards {
    position: relative;
    padding-top: 150px;
    margin-bottom: 0rem;
}

.container-card-destaque {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    position: absolute;
    left: 0;
    right: 0;
    top: -100px;
    z-index: 10;
    padding: 0 1rem;
}

.card-produto {
    width: 11.25rem !important;
    height: 190px !important;
    margin: 0 8px;
    background-color: var(--card-fundo);
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    background-image: url('../assets/padrao_fundo.png');
    background-repeat: repeat-x;
    background-size: 7.5rem;
    box-shadow: var(--card-sombra);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

#main .slick-track {

    padding: 8px !important;
}


.img-wrapper {
    height: 8.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    cursor: pointer;
    flex-shrink: 0;
}

.img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.nome-produto {
    padding: 0.625rem;
    font-size: 0.8125rem;
    font-weight: bold;
    color: #003366;
    background: var(--card-fundo);
    border-top: 1px solid #ddd;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bloco #3: Quem Somos */
#quem-somos-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.quem-somos-img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.quem-somos-text-content {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 600px;
}


/* bloco #4 Porque ter */

#porque-ter {
    background: var(--fundo-secao);
    position: relative;
}

.porque-ter-text {
    color: #ffffff;
    padding: 0 16px;
}

.porque-ter-img {
    position: absolute;
    width: 475px;
    bottom: 0;
}

.destaque-azul {
    background: var(--fundo-secao-azul);
    color: var(--fundo-neutro);
    border-radius: 52px;
    padding: 32px;
}

.box-vantagem {
    background-color: #1A4A63;
    color: white;
    border-radius: 32px;
}

.box-vantagem p {
    color: white;
    line-height: normal;
}

.box-vantagem:hover {
    transform: translateY(-5px);
}


/* Navegação (header) - Mantido */
.logo_minipet {
    width: 8rem;
    padding: 6px;
    margin-left: 8px;
}

.container-redes {
    display: flex;
    gap: 0.5rem;
    padding: 0.25rem;
}

.container-redes .redes_sociais {
    width: 1.875rem;
    background: var(--cor-redes);
    color: #ffffff;
    padding: .5rem;
    border-radius: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.container-nav {
    display: flex;
    margin: 0 5%;
    justify-content: space-between;
}

#navbarNav a.nav-link {
    color: var(--nav-link-active);
    margin: 0 0.25rem;

}

.active-mini::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--cor-principal);
    margin-top: 0.25rem;
}

.nav-mini::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--nav-link-default);
    margin-top: 0.25rem;
}


/* Marcas */

#marcas {
    background: #F2F2F2;
}

.wrapper-marcas-logo {
    background: #ffffff;
    border-radius: 16px;
    margin: 16px;
    width: 150px;
    height: 150px !important;
    display: flex !important;
    ;
    justify-content: center;
    align-items: center;

}

.img-marcas {

    padding: 16px;
    border-radius: 16px;
    width: 150px;
}


.action-cat:hover {

    transform: translateY(-2px);
}

.card-produto_cat {
    width: 11.25rem !important;
    height: auto !important;
    margin: 0 8px;
    background-color: var(--card-fundo);
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    background-image: url('../assets/padrao_fundo.png');
    background-repeat: repeat-x;
    background-size: 7.5rem;
    box-shadow: var(--card-sombra);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.nome_produto_cat {
    display: block;
    text-align: center;
    color: var(--cor-texto);
    width: 100%;
    margin: 0 auto;
    font-size: .8rem;
    margin-bottom: 35%;
    font-weight: 500;
}

.saiba_mais_cat {
    color: #C24F20;
    display: block;
    text-align: center;
}

.position-btn-cat {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.page-item.active .page-link {
    background-color: #f87846 !important;
    border-color: #f87846 !important;
}

.form-check-input:checked {
    background-color: #f87846 !important;
    border-color: #f87846 !important;
}

/*
Licenciados 
*/

.sobre-nos-page h2,
.header-section-licenciados h2 {

    display: block !important;
    color: #F8682D;
    background-color: #FEEAE2;
    padding: 0.625rem 0.9375rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-size: var(--titulo-section-size);
    margin: 0 auto;
    text-align: center;

}

.quem-somos-sub{
text-align: justify;
color: var(--cor-texto);
   

}

.header-section-licenciados p {
    text-align: center;
    margin: 8px 0;
    font-size: 1.2rem;
}

.wrapper-hero {
    position: relative;
}

.wrapper-hero img {
    position: absolute;
    left: 5%;
    bottom: -80px;
    max-width: 435px;
}


.wrapper-hero p {
    color: #ffffff !important;
    font-weight: 500 !important;
    font-size: 1.1rem;
}


/* Classes utilitárias de cores e fundos */
.bg-minipet-dark-blue {
    background-color: var(--minipet-dark-blue) !important;
    margin-top: 32px;
}

.bg-minipet-light-orange-bg {
    background-color: var(--minipet-light-orange-bg) !important;
}

.text-minipet-orange {
    color: var(--cor-secundaria) !important;
}

.text-minipet-text-gray {
    color: var(--minipet-text-gray) !important;
}

/* Estilo para botões primários (laranja) */
.btn-minipet-orange {
    background-color: var(--minipet-orange);
    border-color: var(--minipet-orange);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-minipet-orange:hover {
    background-color: #E65C00;
    /* Um tom ligeiramente mais escuro no hover */
    border-color: #E65C00;
    color: white;
}

/* Estilo para cards/elementos com cantos arredondados e sombra */
.card-minipet {
    border-radius: 1rem;
    /* Cantos mais arredondados */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    /* Sombra suave */
    border: none;
    overflow: hidden;
    /* Garante que a imagem dentro do card respeite o border-radius */
}

/* Estilo para ícones de destaque */
.feature-icon {
    font-size: 3rem !important;
    /* Tamanho maior para os ícones */
    color: var(--minipet-orange);
    margin-bottom: 1rem;
}


/* Ajustes para listas com ícones Font Awesome (fa-ul) */
.list-unstyled.fa-ul li {
    margin: 0.75rem;
    font-size: 1.3rem;
}


.licenciamento-box {
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.licenciamento-box h4 {
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
    background: #dce2e541;
    width: 50%;
    margin: 0 auto;
    margin-bottom: 5%;
    padding: 8px;
    border-radius: 8px;
}

.licenciamento-box ul {
    list-style: none;
    padding-left: 0;
}

.licenciamento-box li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.licenciamento-box li .fa {
    color: #ffffff;
    margin-right: 10px;
}

.pet-image {
    position: absolute;
    bottom: -80px;
    right: 0;
    max-width: 400px;
}

.img-cao-pc{
       max-width: 400px;
}

  .btn-seja-licenciado:hover{
       color: #DCE2E5;
   }

@media (max-width: 768px) {
    .pet-image {
        position: static;
        display: block;
        margin: 1rem auto 0;
        width: 100%;
    }

    .img-cao-pc{
         width: 100%;
    }

    .licenciamento-box h4 {
        width: 100%;
    }

    .btn-seja-licenciado{
        margin-bottom: 16px
    }



}



.list-unstyled.fa-ul .fa-li {
    width: 1.5em;
    /* Ajusta o espaçamento do ícone */
    line-height: inherit;
    /* Herda o line-height do pai */
}

/* Espaçamento geral para seções */
.section-spacing {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Estilo para inputs do formulário */
.form-control-lg {
    padding: 0.75rem 1.25rem;
    font-size: 1.1rem;
    border-radius: 0.5rem;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Ajustes para imagens dentro de seções */
.section-image {
    border-radius: 1rem;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

/* Responsividade para títulos */
.display-5 {
    font-size: calc(1.425rem + 2.1vw);
}

.display-6 {
    font-size: calc(1.325rem + 1.8vw);
}


/* Media Queries - REVISADO */
@media (max-width: 991.98px) {

    /* Tablets e celulares */
    /* Hero Section */
    .destaque-top {
        flex-direction: column;
        /* Empilha conteúdo em telas menores */
        justify-content: flex-start;
        /* Alinha o texto no topo */
        padding-top: 3rem;
        /* Espaçamento superior */
        min-height: auto;
        /* Permite que a altura se ajuste */
    }

    .bloco-destaque {
        max-width: 90%;
        /* Aumenta a largura em telas menores */
        margin: 0 auto 2rem auto;
        /* Centraliza e adiciona margem inferior */
        text-align: center;
        /* Centraliza o texto em telas menores */
    }

    .titulo_destaque {
        font-size: 3rem;
    }

    .subtitulo_destaque {
        font-size: 1.2rem;
    }

    .animais_top {
        position: absolute;
        right: auto;
        width: 100%;
        margin-top: 2rem;
        bottom: -10%;
        opacity: .2 !important;
    }

    .btn-action-custom {
        width: 100%;
        max-width: 300px;
        height: 2.2rem;
        font-size: 0.9rem;
    }

    .btn-action-custom-2 {
        width: 100% !important;
        max-width: 300px;
        height: 2.2rem;
        font-size: 0.9rem;
        margin: 5% 0;
    }


    .container-card-destaque {
        position: relative;
        top: 0;
        padding-top: 2rem;
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .wrapper-cards {
        padding-top: 2rem;
        margin-bottom: 2rem;
    }

    .card-produto {
        width: calc(50% - 1rem);
        max-width: 180px;
    }

    .card-produto_cat {
        width: 80% !important;
        margin: 0 auto;
    }

    /* Quem Somos Section */
    #quem-somos-section .row .order-md-1 {
        order: 2 !important;
    }

    #quem-somos-section .row .order-md-2 {
        order: 1 !important;
    }

    .quem-somos-img {
        max-width: 70%;
        margin-top: 2rem;
    }

    #quem-somos-section h2 {
        font-size: 1.8rem;
    }

    .quem-somos-text-content {
        font-size: 1.1rem;
    }

    .porque-ter-img {
        position: relative;
    }

    .wrapper-hero img {
        position: inherit;
        max-width: 100%;
    }

    .section-spacing {
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
    }
}



/*Viabilizar*/

#Viabilizar-section h2 {

    color: #1A2A4B;
    background-color: #2d628357;
    padding: 0.625rem 0.9375rem;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-size: var(--titulo-section-size);

}

/* Gostou do nosso projeto? */

.gostou_projeto {
    background: var(--fundo-secao-azul);
    color: #ffffff;
    position: relative;
}

.wrapper-gostou_projeto {
    position: relative;
}

.gostou_projeto img {
    position: absolute;
    bottom: -120px;
    left: 0;
}

.gostou_projeto p {
    color: #ffffff;
}

.section-contato h2,
.cat-filter h2 {

    display: block !important;
    color: #F8682D;
    background-color: #FEEAE2;
    padding: 0.625rem 0.9375rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-size: var(--titulo-section-size);
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 767.98px) {
    .bloco-destaque {
        max-width: 95%;
    }

    .titulo_destaque {
        font-size: 2.5rem;
    }

    .subtitulo_destaque {
        font-size: 1rem;
    }

    .animais_top {
        width: 90%;
    }

    .card-produto {
        width: 100%;
        max-width: 250px;
    }

    .gostou_projeto img {
        position: sticky;
    }

}

/* Mapa */

.img-lojas-ponto {
    max-width: 100px;
    border-radius: 16px;
    margin: 0 auto;
}

.section-mapa {
    text-align: center;
    margin-top: 16px;
}

.section-mapa h2 {

    color: #C24F20;
    background-color: #FEEAE2;
    padding: 0.625rem 0.9375rem;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-size: var(--titulo-section-size);

}

#map {
    height: 80vh;
    border-radius: 16px;
}

.popup-content img {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-bottom: 8px;
    border-radius: 8px;
    text-align: center;
}

.popup-content {
    font-family: Arial, sans-serif;
}


/* contato */

.section-contato {
    color: var(--cor-texto);
}


/* Botão Voltar ao Topo  */

#btnTopo {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #f8b79e;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 18px;
    transition: opacity 0.3s;
}

#btnTopo:hover {
    background-color: #db521b;
}