/* =====================================================================
   DROGARIA PONTUAL — CAMADA VISUAL PREMIUM
   ---------------------------------------------------------------------
   Este arquivo contém somente os refinamentos visuais solicitados.
   Ele é carregado depois do style.css para facilitar futuras alterações.
   ===================================================================== */

:root {
    --pontual-navy: #0b2f5c;
    --pontual-navy-deep: #071f3d;
    --pontual-red: #e3062b;
    --pontual-red-dark: #a90020;
    --pontual-wine: #74123d;
    --pontual-gold: #f5c85b;
    --pontual-cream: #fff9f1;
    --pontual-ink: #182033;
    --pontual-muted: #687386;
    --pontual-line: rgba(14, 47, 92, .10);
    --pontual-card-shadow: 0 24px 70px rgba(15, 35, 67, .13);
    --pontual-card-shadow-hover: 0 32px 90px rgba(15, 35, 67, .20);
}

body {
    color: var(--pontual-ink);
    background: #fff;
}

/* =====================================================================
   1. CABEÇALHO E LOGOMARCA
   ===================================================================== */
.imperial-navbar {
    min-height: 88px;
    border-bottom: 1px solid rgba(11, 47, 92, .08);
}

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

.navbar-brand img {
    display: block;
    width: 170px;
    max-width: 100%;
    height: 64px;
    object-fit: contain;
    object-position: left center;
}

.navbar .nav-link {
    position: relative;
    color: #292534 !important;
    font-weight: 800;
    font-size: .94rem;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: .8rem;
    right: .8rem;
    bottom: .42rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pontual-red), var(--pontual-navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.navbar .nav-link:hover::after {
    transform: scaleX(1);
}

/* =====================================================================
   2. BANNER PRINCIPAL
   ===================================================================== */
.hero {
    min-height: 680px;
    background:
        radial-gradient(circle at 12% 15%, rgba(255,255,255,.12), transparent 25%),
        radial-gradient(circle at 84% 20%, rgba(245,200,91,.14), transparent 26%),
        linear-gradient(118deg, var(--pontual-navy-deep) 0%, #29234f 35%, var(--pontual-wine) 68%, var(--pontual-red) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .75;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -190px;
    top: -180px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow:
        0 0 0 60px rgba(255,255,255,.025),
        0 0 0 120px rgba(255,255,255,.018);
    pointer-events: none;
}

.hero-slide {
    position: relative;
    z-index: 2;
    min-height: 680px;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
}

.hero h1 {
    max-width: 790px;
    margin-bottom: 1.25rem !important;
    font-size: clamp(3rem, 5vw, 5.35rem);
    line-height: 1.03;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.hero .lead {
    max-width: 690px;
    color: rgba(255,255,255,.88);
    font-size: 1.18rem;
    line-height: 1.75;
}

.hero-label {
    padding: .58rem .95rem;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

.hero .btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border-radius: 15px;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.7rem;
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .78rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.94);
    font-size: .82rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.hero-logo-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    padding: 36px;
    overflow: visible;
}

.hero-logo-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    max-width: 92%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.18), rgba(255,255,255,.07) 38%, rgba(255,255,255,0) 72%);
    filter: blur(2px);
}

.hero-logo-standalone {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 470px;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 28px 32px rgba(0,0,0,.32));
}

.hero-floating-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    max-width: 230px;
    padding: .85rem 1rem;
    border: 1px solid rgba(255,255,255,.21);
    border-radius: 16px;
    background: rgba(8, 31, 61, .45);
    color: #fff;
    box-shadow: 0 18px 42px rgba(0,0,0,.18);
    backdrop-filter: blur(14px);
    font-weight: 900;
    line-height: 1.25;
}

.hero-floating-chip i {
    color: var(--pontual-gold);
    font-size: 1.18rem;
}

.hero-floating-chip.chip-popular {
    top: 38px;
    right: 4px;
}

.hero-floating-chip.chip-delivery {
    left: 2px;
    bottom: 42px;
}

