@charset "utf8";
@import url(reset.css); 

/* =================================================== */
/* === 1. IMPORTAÇÕES E FONTES ===================== */
/* =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Chewy&family=Lato:wght@400;700&family=Nunito:wght@700;800&family=Poppins:wght@600;700&display=swap');

/* Variáveis de Cores (Ajuste para facilitar a manutenção) */
:root {
    --salmao: #c44569;
    --rosa-claro: #fff1ec;
    --creme-fundo: #fffaf8;
    --borda-suave: #f2b8a2;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--creme-fundo);
    -webkit-caret-color: transparent; /* Esconde o caret em navegadores Webkit */
    caret-color: transparent;
}

/* Garante que a barra apareça APENAS nos campos de digitação reais */
input, textarea, [contenteditable="true"] {
    caret-color: auto;
    -webkit-caret-color: auto;
    user-select: text;
}
.font-display {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

/* Fonte Chewy para os títulos principais */
.font-chewy {
    font-family: 'Chewy', cursive;
    font-size: 2.8rem;
    color: var(--salmao); /* Usando a variável salmão */
    line-height: 1.1; 
    white-space: normal; 
    text-align: center; 
}

/* Estilo para os subtítulos das seções */
.subtitle-ofertas {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* --- MOBILE PARA FONTES --- */
@media (max-width: 768px) {
    .font-chewy {
        font-size: 2.2rem;
    }
    .subtitle-ofertas {
        font-size: 0.95rem;
    }
}

/* =================================================== */
/* === 2. COMPONENTES GERAIS (NAVBAR, MENUS) ======== */
/* =================================================== */

/* --- Navbar Principal e Barra de Busca --- */
#mainNavbar {
    background-color: var(--rosa-claro) !important; 
    border-bottom: 2px solid var(--borda-suave);
    transition: all 0.4s ease;
    z-index: 1050;
}

/* Navbar que encolhe e ganha sombra ao rolar o mouse */
.navbar-scrolled {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Estilo do campo de input da pesquisa */
form input.form-control {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid var(--borda-suave);
}

/* Controle de texto e botões na Navbar */
.btn-text-desktop {
    display: inline-block;
}

#btnBuscaMobile {
    display: none;
}

/* --- Botões de Vidro (Menu de Categorias) --- */
.btn-glass {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333;
    border-radius: 50px; 
    padding: 8px 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;      /* Força a mãozinha de clique */
    user-select: none;    /* Impede a seleção de texto e o surgimento do cursor '|' */
    outline: none !important; /* Remove a borda de foco do navegador */
}

.btn-glass:hover {
    background-color: var(--salmao);
    color: #fff;
    transform: translateY(-2px); /* Efeito sutil de flutuar */
}

/* --- Menus Expansíveis (Caixas que abrem) --- */
.menu-box {
    transition: opacity 0.3s ease;
    margin-top: 15px;
    z-index: 1000;
    position: relative;
    background-color: #ffffff;
    border: 1px solid #eee;
    padding: 1.5rem;
    border-radius: 20px; /* Cantos mais redondos e amigáveis */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.menu-box h5 {
    color: var(--salmao);
    font-weight: 800;
    margin-bottom: 1rem;
}

.menu-box .list-group-item {
    cursor: pointer;
    border: none;
    padding: 12px 15px;
    transition: all 0.2s ease-in-out;
}

.menu-box .list-group-item:hover {
    background-color: var(--creme-fundo);
    color: var(--salmao);
}

/* --- Animação de Surgimento (Fade In) --- */
.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MOBILE PARA NAVBAR E MENUS --- */
@media (max-width: 768px) {
    #formBuscaDesktop {
        display: none; /* Esconde busca grande no celular */
    }
    #btnBuscaMobile {
        display: inline-block; /* Mostra ícone de lupa no celular */
    }
    .btn-text-desktop {
        display: none; /* Deixa apenas os ícones na barra superior */
    }
    #menu-mobile-wrapper {
        text-align: center; 
    }
    .menu-box {
        padding: 1rem;
    }
}

/* =================================================== */
/* === 3. CARROSSEL PRINCIPAL (BANNERS) ============ */
/* =================================================== */

.animated-banner-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    color: white;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    transition: opacity 1.5s ease-in-out;
}

.carousel-caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

.carousel-caption h2 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.carousel-caption p {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* IDs para controlar a troca de imagens e textos */
#banner-bg-2,
#health-banner-bg-2,
#pickup-banner-bg-2 {
    opacity: 0;
}

