:root {
    /* --- PALETA DE CORES: EMPÓRIO FARMA --- */
    /* Baseada no Manual da Marca - Página 6 */

    /* Vermelho (Destaque/Ação/Emergência) */
    --primary-color: #EC1C24;
    --primary-dark: #b0151b;

    /* Azul Midnight (Institucional/Confiança/Tfopo) */
    --secondary-color: #114B5F;
    --secondary-hover: #0d3847;

    /* Azul Picton (Detalhes) */
    --accent-blue: #4EA5D9;

    /* Isabelline (Fundo Claro/Suave) */
    --background-light: #F2EFEA;
    --background-white: #ffffff;

    /* Textos */
    --text-dark: #114B5F;
    /* Títulos em Azul Escuro ficam elegantes */
    --text-light: #ffffff;
    --text-gray: #555555;

    /* Tipografia */
    --font-family: "Sora", sans-serif;
    --header-height: 80px;

    /* Formas */
    --radius-card: 8px;
    --radius-btn: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: var(--font-family);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

/* =========================================
   HEADER & NAVEGAÇÃO
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    height: var(--header-height);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    z-index: 1000;
    background-color: white;
    border-bottom: 3px solid var(--accent-blue);
    /* Azul Midnight */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .logo {
        width: 180px;
        height: auto;
    }
}

header nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
    animation: slideInFromFarRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

nav a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

nav a:not(.whatsapp-link):hover {
    color: var(--accent-blue);
}

nav a:not(.whatsapp-link)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 0;
    background-color: var(--accent-blue);
    transition: width 0.3s ease;
}

nav a:not(.whatsapp-link):hover::after {
    width: 100%;
}

/* BOTÃO WHATSAPP NO HEADER */
.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light) !important;
    background-color: #25D366;
    padding: 10px 22px;
    border-radius: var(--radius-btn);
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.whatsapp-link i {
    font-size: 2rem;
}

.whatsapp-link:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.menu-toggle span {
    height: 3px;
    width: 28px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: 0.4s;
}

section[id] {
    scroll-margin-top: var(--header-height);
}

/* =========================================
   HERO SECTION (TOPO)
   ========================================= */
.hero-section {
    min-height: 90vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 5%;
    color: var(--text-light);
    position: relative;
    background-color: var(--secondary-color);
    margin-top: 0 !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Gradiente com as cores da marca + Imagem de fundo */
    background-image: linear-gradient(to right,
            rgba(17, 75, 95, 0.9) 0%,
            rgba(17, 75, 95, 0.6) 50%,
            rgba(236, 28, 36, 0.3) 100%),
        url('background-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-background-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-light);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
    margin-top: -50px;
}

.hero-content h1 {
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--background-white);
}

.hero-content p {
    font-size: clamp(1rem, 1vw, 1.2rem);
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 300;
    max-width: 600px;
}

/* --- BOTÕES PADRÃO --- */
.btn {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 14px 35px;
    border-radius: var(--radius-btn);
    border: none;
    color: white;
    background-color: var(--primary-color);
    /* Vermelho para CTA */
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Animações Hero */
.hero-content>* {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content p {
    animation-delay: 0.4s;
}

.hero-content .btn {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   ESTILOS GERAIS DE SEÇÃO
   ========================================= */
.services-section,
.promo-section,
.testimonials-section,
.about-us-section,
.purpose-section,
.tips-section,
.address-section,
.contact-section {
    padding: 80px 5%;
    margin-bottom: 0;
    text-align: center;
    background-image: linear-gradient(to right,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.9) 0%), url('background-02.png')
}

.services-section p,
.about-us-section p,
.purpose-section p,
.contact-section p,
.purpose-section p {
    margin-bottom: 30px;

}

h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    /* Azul Escuro */
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--text-gray);
    margin-bottom: 60px;
    font-size: 1.1rem;
    font-weight: 400;
}

/* =========================================
   CARDS DE SERVIÇOS
   ========================================= */