/* =====================================================================
   3. CARDS FARMÁCIA POPULAR E ENTREGA DOMICILIAR
   ===================================================================== */
.priority-highlights-section {
    position: relative;
    z-index: 5;
    margin-top: -48px;
    padding: 0 0 44px;
}

.priority-highlight-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 30px;
    color: #fff;
    box-shadow: var(--pontual-card-shadow);
    transition: transform .28s ease, box-shadow .28s ease;
}

.priority-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--pontual-card-shadow-hover);
}

.priority-highlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 100% 0, rgba(255,255,255,.18), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.08), transparent 50%);
    pointer-events: none;
}

.priority-highlight-card::after {
    content: "";
    position: absolute;
    right: -88px;
    bottom: -95px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.11);
    box-shadow: 0 0 0 30px rgba(255,255,255,.025), 0 0 0 60px rgba(255,255,255,.015);
    pointer-events: none;
}

.priority-highlight-card.popular {
    background: linear-gradient(138deg, #164c89 0%, var(--pontual-navy) 58%, var(--pontual-navy-deep) 100%);
}

.priority-highlight-card.delivery {
    background: linear-gradient(138deg, #f0183e 0%, var(--pontual-red) 48%, var(--pontual-red-dark) 100%);
}

.priority-card-head,
.priority-highlight-content {
    position: relative;
    z-index: 2;
}

.priority-card-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.priority-highlight-icon {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 21px;
    background: rgba(255,255,255,.13);
    color: #fff;
    font-size: 2rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
}

.priority-highlight-heading {
    min-width: 0;
}

.priority-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .65rem;
    padding: .4rem .65rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    color: rgba(255,255,255,.94);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.priority-highlight-card h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.75rem, 2.5vw, 2.35rem);
    font-weight: 900;
    line-height: 1.1;
}

.priority-highlight-card p {
    margin: 0 0 1rem;
    color: rgba(255,255,255,.87);
    font-size: 1rem;
    line-height: 1.72;
}

.priority-highlight-list {
    display: grid;
    gap: .55rem;
    margin-top: 1rem;
}

.priority-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: rgba(255,255,255,.95);
    font-weight: 700;
}

.priority-highlight-list i {
    margin-top: .1rem;
    color: var(--pontual-gold);
}

.priority-highlight-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    min-height: 52px;
    margin-top: auto;
    padding: .9rem 1.15rem;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 15px;
    background: #fff;
    color: var(--pontual-navy) !important;
    text-decoration: none !important;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(0,0,0,.16);
    transition: transform .22s ease, box-shadow .22s ease;
}

.priority-highlight-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0,0,0,.22);
}

.priority-highlight-watermark {
    display: none !important;
}

/* =====================================================================
   4. SEÇÃO NOSSA HISTÓRIA
   ===================================================================== */
.history-section {
    padding-top: 88px;
    padding-bottom: 88px;
    background:
        radial-gradient(circle at 0 0, rgba(227,6,43,.07), transparent 30%),
        linear-gradient(180deg, #fff, #fffaf6);
}

.about-panel {
    padding: 58px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 34px;
    background:
        radial-gradient(circle at 90% 10%, rgba(245,200,91,.12), transparent 28%),
        linear-gradient(135deg, var(--pontual-navy-deep) 0%, #23355f 32%, var(--pontual-wine) 67%, var(--pontual-red) 100%);
    box-shadow: 0 34px 90px rgba(28, 34, 64, .20);
}

.about-panel::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -210px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 0 0 50px rgba(255,255,255,.018), 0 0 0 100px rgba(255,255,255,.012);
}

.history-section .section-kicker {
    color: var(--pontual-gold) !important;
}

.history-section h2 {
    margin-bottom: 1.4rem;
    color: #fff;
    letter-spacing: -.025em;
}

.history-text p {
    max-width: 720px;
    color: rgba(255,255,255,.88);
    font-size: 1.03rem;
    line-height: 1.85;
}

.history-signature {
    margin-top: 1.5rem !important;
    padding: .95rem 1rem;
    border: 1px solid rgba(245,200,91,.20) !important;
    border-left: 4px solid var(--pontual-gold) !important;
    border-radius: 0 14px 14px 0;
    background: rgba(255,255,255,.06);
    color: #fff7d8 !important;
    font-weight: 900;
}

.about-brand-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 285px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 26px;
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 20px 45px rgba(0,0,0,.14);
    backdrop-filter: blur(12px);
}