#text-animation-wrapper,
#health-text-wrapper,
#pickup-text-wrapper {
    transition: opacity 0.7s ease-in-out;
}

#text-animation-wrapper.fade-out,
#health-text-wrapper.fade-out,
#pickup-text-wrapper.fade-out {
    opacity: 0;
}

/* Botões customizados dos banners */
.btn-banner {
    margin-top: 1.5rem;
    display: inline-block;
    background-color: #14B8A6;
    color: white;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-banner:hover {
    background-color: #0F766E;
    transform: scale(1.05);
    color: white;
}

.btn-banner-health {
    margin-top: 1.5rem;
    display: inline-block;
    background-color: #3B82F6;
    color: white;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-banner-health:hover {
    background-color: #2563EB;
    transform: scale(1.05);
    color: white;
}

.btn-banner-pickup {
    margin-top: 1.5rem;
    display: inline-block;
    background-color: #F97316;
    color: white;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-banner-pickup:hover {
    background-color: #EA580C;
    transform: scale(1.05);
    color: white;
}

/* Controles (Setas) do Carrossel */
.fullscreen-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fullscreen-slider-container .carousel,
.fullscreen-slider-container .carousel-inner,
.fullscreen-slider-container .carousel-item {
    height: 100%;
}

.fullscreen-slider-container .carousel-control-prev,
.fullscreen-slider-container .carousel-control-next {
    width: auto;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    height: 10rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-slider-container .carousel-control-prev {
    left: 0;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.fullscreen-slider-container .carousel-control-next {
    right: 0;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

/* Estilizando as setas (ícones SVG) */
.fullscreen-slider-container .carousel-control-prev-icon,
.fullscreen-slider-container .carousel-control-next-icon {
    background-image: none;
    width: 2.5rem;
    height: 2.5rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.fullscreen-slider-container .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='15 18 9 12 15 6'%3e%3c/polyline%3e%3c/svg%3e");
}

.fullscreen-slider-container .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='9 18 15 12 9 6'%3e%3c/polyline%3e%3c/svg%3e");
}
/* --- MOBILE PARA NAVBAR E MENUS --- */ 
@media (max-width: 768px) {
    .slider {
        width: 100%; /* Ocupa a largura total para as logos terem espaço */
        height: 90px; /* Mais baixo no celular para ser discreto */
        margin: 1.5rem auto;
        border-radius: 0; /* Em telas pequenas, remover o arredondamento lateral fica mais profissional */
        border-left: none;
        border-right: none;
    }

    /* Ajuste do tamanho das logos no celular */
    .slider .slide {
        height: 90px;
        width: 130px; /* Largura menor para o "trem" correr mais rápido */
        padding: 0 10px;
    }

    .slider .slide img {
        max-height: 40px; /* Logos pequenas e elegantes */
        filter: grayscale(0%); /* No mobile, é melhor deixar colorido para facilitar a leitura rápida */
        opacity: 0.9;
    }

    /* Efeito de "fumaça" reduzido para não cobrir as logos pequenas */
    .slider::before, 
    .slider::after {
        width: 35px;
    }
}

/* =================================================== */
/* === 4. SLIDER DE LOGOS INFINITO =================== */
/* =================================================== */

.slider {
    background: white;
    /* Adicionei um arredondamento suave para combinar com os botões */
    border-radius: 20px; 
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .1);
    height: 130px; 
    margin: 4rem auto; 
    overflow: hidden;
    position: relative;
    width: 90%;
    max-width: 960px;
    border: 1px solid var(--rosa-claro);
}

/* Efeito de "Fumaça" (Fade) nas laterais - Ajustado para ser mais suave */
.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    content: "";
    height: 100%; 
    position: absolute;
    width: 100px; /* Reduzi um pouco para dar mais espaço às logos centrais */
    z-index: 2;
    top: 0;
}

.slider::before {
    left: 0;
}

.slider::after {
    right: 0;
    transform: rotateZ(180deg);
}

/* O 'slide-track' é o container que carrega todas as logos em linha */
.slider .slide-track {
    display: flex;
    width: max-content; 
    align-items: center; /* Garante que logos de alturas diferentes fiquem alinhadas */
}

/* Configuração de cada logo individual */
.slider .slide {
    height: 130px;
    width: 200px; /* Largura fixa para manter o ritmo da animação */
    display: flex;
    align-items: center;    
    justify-content: center; 
    padding: 0 25px; 
    flex-shrink: 0; 
}

.slider .slide img {
    max-width: 100%;
    max-height: 70px; /* Limite de altura para as logos não tocarem as bordas */
    object-fit: contain; 
    filter: grayscale(100%); /* Começam cinzas (visual moderno) */
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* Quando o usuário passa o mouse, a logo ganha cor */
.slider .slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* --- MOBILE PARA O SLIDER --- */
@media (max-width: 768px) {

    /* --- Carrossel Principal --- */
    .animated-banner-container {
        height: 350px;
    }
    
    .animated-banner-container .carousel-caption h2 {
        font-size: 2.5rem;
    }

    .animated-banner-container .carousel-caption p {
        font-size: 1rem;
    }
}

/* =================================================== */
/* === 5. CRONOGRAMA DE SAÚDE  == */
/* =================================================== */

/* Fundo Creme para a Seção */
.bg-cream {
    background-color: var(--creme-fundo) !important;
}

/* O Card Principal (Card Radius 30px) */
.health-card {
    border-radius: 30px !important; 
    border: 2px solid var(--salmao) !important;
    overflow: hidden;
    background-color: #ffffff;
}

/* Botões de Fase (Radius Boton 12px) */
.btn-fase {
    border: 1.5px solid #333 !important;
    background: transparent;
    color: #333;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 12px !important; 
    transition: 0.3s;
    text-transform: uppercase;
}

/* Estado Ativo do Botão de Fase */
.btn-fase.active {
    background-color: var(--salmao) !important;
    border-color: var(--salmao) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(196, 69, 105, 0.2);
}

/* Conteúdo de Informação */
.health-info-content {
    min-height: 250px; 
    text-align: left;
}

.info-block p {
    line-height: 1.5;
}

/* BOTÃO COLORIDO: QUERO VACINAR (CTA) */
.btn-salmon-cta {
    background-color: var(--salmao) !important;
    color: #ffffff !important;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 15px !important; 
    border: none;
    transition: 0.3s;
    box-shadow: 0 6px 15px rgba(196, 69, 105, 0.3) !important;
}

.btn-salmon-cta:hover {
    background-color: #a03653 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 69, 105, 0.4) !important;
}

/* Espaçamento para o texto de Dúvidas */
.doubt-text {
    margin-top: 25px !important; 
    display: block;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .health-card {
        padding: 2rem 1.5rem !important;
    }
    .btn-fase {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* =================================================== */
/* === 6. DESTAQUE (CATEGORIAS) ===================== */
/* =================================================== */

.destaque-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px;
}

.destaque-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.destaque-item:hover {
    transform: translateY(-8px);
}

.destaque-card {
    background: #ffffff;
    border-radius: 20px !important; 
    border: 1px solid #f0f0f0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.destaque-preview {
    width: 100%;
    height: 120px;
    background-color: var(--rosa-claro); 
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-text {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--salmao);
    opacity: 0.4;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.destaque-footer {
    padding: 15px;
    text-align: center;
    background-color: #ffffff;
}

.destaque-nome {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #333;
    font-size: 1rem;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .destaque-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Colunas no Celular */
        gap: 15px;
        padding: 0 10px;
    }
    
    .destaque-card {
        border-radius: 15px !important;
    }

    .destaque-preview {
        height: 90px;
    }

    .destaque-nome {
        font-size: 0.9rem;
    }
}

/* =================================================== */
/* === 7. SUPER OFERTAS  == */
/* =================================================== */

/* Barra de Filtros (Botões Pílula) */
.filter-bar-offers {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-filtro {
    background: #fff;
    border: 1.5px solid var(--borda-suave);
    color: #555;
    padding: 8px 22px;
    border-radius: 50px; /* Radius 50px */
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filtro.active, .btn-filtro:hover {
    background-color: var(--salmao);
    border-color: var(--salmao);
    color: #fff;
    box-shadow: 0 4px 12px rgba(196, 69, 105, 0.2);
}

/* Wrapper do Slider e Setas */
.shelf-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 50px; /* Espaço para as setas não ficarem em cima */
}

/* O Grid que desliza */
.shelf-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 5px;
    scrollbar-width: none;
    width: 100%;
}
.shelf-grid::-webkit-scrollbar { display: none; }

/* O Card Principal */
.offer-card {
    flex: 0 0 300px; /* Largura fixa */
    background: #ffffff;
    border-radius: 25px !important; /* Radius 25px */
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.offer-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important; }

/* Setas de Navegação */
.nav-arrow {
    background: #fff;
    border: 1px solid var(--borda-suave);
    width: 45px; height: 45px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    color: var(--salmao);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.nav-arrow:hover { background: var(--salmao); color: #fff; border-color: var(--salmao); }
.nav-arrow.prev { left: 0; }
.nav-arrow.next { right: 0; }

/* --- DETALHES INTERNOS DO CARD --- */
.sincerity-tag {
    position: absolute; top: 15px; left: 15px;
    background: rgba(0,0,0,0.7); color: #fff;
    padding: 5px 12px; border-radius: 50px;
    font-size: 0.65rem; font-weight: 800; text-transform: uppercase; z-index: 5;
}

.offer-image {
    width: 100%; height: 200px;
    background-color: #f9f9f9;
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid #f0f0f0;
}
.placeholder-img { color: #ccc; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; }

.offer-details { padding: 25px; text-align: left; flex-grow: 1; display: flex; flex-direction: column; }

.product-category { color: var(--salmao); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; display: block; margin-bottom: 5px;}
.product-name { font-size: 1.1rem; font-weight: 700; color: #333; margin: 0 0 15px 0; line-height: 1.3; }

.price-container { margin-bottom: 15px; }
.old-price { text-decoration: line-through; color: #bbb; font-size: 0.9rem; display: block; }
.current-price { color: var(--salmao); display: flex; align-items: baseline; }
.currency { font-size: 1rem; font-weight: 800; margin-right: 4px; }
.value { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.decimals { font-size: 1rem; font-weight: 800; }

/* Barra de Estoque */
.stock-status { margin-bottom: 20px; }
.stock-bar-container {
    width: 100%; height: 8px; background: #f0f0f0;
    border-radius: 50px; overflow: hidden; margin-bottom: 8px;
}
.stock-bar-fill { height: 100%; background: var(--salmao); border-radius: 50px; }
.stock-text { font-size: 0.75rem; color: #888; font-weight: 700; }

/* Botão de Compra */
.btn-buy-now {
    background-color: var(--salmao); color: #fff !important;
    text-decoration: none; display: block; text-align: center;
    padding: 15px; border-radius: 15px !important;
    font-weight: 800; transition: 0.3s; margin-top: auto;
}
.btn-buy-now:hover { background-color: #a03653; transform: translateY(-3px); }

/* --- REAJUSTE MOBILE --- */
@media (max-width: 768px) {
    .shelf-slider-wrapper { padding: 0; }
    .nav-arrow { display: none; }
    .offer-card { flex: 0 0 260px; border-radius: 20px !important; }
    .offer-details { padding: 20px; }
    .value { font-size: 1.8rem; }
}

/* =================================================== */
/* === 8. BANNER DO APP (CONCEITO SINCRONIA) ======= */
/* =================================================== */

.app-section {
    background-color: var(--creme-fundo);
}

/* O Card (Radius 30px para combinar com o Cronograma) */
.app-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--rosa-claro) 100%);
    border-radius: 30px !important;
    border: 1px solid var(--borda-suave);
    overflow: hidden;
}

.app-badge {
    background-color: var(--salmao);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-description {
    font-family: 'Nunito', sans-serif;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Botões das Lojas */
.app-stores-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.store-link img {
    height: 40px; /* Tamanho padronizado para as duas lojas */
    width: auto;
    transition: transform 0.3s ease;
}

.store-link:hover img {
    transform: translateY(-3px) scale(1.02);
}

/* QR Code */
.qr-code-wrapper {
    display: inline-block;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
}

.qr-placeholder {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 15px;
}

/* --- AJUSTE MOBILE --- */
@media (max-width: 768px) {
    .app-card {
        border-radius: 20px !important;
    }
    
    .app-stores-wrapper {
        flex-direction: row; /* Mantém lado a lado se couber */
        flex-wrap: wrap;
        justify-content: center;
    }

    .store-link img {
        height: 35px;
    }

    .qr-code-wrapper {
        display: none;
    }
}

/* =================================================== */
/* === 10. SERVIÇOS EXPRESS (STYLING PROFISSIONAL) == */
/* =================================================== */

.service-card {
    background: #ffffff;
    border-radius: 30px !important; /* Radius consistente */
    border: 1px solid #f0f0f0;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06) !important;
}

.service-icon-bg {
    width: 80px;
    height: 80px;
    background-color: var(--rosa-claro);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-body h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    font-size: 0.9rem;
    color: #666;
}

.service-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    color: var(--salmao);
}

.btn-agendar {
    background-color: var(--salmao);
    color: #fff !important;
    text-decoration: none;
    padding: 12px;
    border-radius: 15px;
    font-weight: 800;
    display: block;
    margin-top: auto;
    transition: 0.3s;
}

.btn-agendar:hover {
    background-color: #a03653;
}

/* =================================================== */
/* === 12. CONTATO E LOCALIZAÇÃO (STYLING) ========== */
/* =================================================== */

.map-wrapper {
    border-radius: 30px !important;
    height: 450px;
    border: 1px solid #f0f0f0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--rosa-claro);
    color: var(--salmao);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hours-card {
    background-color: #fff;
    border-radius: 20px !important;
    border: 1.5px solid var(--rosa-claro);
}

.quiet-hours {
    background-color: #f8f9fa;
    border: 1px dashed var(--salmao);
    color: #555;
    font-size: 0.85rem;
}

.btn-rota {
    display: inline-block;
    background-color: var(--salmao);
    color: #fff !important;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    transition: 0.3s;
}

.btn-rota:hover {
    background-color: #a03653;
    transform: translateY(-2px);
}

/* --- REAJUSTE MOBILE: CONTATO --- */
@media (max-width: 768px) {
    .map-wrapper {
        height: 300px;
        margin-top: 20px;
    }
    
    .hours-card {
        padding: 20px;
    }
}

/* =================================================== */
/* === CENTRAL DE SOLUÇÕES (UI DE APLICATIVO) ======= */
/* =================================================== */

.solution-link {
    text-decoration: none !important;
    display: block;
}

.solution-card {
    background: #fff;
    border-radius: 30px !important;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(196, 69, 105, 0.1) !important;
    border-color: var(--salmao);
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
}

/* Cores de Fundo Suaves */
.bg-soft-blue { background-color: #e3f2fd; color: #2196f3; }
.bg-soft-salmon { background-color: var(--rosa-claro); color: var(--salmao); }
.bg-soft-yellow { background-color: #fffde7; color: #fbc02d; }
.bg-soft-green { background-color: #e8f5e9; color: #4caf50; }

.solution-card h6 {
    color: #333;
    font-weight: 800;
    margin-bottom: 2px;
}

.solution-card small {
    color: #999;
    font-size: 0.75rem;
}

/* Box da Vizinhança (Marketing Local) */
.neighborhood-box {
    background-color: var(--salmao);
    color: #fff;
    border-radius: 30px;
}

.btn-check-neighborhood {
    background: #fff;
    color: var(--salmao) !important;
    padding: 10px 25px;
    border-radius: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s;
}

.pulse-icon {
    font-size: 1.5rem;
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
    0% { transform: scale(0.95); opacity: 0.7; }
    70% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

/* =================================================== */
/* === ESTILOS DO RODAPÉ (FOOTER) =============== */
/* =================================================== */

/* --- Estrutura Principal --- */
.footer-container {
    background-color: var(--rosa-claro); 
    color: #555;
    border-top: 3px solid var(--borda-suave); /* #f2b8a2 */
    padding: 4rem 0 2rem;
}

/* --- Seção da Newsletter --- */
.newsletter-section .font-display {
    color: #333;
    font-size: 2.2rem;
}

.newsletter-section .black-friday-text {
    color: var(--salmao); /* #c44569 */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Botões de Interesse (Cachorro, Gato...) */
.interest-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.btn-interest {
    background-color: #fff;
    border: 1px solid var(--borda-suave);
    color: var(--salmao);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-interest:hover,
.btn-interest:focus {
    background-color: var(--salmao);
    color: #fff;
    border-color: var(--salmao);
    box-shadow: none;
}

/* Botão de Enviar Newsletter */
.btn-newsletter-submit {
    background-color: #dc3545; 
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    transition: all 0.2s ease;
}

.btn-newsletter-submit:hover {
    background-color: #bb2d3b;
    transform: scale(1.03);
}

/* --- Seção de Links e Contato --- */
.footer-divider {
    border-top: 1px solid var(--borda-suave);
    opacity: 0.6;
    margin: 3rem 0;
}

.footer-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: var(--salmao);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: #555;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--salmao);
    padding-left: 4px; 
}

/* Atendimento */
.footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--salmao);
    font-size: 1.2rem;
}

.footer-contact a {
    text-decoration: none;
    color: #555;
}

/* Pagamento e Social */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-icons img {
    height: 30px;
    border-radius: 4px;
    background: white;
    padding: 2px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    text-decoration: none;
    color: #fff;
    background-color: var(--salmao);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #333;
    transform: rotate(15deg) scale(1.1);
}

/* --- Barra Inferior (Sub-Rodapé) --- */
.sub-footer {
    background-color: rgba(0,0,0,0.03);
    padding: 1.5rem 0;
    text-align: center;
}

.sub-footer p {
    margin: 0;
    font-size: 0.8rem;
    color: #777;
}

.sub-footer i {
    color: #dc3545; 
}

/* --- Ajustes Responsivos do Rodapé --- */
@media (max-width: 768px) { 
    .newsletter-section .font-display {
        font-size: 1.8rem;
    }
    
    .footer-container .col-lg-3 {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-contact li,
    .payment-icons,
    .social-icons {
        justify-content: center;
    }
}

/* =================================================== */
/* === SEÇÃO LOGIN E CADASTRO - COMPLETO =========== */
/* =================================================== */

/* --- LOGIN & CADASTRO --- */

.text-salmon { color: #c44569 !important; }
.link-salmon { color: #c44569 !important; text-decoration: none; }
.link-salmon:hover { text-decoration: underline; color: #a03653 !important; }

.card-login-custom {
    max-width: 460px;
    width: 100%;
    border-radius: 30px;
}

/* Espaçamento do botão entrar */
.btn-entrar-margin {
    margin-top: 35px;
    background-color: #c44569;
    border: none;
    color: white;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 12px;
}

.btn-entrar-margin:hover { background-color: #a03653; }

.btn-outline-salmon {
    border: 2px solid #c44569 !important;
    color: #c44569 !important;
    font-weight: 800;
    border-radius: 12px;
}

.btn-outline-salmon:hover {
    background-color: #c44569 !important;
    color: #fff !important;
}

/* Estilo dos campos */
.input-line {
    border: none !important;
    border-bottom: 2px solid #eee !important;
    border-radius: 0 !important;
}

.input-line:focus {
    border-color: #c44569 !important;
    box-shadow: none !important;
}

/* Ícone de Ver Senha */
.password-container { position: relative; }

.password-toggle {
    position: absolute;
    right: 12px;
    top: 32px;
    cursor: pointer;
    color: #999;
    font-size: 1.2rem;
}

.password-toggle-cad {
    position: absolute;
    right: 12px;
    top: 38px;
    cursor: pointer;
    color: #999;
}

/* Detalhes de Cadastro */
.label-cadastro {
    font-size: 0.75rem;
    font-weight: bold;
    color: #6c757d;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.progress-senha { height: 6px; border-radius: 10px; background-color: #e9ecef; }
.dica-seguranca { font-size: 0.65rem; color: #888; }
.box-cadastro-radius { border-radius: 20px; }
.btn-finalizar { border-radius: 12px; }

/* --- TELA DE BUSCA SEM PRODUTOS --- */
/* --- TELA DE BUSCA (ESTILO VIDRO TRANSPARENTE) --- */

.search-page-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Aqui colocamos a cor de fundo que mistura com a foto (Pêssego/Creme) */
    background-color: #f9e9e4; 
    padding: 20px;
}

.search-glass-card {
    /* Efeito Transparente (Glassmorphism) */
    background: rgba(255, 255, 255, 0.3); /* Transparência */
    backdrop-filter: blur(15px);          /* O "embaçado" que mistura o fundo */
    -webkit-backdrop-filter: blur(15px);
    
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 60px 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
}

/* Título Grande */
.search-glass-card h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

/* Espaçamento e Estilo do Termo Buscado */
.search-result-area {
    margin-top: 40px; /* Dá o espaço que você pediu */
}

.text-label {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 15px;
}

.search-term {
    font-size: 3rem;
    font-weight: 800;
    color: var(--salmao);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

/* Botão Salmão */
.btn-salmon {
    background-color: #c44569;
    color: white !important;
    border: none;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(196, 69, 105, 0.2);
}

.btn-salmon:hover {
    background-color: #a03653;
    transform: translateY(-3px);
}