.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.service-card {
    background: white;
    border-radius: var(--radius-card);
    width: 100%;
    max-width: 340px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(17, 75, 95, 0.15);
    /* Sombra azulada */
}

.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.05);
}

.card-header-color {
    height: 4px;
    background-color: var(--accent-blue);
    /* Linha vermelha no topo do card */
    width: 100%;
}

.service-card-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    flex: 1;
    line-height: 1.6;
}

.btn-card {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    padding: 10px 30px;
    border-radius: var(--radius-btn);
    transition: 0.3s;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.btn-card:hover {
    background-color: var(--primary-color);
    color: white;
}

/* =========================================
   SOBRE NÓS
   ========================================= */
.about-us-section {
    display: flex;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.about-us-content {
    flex: 1;
}

.subtitle-about {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
}

.about-us-image-container {
    flex: 1;
}

.about-us-image {
    width: 80%;
    height: auto;
    border-radius: var(--radius-card);
    box-shadow: 3px 3px 3px 3px;
    object-fit: cover;
    /* Detalhe azul */
}

.purpose-cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.purpose-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--background-white);
    padding: 50px 30px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.purpose-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 25px;
}

.purpose-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* =========================================
   ENDEREÇO
   ========================================= */
.address-unit a {
    font-size: 1.1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 20px 0;
    transition: color 0.3s;
}

.address-unit a:hover {
    color: var(--accent-blue);
}

.address-unit a i {
    color: var(--primary-color);
    margin-right: 10px;
}

.map-container {
    max-width: 900px;
    height: 400px;
    margin: 0 auto;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    display: block;
}

.hours-container {
    background-color: #fff;
    padding: 25px;
    border-radius: var(--radius-card);
    margin: 30px auto 10px auto;
    max-width: 500px;
    border-bottom: 2px solid var(--accent-blue);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
    color: var(--text-dark);
}

/* =========================================
   CONTATO
   ========================================= */
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-card);
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.contact-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}


.contact-card i {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-card .btn {
    width: 100%;
    border-radius: 14px;
}

/* =========================================
   FOOTER & SOCIAL
   ========================================= */
.social-bar {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.social-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    color: white;
    font-size: 35px;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-color: #25D366;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

footer {
    background-color: var(--secondary-hover);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 100px 20px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

/* =========================================
   PÁGINAS JURÍDICAS (UPGRADE VISUAL)
   ========================================= */

.legal-content {
    max-width: 900px;
    margin: 140px auto 80px auto;
    /* Espaço para o header fixo */
    padding: 60px;
    background-color: #ffffff;
    /* Fundo branco cartão */
    border-radius: var(--radius-card);
    box-shadow: 0 15px 40px rgba(17, 75, 95, 0.08);
    /* Sombra suave azulada */
    border-top: 5px solid var(--secondary-color);
    /* Detalhe da marca no topo */
}

.legal-content h1 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    /* Azul Midnight */
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.legal-content #data-atualizacao {
    color: var(--primary-color);
    /* Vermelho */
    font-weight: 700;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    /* Linha divisória sutil */
    position: relative;
}

/* Detalhe vermelho abaixo do H2 (Identidade Visual) */
.legal-content h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    /* Leitura mais confortável */
    color: #4a4a4a;
    font-size: 1.05rem;
    text-align: left;
    /* Justificado na web pode criar buracos no mobile, left é mais seguro */
}

.legal-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #4a4a4a;
    position: relative;
    padding-left: 15px;
}

/* Bullet points personalizados com a cor da marca */
.legal-content li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: -15px;
    top: -2px;
}

/* Boxes de Alerta e Contexto */
.alert-box {
    background-color: #fff8f8;
    /* Fundo avermelhado muito suave */
    color: #a82832;
    /* Texto vermelho escuro */
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    margin: 35px 0;
    border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
    font-size: 0.95rem;
}

.legal-box {
    background-color: #f4f8fa;
    /* Fundo azulado muito suave */
    color: var(--secondary-color);
    padding: 25px;
    border-left: 4px solid var(--secondary-color);
    margin: 35px 0;
    border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
    font-size: 0.95rem;
}