.about-brand-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.13), rgba(255,255,255,0) 70%);
}

.about-brand-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 16px;
    padding: .42rem .72rem;
    border: 1px solid rgba(245,200,91,.24);
    border-radius: 999px;
    background: rgba(245,200,91,.10);
    color: #fff1be;
    font-size: .73rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.about-logo-standalone {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 310px;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto 14px;
    filter: drop-shadow(0 18px 24px rgba(0,0,0,.24));
}

.about-brand-card p {
    position: relative;
    z-index: 2;
    max-width: 360px;
    margin: 0;
    color: rgba(255,255,255,.84);
    text-align: center;
    line-height: 1.6;
}

.about-metric-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 158px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    transition: transform .22s ease, background .22s ease;
}

.about-metric-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.12);
}

.about-metric-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(255,255,255,.10);
    color: var(--pontual-gold) !important;
    font-size: 1.25rem;
}

.about-metric-card strong {
    display: block;
    margin-bottom: .35rem;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.25;
}

.about-metric-card > span:last-child {
    color: rgba(255,255,255,.77);
    font-size: .9rem;
    line-height: 1.45;
}

/* =====================================================================
   5. CARD DE CONTATO E BOTÕES DE WHATSAPP
   ===================================================================== */
.contact-card-premium {
    padding: 32px !important;
    overflow: visible !important;
    border: 1px solid rgba(11,47,92,.10) !important;
    border-radius: 28px !important;
    background: #fff !important;
    box-shadow: var(--pontual-card-shadow) !important;
    transform: none !important;
}

.contact-card-premium::before,
.contact-card-premium::after {
    display: none !important;
}

.contact-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--pontual-line);
}

.contact-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .65rem;
    padding: .42rem .7rem;
    border-radius: 999px;
    background: #fff2f4;
    color: var(--pontual-red);
    font-size: .73rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.contact-card-header h3 {
    color: var(--pontual-ink);
    font-size: 1.8rem;
    letter-spacing: -.02em;
}

.contact-status-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .58rem .78rem;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 900;
    white-space: nowrap;
}

.contact-status-badge.open {
    background: #eaf9ef;
    color: #19713a;
}

.contact-status-badge.closed {
    background: #fff0f1;
    color: #a7192f;
}

.contact-info-stack {
    display: grid;
    gap: 4px;
}

.contact-card-premium .contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid var(--pontual-line);
}

.contact-card-premium .contact-item:last-child {
    border-bottom: 0;
}

.contact-card-premium .contact-item-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(145deg, #fff3f4, #ffe7eb);
    color: var(--pontual-red);
    font-size: 1.22rem;
    box-shadow: inset 0 0 0 1px rgba(227,6,43,.04);
}

