/* ===========================
   BASE GERAL
=========================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-main: #f3f4f6;
    --bg-card: #ffffff;
    --text-main: #111827;
    --text-muted: #4b5563;
    --border-soft: rgba(148, 163, 184, 0.6);

    --accent-natura: #16a34a;
    --accent-avon: #e11e8f;
    --accent-boti: #f97316;
    --accent-jequiti: #22c1c3;
    --accent-whatsapp: #22c55e;
}

body {
    min-height: 100vh;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-color: var(--bg-main); /* fallback */
}

/* ===========================
   TEMAS
   Troca no <body class="...">
   - theme-water-deep
   - theme-water-light
   - theme-clean
=========================== */

body.theme-water-deep {
    background: #020617 url("img/agua1.png") no-repeat center center fixed;
    background-size: cover;
}

body.theme-water-light {
    background: #e0f2fe url("img/agua2.png") no-repeat center center fixed;
    background-size: cover;
}

body.theme-clean {
    background: #f5f7fb url("img/textura-leve.png") no-repeat center center fixed;
    background-size: cover;
}

/* Container principal com leve transparência/blur
   para o fundo aparecer mas manter leitura boa       */

.shell {
    width: 100%;
    max-width: 980px;
    border-radius: 32px;
    padding: 2px;

    background: linear-gradient(
        135deg,
        #d6d4e8,   /* lilás frio acinzentado */
        #c7ccd9,   /* cinza azul gelo */
        #bfc3d9    /* lilás azulado neutro */
    );

    box-shadow:
        0 22px 50px rgba(34, 35, 58, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.45);
}

.card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    padding: 32px 20px 26px;

    background: linear-gradient(
            145deg,
            rgba(230, 232, 241, 0.97), /* cinza lilás claro */
            rgba(215, 217, 229, 0.97), /* cinza frio */
            rgba(200, 204, 222, 0.97)  /* lilás cinza neutro */
        );

    backdrop-filter: blur(14px);
}


/* padding maior em telas grandes */
@media (min-width: 768px) {
    .card {
        padding: 32px 32px 26px;
    }
}

.card::before {
    content: "";
    position: absolute;
    inset: -80px;
    background: url("img/textura-leve.png") center/cover no-repeat;
    opacity: 0.18;
    mix-blend-mode: soft-light;
    filter: hue-rotate(220deg); /* deixa a textura mais azulada e fria */
    pointer-events: none;
}


/* ===========================
   HEADER / MARCA / NAV
=========================== */

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, #22c55e, #22c1c3, #f97316, #ec4899);
    padding: 2px;
}

.brand-logo-inner {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.06em;
    font-size: 0.88rem;
    color: #111827;
}

.brand-text-title {
    font-size: 1rem;
    font-weight: 700;
}

.brand-text-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

nav {
    display: none;
}

@media (min-width: 720px) {
    nav {
        display: flex;
        gap: 16px;
        font-size: 0.9rem;
    }

    nav a {
        color: #111827;
        text-decoration: none;
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid transparent;
        opacity: 0.85;
        transition: all 0.18s ease-out;
    }

    nav a:hover {
        border-color: rgba(148, 163, 184, 0.9);
        background: #f3f4f6;
        opacity: 1;
    }
}

/* ===========================
   HERO / CATEGORIAS
=========================== */

.hero {
    text-align: center;
    margin-bottom: 18px;
    padding: 8px 4px 0;
}

.hero-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: #4b5563;
    margin-bottom: 8px;
}

.hero-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 6px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-sub {
    font-size: 0.95rem;
    color: #374151;
    max-width: 640px;
    margin: 0 auto 10px;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

.category-pill {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(221, 214, 254, 0.45); /* lilás clarinho */
    color: #374151;
}

/* ===========================
   GRID / CARDS DE GRUPOS
=========================== */

.grid {
    display: grid;
    gap: 16px;
    margin: 22px 0 18px;
}

@media (min-width: 640px) {
    .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 639px) {
    .grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.brand-card {
    border-radius: 18px;
    padding: 16px 16px 14px;

    /* fundo mais escuro, lilás acinzentado */
    background: linear-gradient(
        145deg,
        #d2d4e3,   /* topo mais claro */
        #c1c3d6    /* base mais escura */
    );

    border: 1px solid rgba(113, 118, 157, 0.55);
    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.25),
        inset 0 0 10px rgba(255, 255, 255, 0.18);

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.brand-chip {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.brand-tagline {
    font-size: 0.85rem;
    color: #374151;
}

.link-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ===========================
   LINKS DE LOJA
=========================== */

.link-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.6); /* vidro leve */
    backdrop-filter: blur(6px);

    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 2px 6px rgba(0,0,0,0.08);

    color: #1f2937;
    font-size: 0.88rem;
    font-weight: 500;

    transition: 0.18s ease-out;
}

.link-pill:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.14);
}

/* NATURA – verde frescor */
.link-pill.natura {
    border-left: 4px solid #16a34a;
}

/* AVON – rosa cosmético */
.link-pill.avon {
    border-left: 4px solid #e11e8f;
}

/* BOTICÁRIO – laranja quente sofisticado */
.link-pill.boti {
    border-left: 4px solid #f97316;
}

/* JEQUITI – aqua suave */
.link-pill.jequiti {
    border-left: 4px solid #22c1c3;
}


/* ===========================
   RODAPÉ / CONTATO
=========================== */

.footer-cta {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px dashed rgba(209, 213, 219, 1);
}

.footer-cta-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-align: center;
}

.social-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 12px;
}

/* WhatsApp */
.btn-whats {
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    color: #f9fafb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(22, 163, 74, 0.45);
    transition:
        transform 0.12s ease-out,
        box-shadow 0.12s ease-out,
        filter 0.1s ease-out;
}

.btn-whats span {
    font-size: 1.25rem;
}

.btn-whats:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 14px 32px rgba(22, 163, 74, 0.6);
}

/* Instagram */
.btn-insta {
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, #d946ef, #ec4899, #f97316);
    border: none;
    color: #f9fafb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(236, 72, 153, 0.45);
    transition:
        transform 0.12s ease-out,
        box-shadow 0.12s ease-out,
        filter 0.1s ease-out;
}

.btn-insta:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
    box-shadow: 0 14px 32px rgba(236, 72, 153, 0.6);
}

.legal {
    margin-top: 6px;
    font-size: 0.7rem;
    color: rgba(107, 114, 128, 0.95);
    text-align: center;
}