.legal-content a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* =========================================
   DEPOIMENTOS (NOVO)
   ========================================= */


.testimonials-section h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--radius-card);
    padding: 40px 25px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 4px solid transparent;
    /* Preparação para hover */
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(17, 75, 95, 0.1);
    border-top: 4px solid var(--primary-color);
}

.testimonial-img-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 1px;
    position: relative;
}

.testimonial-img {
    width: 70%;
    height: 70%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--accent-blue);
    /* Borda azul clara */
    padding: 3px;
    background-color: white;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    /* Azul escuro */
    margin-bottom: 5px;
    text-transform: capitalize;
}

.stars {
    color: #FFC107;
    /* Amarelo Ouro */
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.6;
    position: relative;
}

/* Aspas decorativas opcionais */
.testimonial-text::before {
    content: "\201C";
    /* Aspas esquerda */
    font-size: 3rem;
    color: rgba(17, 75, 95, 0.1);
    /* Azul muito claro */
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
}

/* =========================================
   CTA FARMACÊUTICO (FAIXA DE DESTAQUE)
   ========================================= */
.pharmacist-cta-section {
    background-color: var(--secondary-color);
    /* Azul Midnight */
    padding: 60px 5%;
    color: white;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* Efeito de fundo sutil (círculo decorativo) */
.pharmacist-cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-icon {
    font-size: 3.5rem;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.cta-text h2 {
    color: white;
    /* Sobrescreve o padrão escuro */
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 0;
    font-weight: 300;
}

.cta-action {
    flex-shrink: 0;
}


.cta-action i {
    font-size: 1.4rem;
}

/* Botão Específico desta seção */
.btn-pharmacist {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
}

.btn-pharmacist:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* =========================================
   SEÇÃO DE DICAS (BLOG)
   ========================================= */
.tips-section {
    background-color: white;
}

.tips-container {
    display: grid;
    /* Grid responsivo automático: cria colunas de no mínimo 300px */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    background: white;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.tip-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tip-card:hover .tip-img {
    transform: scale(1.1);
}

.tip-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    /* Vermelho */
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.tip-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
    /* Conteúdo de blog fica melhor alinhado à esquerda */
}

.tip-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.tip-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
    /* Empurra o botão para baixo */
}

.tip-link {
    color: var(--secondary-color);
    /* Azul */
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.tip-link:hover {
    color: var(--primary-color);
    /* Vermelho no hover */
}

.tip-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.tip-link:hover i {
    transform: translateX(5px);
}

/* =========================================
   PÁGINA DE ARTIGO (BLOG POST)
   ========================================= */

header.article-header {
    /* Reseta as propriedades do menu fixo */
    position: static;
    height: auto;
    display: block;
    padding: 0;
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
    z-index: 1;

    /* Reaplica o estilo correto do artigo */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0;
}

/* Garante que o título dentro desse header tenha o tamanho certo */
header.article-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 20px;
}

.article-container {
    padding: 120px 5% 80px 5%;
    /* Topo maior por causa do header fixo */
    background-color: #fff;
}

.full-article {
    max-width: 800px;
    /* Largura ideal para leitura humana */
    margin: 0 auto;
}

/* Cabeçalho do Artigo */
.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-category {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.article-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    /* Título responsivo e grande */
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.article-meta {
    font-size: 0.95rem;
    color: var(--text-gray);
    display: flex;
    justify-content: center;
    gap: 20px;
}

.article-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Imagem Destacada */
.article-featured-image {
    margin-bottom: 50px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-featured-image figcaption {
    background-color: #f9f9f9;
    padding: 10px 20px;
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
    text-align: center;
    border-bottom: 3px solid var(--accent-blue);
}

/* Corpo do Texto */
.article-body {
    font-size: 1.15rem;
    /* Texto maior para leitura confortável */
    line-height: 1.8;
    color: #333;
}

.article-body p {
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 40px;
}

.article-body h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.article-body h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Listas dentro do artigo */
.article-body ul,
.article-body ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 15px;
    position: relative;
    list-style: none;
    /* Remove padrão para customizar */
}

/* Bullet point padrão */
.article-body ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: -20px;
    top: -5px;
}

/* Lista numerada */
.article-body ol {
    counter-reset: my-counter;
}

.article-body ol li {
    padding-left: 10px;
}

.article-body ol li::before {
    counter-increment: my-counter;
    content: counter(my-counter) ".";
    color: var(--secondary-color);
    font-weight: 800;
    margin-right: 10px;
}

/* Checklist Personalizado */
.check-list li::before {
    content: "\f00c" !important;
    /* Check icon FontAwesome */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #2ecc71 !important;
    /* Verde */
    font-size: 1rem !important;
    top: 2px !important;
}

/* Citações */
.highlight-quote {
    background-color: rgba(78, 165, 217, 0.1);
    /* Azul bem claro */
    padding: 30px;
    border-radius: 0 10px 10px 0;
    border-left: 5px solid var(--secondary-color);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--secondary-hover);
    margin: 40px 0;
    font-family: serif;
}