.contact-card-premium .contact-item-icon.whatsapp {
    background: linear-gradient(145deg, #edfff3, #dcf8e7);
    color: #169447;
}

.contact-card-premium .contact-item strong {
    display: block;
    margin-bottom: .2rem;
    color: #2a3040;
}

.contact-direct-link {
    color: var(--pontual-navy) !important;
    font-weight: 800;
    text-decoration: none;
}

.contact-direct-link:hover {
    color: var(--pontual-red) !important;
    text-decoration: underline;
}

.contact-actions-grid {
    display: grid;
    gap: 14px;
}

.contact-actions-grid > .btn {
    min-height: 52px;
    border-radius: 15px;
}

.contact-whatsapp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.contact-whatsapp-btn {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 13px;
    align-items: center;
    min-height: 78px;
    padding: 13px 15px;
    border: 1px solid rgba(22,148,71,.11);
    border-radius: 18px;
    background: linear-gradient(135deg, #23bf61 0%, #148943 100%);
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 16px 34px rgba(20,137,67,.22);
    transition: transform .22s ease, box-shadow .22s ease;
}

.contact-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(20,137,67,.30);
}

.contact-whatsapp-btn i {
    grid-row: 1 / span 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(255,255,255,.16);
    font-size: 1.45rem;
}

.contact-whatsapp-btn span,
.contact-whatsapp-btn strong {
    display: block;
    min-width: 0;
}

.contact-whatsapp-btn span {
    align-self: end;
    color: rgba(255,255,255,.83);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-whatsapp-btn strong {
    align-self: start;
    color: #fff;
    font-size: 1rem;
    line-height: 1.3;
}

/* =====================================================================
   6. RODAPÉ
   ===================================================================== */
.footer-logo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.05) !important;
    box-shadow: none !important;
}

.footer-logo {
    display: block;
    width: 220px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

/* =====================================================================
   7. RESPONSIVIDADE
   ===================================================================== */
@media (max-width: 1199.98px) {
    .hero h1 {
        font-size: clamp(3rem, 5vw, 4.4rem);
    }

    .hero-logo-standalone {
        max-width: 410px;
    }
}

@media (max-width: 991.98px) {
    .imperial-navbar {
        min-height: 76px;
    }

    .navbar-brand img {
        width: 145px;
        height: 56px;
    }

    .hero,
    .hero-slide {
        min-height: auto;
    }

    .hero-slide {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .hero-logo-showcase {
        min-height: 350px;
        margin-top: 1.5rem;
    }

    .hero-floating-chip {
        position: static;
        margin: 10px 5px 0;
    }

    .priority-highlights-section {
        margin-top: 0;
        padding-top: 30px;
    }

    .priority-highlight-card {
        min-height: auto;
    }

    .about-panel {
        padding: 40px;
    }

    .contact-card-header {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        width: 132px;
        height: 52px;
    }

    .hero-slide {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .hero-logo-showcase {
        min-height: 250px;
        padding: 18px 4px;
    }

    .hero-logo-standalone {
        max-width: 330px;
        max-height: 230px;
    }

    .hero-floating-chip {
        display: none;
    }

    .priority-highlight-card {
        padding: 25px;
        border-radius: 24px;
    }

    .priority-card-head {
        align-items: flex-start;
    }

    .priority-highlight-icon {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
        font-size: 1.6rem;
    }

    .about-panel {
        padding: 27px;
        border-radius: 26px;
    }

    .about-brand-card {
        min-height: 235px;
        padding: 20px;
    }

    .about-logo-standalone {
        max-width: 250px;
        max-height: 145px;
    }

    .about-metric-card {
        min-height: 150px;
        padding: 15px;
    }

    .contact-card-premium {
        padding: 24px !important;
        border-radius: 24px !important;
    }

    .contact-card-header h3 {
        font-size: 1.55rem;
    }
}

/* Compatibilidade com a marcação dos botões e métricas do projeto. */
.about-metric-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: start;
    column-gap: 13px;
}

.about-metric-card .about-metric-icon {
    grid-row: 1 / span 2;
}

.about-metric-card div span {
    display: block;
    color: rgba(255,255,255,.77);
    font-size: .9rem;
    line-height: 1.45;
}

.contact-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 13px;
}

.contact-whatsapp-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(255,255,255,.16);
    font-size: 1.45rem;
}

.contact-whatsapp-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.2;
}

.contact-whatsapp-copy small {
    color: rgba(255,255,255,.82);
    font-size: .78rem;
    font-weight: 700;
}

.contact-whatsapp-copy strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.3;
}

.priority-highlight-content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.topbar-contact {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.topbar-separator {
    opacity: .55;
}