.article-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    margin: 50px 0;
}

.article-image-full img {
    width: 100%;
    border-radius: var(--radius-card);
    margin: 30px 0;
}

/* Caixas de CTA (Call to Action) no meio do texto */
.cta-box {
    background-color: var(--background-light);
    border: 2px dashed var(--accent-blue);
    padding: 30px;
    text-align: center;
    border-radius: var(--radius-card);
    margin: 40px 0;
}

.cta-box h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.cta-box .btn {
    margin-top: 15px;
    background-color: var(--secondary-color);
    /* Botão Azul na caixa */
}

.cta-box .btn:hover {
    background-color: var(--secondary-hover);
}

.cta-box-final {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 30px;
    text-align: center;
    border-radius: var(--radius-card);
    margin-top: 60px;
    box-shadow: 0 15px 40px rgba(17, 75, 95, 0.2);
}

.cta-box-final h3 {
    color: white;
    margin-top: 0;
    font-size: 1.8rem;
}

.cta-box-final p {
    color: rgba(255, 255, 255, 0.9);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    border: none;
    margin-top: 20px;
}

.btn-large:hover {
    background-color: white;
    color: var(--primary-color);
}

.mobile-nav-bar {
    display: none;
    /* Oculto no Desktop */
}

.info-topbar {
    /* LÓGICA DE POSICIONAMENTO: */
    /* Empurra a barra para baixo da altura do Header Fixo (80px) */
    margin-top: var(--header-height);

    width: 100%;
    background-color: var(--primary-color);
    /* Vermelho Vivo da Marca */
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 900;
    /* Fica abaixo do Header (z-index 1000) se houver sobreposição */
    position: relative;
    /* Segue o fluxo normal da página (some ao rolar) */
}

.topbar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 5%;
    /* Altura da barra controlada pelo padding */
    display: flex;
    justify-content: center;
    /* Centraliza os itens */
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.topbar-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Efeito de hover apenas nos itens clicáveis */
.topbar-item.hover-effect:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.topbar-item i {
    font-size: 1.5rem;
}



.instagram-badge {
    display: inline-block;
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 40px auto;
}

.promo-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Destaque para o card do meio (Oferta) */
.highlight-offer {
    border: 2px solid var(--primary-color);
}

.promo-img-wrapper {
    height: 300px;
    /* Altura fixa para alinhar tudo */
    width: 100%;
    overflow: hidden;
    background-color: #f9f9f9;
}

.promo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Garante que a foto preencha sem distorcer */
    transition: transform 0.5s ease;
}

.promo-card:hover .promo-img-wrapper img {
    transform: scale(1.05);
}

.promo-caption {
    padding: 15px;
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.promo-caption strong {
    color: var(--text-dark);
}

/* BOTÃO ESTILO STORIES */
.cta-instagram-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-instagram-stories {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 30px 10px 10px;
    /* Padding maior na direita */
    border-radius: 50px;
    /* Redondo total */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: none;
    /* Manter texto normal */
    font-size: 1rem;
}

.btn-instagram-stories:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.4);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    /* Mantém gradiente */
}

.stories-ring {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: white;
    padding: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stories-ring img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.insta-note {
    margin-top: 10px;
    color: var(--text-gray);
    opacity: 0.8;
}

/* =========================================
   RESPONSIVIDADE
   ========================================= */
@media (max-width: 768px) {

    .info-topbar {
        display: none;
    }

    .menu-toggle {
        display: flex;
        z-index: 100;
        color: var(--secondary-color);
    }

    header nav {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: white;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        border-top: 1px solid var(--accent-blue);
    }

    header.open nav {
        right: 0;
        background-image: url('background-marca-dagua.png');
    }

    header nav ul {
        flex-direction: column;
        padding: 30px;
    }

    nav a {
        color: var(--secondary-color);
        font-size: 1rem;
        border-bottom: 1px solid #000000;
        padding: 5px 0;
        display: block;
        text-decoration: none;

    }

    nav a:hover {
        color: var(--primary-color);
    }

    .hero-section {
        text-align: center;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-section::before {
        background-image: linear-gradient(to right,
                rgba(17, 75, 95, 0.9) 0%,
                rgba(17, 75, 95, 0.6) 50%,
                rgba(236, 28, 36, 0.3) 100%),
            url('background-hero-mobile.png');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }

    .hero-background-fade-overlay {
        display: none;
    }

    .hero-content {
        text-align: center;
        margin-top: -150px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.4;
    }


    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .about-us-section {
        flex-direction: column-reverse;
    }

    .about-us-image {
        width: 100%;
        height: auto;
    }

    .about-us-content {
        text-align: center;
    }

    .purpose-cards-container {
        flex-direction: column;
    }

    .purpose-card {
        min-width: 100%;
        max-width: 100%;
    }

    .logo {
        height: 40px;
    }

    .legal-content {
        padding: 30px 20px;
        /* Menos padding no celular */
        margin-top: 120px;
        width: 90%;
        /* Não encostar nas bordas */
    }

    .legal-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        text-align: center;
    }

    .cta-action i {
        font-size: 2rem;
    }

    .btn-pharmacist {
        width: 100%;
        justify-content: center;
    }

    .article-container {
        padding: 100px 20px 60px 20px;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1.1rem;
        padding-left: 15px;
    }

    .article-body {
        font-size: 1.05rem;
    }

    .highlight-quote {
        font-size: 1.1rem;
        padding: 20px;
    }

    .social-bar {
        bottom: 90px;
        /* Sobe um pouco */
    }

    #back-to-top {
        margin-bottom: 60px;
    }

    .mobile-nav-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;
        background: white;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        justify-content: space-around;
        align-items: center;
        border-top: 3px solid var(--primary-color);
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--text-gray);
        font-size: 0.75rem;
        gap: 4px;
    }

    .nav-item i {
        font-size: 1.4rem;
        color: var(--secondary-color);
    }

    .nav-item.highlight i {
        color: var(--primary-color);
        font-size: 1.6rem;
    }

    .nav-item.highlight span {
        font-weight: 700;
        color: var(--primary-color);
    }

}

/* Classes Auxiliares */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    display: none !important;
}

/* Consent Banner */
#consent-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: white;
    padding: 15px 30px;
    border-radius: var(--radius-card);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: 1px solid #eee;
}

@media(max-width: 600px) {
    #consent-banner {
        flex-direction: column;
        text-align: center;
    }
}

#accept-consent-btn {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    font-weight: 700;
}

#accept-consent-btn:hover {
    background: var(--primary-color);
    color: white;
}

#back-to-top {
    position: fixed;
    bottom: 120px;
    right: 33px;
    width: 45px;
    height: 45px;
    background: var(--accent-blue);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 990;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: grid;
    place-items: center;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}