/* =========================================================
   HOME PÚBLICA - ENIGMA UTILIDADES
   Caminho: /public_html/assets/css/site/home.css
   ========================================================= */

:root {
    --blue-950: #020817;
    --blue-925: #031023;
    --blue-900: #061329;
    --blue-850: #061b44;
    --blue-800: #08245c;
    --blue-700: #063b91;
    --blue-600: #0a4fbf;

    --yellow: #ffd21c;
    --yellow-soft: #fff2a6;

    --green: #16a34a;
    --green-dark: #087a31;

    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-150: #eef4ff;
    --gray-200: #e6edf7;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-700: #334155;

    --text: #0f172a;
    --muted: #64748b;

    --shadow-soft: 0 12px 34px rgba(8, 27, 63, .08);
    --shadow-mid: 0 22px 54px rgba(8, 27, 63, .16);
    --shadow-strong: 0 34px 90px rgba(0, 0, 0, .30);

    --radius-xl: 34px;
    --radius-lg: 28px;
    --radius-md: 22px;
    --radius-sm: 16px;
}

/* RESET */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--gray-100);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    appearance: none;
    -webkit-appearance: none;
}

.site-shell {
    width: 100%;
    overflow: hidden;
}

/* TOPBAR */

.topbar {
    background: var(--blue-950);
    color: var(--white);
    font-size: 13px;
}

.topbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 8px 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar a {
    color: var(--yellow);
    font-weight: 900;
}

/* HERO */

.hero {
    position: relative;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 210, 28, .25), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(22, 163, 74, .20), transparent 24%),
        linear-gradient(135deg, #061329 0%, #063b91 52%, #061b44 100%);
    overflow: hidden;
    padding-bottom: 34px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: -145px;
    bottom: -155px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(255, 210, 28, .12);
    pointer-events: none;
}

/* NAV */

.nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
    z-index: 4;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--yellow);
    color: var(--blue-950);
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
    animation: pulseLogo 3.4s ease-in-out infinite;
}

.brand-text strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    background: linear-gradient(90deg, #ffffff, #ffd21c, #ffffff);
    background-size: 220% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: brilhoNome 4s linear infinite;
}

.brand-text small {
    display: block;
    color: #dbeafe;
    font-size: 13px;
    font-weight: 800;
    margin-top: 5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-actions a {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .12);
    padding: 10px 15px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    transition: .22s ease;
}

.nav-actions a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .20);
}

.nav-actions .nav-login {
    background: var(--yellow);
    color: var(--blue-950);
    border-color: var(--yellow);
}

/* HERO INNER */

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 18px 28px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .24);
    color: var(--yellow);
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(40px, 5.6vw, 72px);
    line-height: .98;
    letter-spacing: -2px;
    max-width: 700px;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--yellow);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: -8px;
    height: 8px;
    border-radius: 999px;
    background: var(--yellow);
    opacity: .34;
}

.hero-copy p {
    max-width: 650px;
    color: #e2ecff;
    font-size: 18px;
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    transition: .22s ease;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(22, 163, 74, .28);
}

.btn-green:hover {
    background: #12843d;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--blue-950);
    box-shadow: 0 12px 24px rgba(255, 210, 28, .26);
}

/* TRUST */

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 670px;
}

.trust-row div {
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    padding: 13px;
}

.trust-row strong {
    display: block;
    color: var(--yellow);
    font-size: 13px;
}

.trust-row span {
    display: block;
    color: #e4edff;
    font-size: 12px;
    margin-top: 2px;
}

/* FEATURED */

.hero-showcase {
    min-width: 0;
}

.featured-card {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 34px;
    padding: 18px;
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    text-align: left;
    color: var(--white);
    cursor: pointer;
    transform-style: preserve-3d;
}

.featured-card:hover {
    background: rgba(255, 255, 255, .19);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .34);
}

.featured-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.featured-card-head span {
    background: var(--yellow);
    color: var(--blue-950);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.featured-card-head strong {
    display: block;
    color: var(--yellow);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
    white-space: nowrap;
}

.featured-photo {
    background:
        radial-gradient(circle at 35% 18%, rgba(255, 210, 28, .18), transparent 30%),
        linear-gradient(135deg, #ffffff, #eef4ff);
    border-radius: 26px;
    aspect-ratio: 1 / .72;
    display: grid;
    place-items: center;
    padding: 18px;
    overflow: hidden;
}

.featured-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: .35s ease;
    filter: drop-shadow(0 14px 24px rgba(8, 27, 63, .12));
}

.featured-card:hover .featured-photo img {
    transform: scale(1.045);
}

.featured-card-body {
    padding: 16px 4px 2px;
}

.featured-card-body small {
    display: inline-flex;
    color: var(--yellow);
    font-weight: 900;
    margin-bottom: 6px;
}

.featured-card-body h2 {
    color: var(--white);
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 8px;
}

.featured-card-body p {
    color: #dceaff;
    font-size: 15px;
    margin-bottom: 14px;
}

.featured-link {
    display: inline-flex;
    background: #dcfce7;
    color: var(--green-dark);
    font-weight: 900;
    border-radius: 999px;
    padding: 10px 14px;
}

.placeholder-featured {
    min-height: 420px;
}

.placeholder-art {
    min-height: 230px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 210, 28, .6), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, .20), rgba(255, 255, 255, .08));
    display: grid;
    place-items: center;
    text-align: center;
}

.placeholder-art strong {
    display: block;
    color: var(--yellow);
    font-size: 42px;
    font-weight: 900;
}

.placeholder-art span {
    display: block;
    color: #dceaff;
    margin-top: 6px;
}

/* HERO BOTTOM */

.hero-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
    position: relative;
    z-index: 3;
}

.hero-bottom-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.hero-bottom-title span {
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 12px;
}

.hero-bottom-title a {
    color: var(--white);
    font-weight: 900;
    font-size: 13px;
}

.mini-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.mini-product {
    width: 100%;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 20px;
    padding: 10px;
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 12px;
    align-items: center;
    min-width: 0;
    transition: .22s ease;
    color: var(--white);
    text-align: left;
    cursor: pointer;
}

.mini-product:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .19);
}

.mini-img,
.mini-icon {
    width: 66px;
    height: 66px;
    border-radius: 16px;
    background: var(--white);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.mini-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 6px;
}

.mini-icon {
    background: rgba(255, 255, 255, .16);
    font-size: 28px;
}

.mini-info strong {
    color: var(--white);
    display: block;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mini-info em {
    display: block;
    color: var(--yellow);
    font-style: normal;
    font-weight: 900;
    line-height: 1.2;
    white-space: nowrap;
}

/* SECTIONS */

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 68px 18px;
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 36px;
}

.section-heading span,
.contact-main span {
    color: var(--blue-700);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 900;
}

.section-heading h2 {
    color: var(--blue-900);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    margin: 8px 0;
}

.section-heading p {
    color: var(--muted);
}

/* CATEGORIES */

.category-section {
    position: relative;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--gray-200);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: transform .22s ease, box-shadow .22s ease;
    transform-style: preserve-3d;
}

.category-card::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 210, 28, .16);
}

.category-card:hover {
    box-shadow: var(--shadow-mid);
}

.category-card span {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #eef4ff, #fff7c9);
    font-size: 28px;
    margin-bottom: 14px;
}

.category-card h3 {
    color: var(--blue-700);
    font-size: 19px;
    margin-bottom: 8px;
}

.category-card p {
    color: var(--muted);
    font-size: 14px;
}

/* VITRINE */

.vitrine-section {
    background: var(--white);
    position: relative;
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 320px));
    justify-content: center;
    align-items: stretch;
    gap: 26px;
}

.product-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(8, 27, 63, .11);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    transition: transform .22s ease, box-shadow .22s ease;
    transform-style: preserve-3d;
}

.product-card:hover {
    box-shadow: 0 32px 70px rgba(8, 27, 63, .20);
}

.product-open {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    color: inherit;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    overflow: visible;
}

.product-photo {
    position: relative;
    background:
        radial-gradient(circle at 32% 20%, rgba(255, 210, 28, .24), transparent 32%),
        linear-gradient(135deg, #ffffff, #eef4ff);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    padding: 18px;
    overflow: hidden;
}

.product-photo::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 24px;
    border: 1px solid rgba(6, 59, 145, .07);
    pointer-events: none;
}

.product-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .36s ease;
    filter: drop-shadow(0 12px 22px rgba(8, 27, 63, .10));
    z-index: 1;
}

.product-card:hover .product-photo img {
    transform: scale(1.055);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--yellow);
    color: var(--blue-950);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
    z-index: 3;
}

.product-eye {
    position: absolute;
    inset: auto 14px 14px 14px;
    background: rgba(6, 19, 41, .88);
    color: var(--white);
    border-radius: 16px;
    padding: 10px 12px;
    display: flex;
    justify-content: center;
    font-weight: 900;
    opacity: 0;
    transform: translateY(10px);
    transition: .22s ease;
    z-index: 3;
}

.product-card:hover .product-eye {
    opacity: 1;
    transform: translateY(0);
}

.product-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.product-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.product-meta span {
    display: inline-flex;
    width: fit-content;
    background: var(--gray-150);
    color: var(--blue-700);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
}

.product-content h3 {
    color: var(--blue-900);
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.product-price {
    display: block;
    color: var(--green);
    font-size: 25px;
    font-weight: 900;
    line-height: 1.2;
    min-height: 33px;
    margin-bottom: 12px;
    white-space: nowrap;
}

.product-content p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.48;
    margin-bottom: 16px;
}

.product-read {
    margin-top: auto;
}

.product-read span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-150);
    color: var(--blue-700);
    border-radius: 16px;
    padding: 12px;
    font-weight: 900;
    transition: .22s ease;
}

.product-card:hover .product-read span {
    background: var(--blue-700);
    color: var(--white);
}

.product-whats {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 18px 18px;
    background: #dcfce7;
    color: var(--green-dark);
    border-radius: 16px;
    padding: 12px;
    font-weight: 900;
    transition: .22s ease;
    flex-shrink: 0;
}

.product-whats:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

/* EMPTY */

.empty-feed {
    background: linear-gradient(135deg, #f8fafc, #eef4ff);
    border: 1px dashed #bdd0ea;
    border-radius: 28px;
    padding: 38px;
    text-align: center;
    color: var(--muted);
}

.empty-feed strong {
    display: block;
    color: var(--blue-700);
    font-size: 24px;
    margin-bottom: 6px;
}

.empty-feed .btn {
    margin-top: 18px;
}

/* CTA */

.cta-strip {
    padding: 0 18px 68px;
    background: var(--white);
}

.cta-inner {
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 34px;
    padding: 30px;
    color: var(--white);
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 210, 28, .25), transparent 28%),
        linear-gradient(135deg, var(--blue-900), var(--blue-700));
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow-mid);
}

.cta-inner span {
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 12px;
    font-weight: 900;
}

.cta-inner h2 {
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.08;
    margin: 6px 0;
}

.cta-inner p {
    color: #dceaff;
}

/* CONTACT */

.contact-section {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr .85fr .85fr;
    gap: 18px;
    align-items: stretch;
}

.contact-main span {
    color: var(--yellow);
}

.contact-main h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    margin: 8px 0;
}

.contact-main p {
    color: #dceaff;
}

.contact-card {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
    padding: 24px;
}

.contact-card strong {
    display: block;
    color: var(--yellow);
    margin-bottom: 10px;
}

.contact-card p {
    color: #dceaff;
}

/* FOOTER */

footer {
    background: var(--blue-950);
    color: #b9c7dc;
    text-align: center;
    padding: 24px 18px;
    font-size: 14px;
}

footer strong {
    color: var(--white);
}

/* MODAL */

.produto-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.produto-modal.aberto {
    display: flex;
}

.produto-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 23, .75);
    backdrop-filter: blur(10px);
}

.produto-modal-box {
    position: relative;
    z-index: 2;
    width: min(1060px, 100%);
    max-height: 92vh;
    overflow: auto;
    background: var(--white);
    border-radius: 32px;
    box-shadow: 0 34px 100px rgba(0, 0, 0, .38);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.produto-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--blue-900);
    color: var(--white);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.produto-modal-gallery {
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 210, 28, .25), transparent 30%),
        linear-gradient(135deg, #ffffff, #eef4ff);
    display: grid;
    place-items: center;
    padding: 30px;
    min-height: 520px;
}

.produto-modal-img {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.produto-modal-img img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 18px 30px rgba(8, 27, 63, .12));
}

.produto-modal-info {
    padding: 46px 38px 36px;
    display: flex;
    flex-direction: column;
}

.produto-modal-tag {
    width: fit-content;
    background: var(--gray-150);
    color: var(--blue-700);
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}

.produto-modal-info h2 {
    color: var(--blue-900);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.05;
    margin-bottom: 14px;
}

.produto-modal-info strong {
    color: var(--green);
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 18px;
}

.produto-modal-text {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 24px;
}

.produto-modal-info p {
    color: #475569;
    font-size: 16px;
    line-height: 1.68;
    white-space: pre-line;
}

.produto-modal-info .btn {
    margin-top: auto;
}

body.modal-aberto {
    overflow: hidden;
}

/* FLOATING WHATS */

.floating-whats {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1000;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--green);
    color: var(--white);
    box-shadow: 0 18px 38px rgba(22, 163, 74, .34);
    font-size: 24px;
    transition: .22s ease;
}

.floating-whats:hover {
    transform: translateY(-4px) scale(1.04);
}

/* ANIMATIONS */

@keyframes brilhoNome {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 220% center;
    }
}

@keyframes pulseLogo {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 18px 38px rgba(255, 210, 28, .30);
    }
}

.animar-entrada {
    opacity: 0;
    transform: translateY(24px);
}

.animar-entrada.apareceu {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s ease, transform .6s ease;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        max-width: 620px;
    }

    .mini-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-grid,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-main {
        grid-column: 1 / -1;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .produto-modal-box {
        grid-template-columns: 1fr;
    }

    .produto-modal-gallery {
        min-height: 360px;
    }
}

@media (max-width: 760px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-actions {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-actions a {
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(38px, 12vw, 58px);
        letter-spacing: -1.3px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .trust-row {
        grid-template-columns: 1fr;
    }

    .mini-products,
    .category-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 50px 16px;
    }

    .feed-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .product-photo {
        padding: 12px;
    }

    .product-content {
        padding: 15px;
    }

    .product-content h3 {
        font-size: 15px;
    }

    .product-price {
        font-size: 21px;
        min-height: 28px;
    }

    .product-content p {
        font-size: 13px;
    }

    .product-read span,
    .product-whats {
        font-size: 13px;
        padding: 10px;
    }

    .cta-strip {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cta-inner {
        padding: 24px;
    }

    .produto-modal {
        padding: 10px;
    }

    .produto-modal-box {
        border-radius: 24px;
    }

    .produto-modal-gallery {
        min-height: 290px;
        padding: 22px;
    }

    .produto-modal-info {
        padding: 28px 20px 22px;
    }

    .produto-modal-info strong {
        font-size: 28px;
    }

    .produto-modal-info p {
        font-size: 15px;
    }

    .produto-modal-close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 520px) {
    .topbar-inner {
        font-size: 12px;
    }

    .brand-mark {
        width: 52px;
        height: 52px;
        font-size: 25px;
    }

    .brand-text strong {
        font-size: 21px;
    }

    .brand-text small {
        font-size: 12px;
        max-width: 260px;
    }

    .nav-actions {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        padding-top: 24px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .featured-card {
        border-radius: 26px;
        padding: 14px;
    }

    .featured-photo {
        border-radius: 20px;
    }

    .mini-product {
        grid-template-columns: 58px 1fr;
    }

    .mini-img,
    .mini-icon {
        width: 58px;
        height: 58px;
    }

    .feed-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        border-radius: 26px;
    }

    .product-content h3 {
        font-size: 18px;
    }

    .product-price {
        font-size: 23px;
    }

    .floating-whats {
        width: 54px;
        height: 54px;
        right: 14px;
        bottom: 14px;
    }
}
/* =========================================================
   CARROSSEL DO CARD PRINCIPAL
   ========================================================= */

.featured-carousel {
    position: relative;
    width: 100%;
}

.featured-slides {
    position: relative;
    min-height: 520px;
}

.featured-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(24px) scale(.98);
    transition:
        opacity .45s ease,
        transform .45s ease,
        background .22s ease,
        box-shadow .22s ease;
}

.featured-slide.ativo {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}

.featured-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 16px;
}

.featured-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .36);
    cursor: pointer;
    transition: .22s ease;
}

.featured-dot.ativo {
    width: 32px;
    background: #ffd21c;
}

.featured-progress {
    width: min(280px, 100%);
    height: 5px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, .18);
    margin: 14px auto 0;
}

.featured-progress span {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: #ffd21c;
}

.featured-progress span.animando {
    animation: featuredProgress 5s linear forwards;
}

@keyframes featuredProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .featured-slides {
        min-height: 500px;
    }
}

@media (max-width: 520px) {
    .featured-slides {
        min-height: 470px;
    }

    .featured-dot.ativo {
        width: 26px;
    }
}
/* =========================================================
   CORREÇÃO FORÇADA DO CARROSSEL PRINCIPAL
   ========================================================= */

.featured-carousel {
    position: relative;
    width: 100%;
}

.featured-slides {
    position: relative;
    width: 100%;
}

.featured-slide {
    display: none !important;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

.featured-slide.ativo {
    display: block !important;
    opacity: 1;
    pointer-events: auto;
}

.featured-dot.ativo {
    width: 32px;
    background: #ffd21c;
}

.featured-progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: #ffd21c;
    border-radius: 999px;
}

.featured-progress span.animando {
    animation: featuredProgress 5s linear forwards;
}

@keyframes featuredProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}
/* =========================================================
   CARROSSEL PRINCIPAL - TROCA SUAVE
   Cole no FINAL do home.css
   ========================================================= */

.featured-carousel {
    position: relative;
    width: 100%;
}

.featured-slides {
    position: relative;
    width: 100%;
    min-height: 560px;
}

.featured-slide {
    display: block !important;
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(26px) scale(.985);
    transition:
        opacity .9s ease,
        transform .9s ease,
        visibility .9s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.featured-slide.ativo {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}

.featured-progress span.animando {
    animation: featuredProgressSuave 8s linear forwards;
}

@keyframes featuredProgressSuave {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .featured-slides {
        min-height: 520px;
    }

    .featured-slide {
        transform: translateX(16px) scale(.99);
    }
}

@media (max-width: 520px) {
    .featured-slides {
        min-height: 500px;
    }
}
/* =========================================================
   CARROSSEL PRINCIPAL - TRANSIÇÃO PREMIUM SUAVE
   Cole no FINAL do home.css
   ========================================================= */

.featured-carousel {
    position: relative;
    width: 100%;
}

.featured-slides {
    position: relative !important;
    width: 100%;
    min-height: 570px;
    overflow: visible;
}

.featured-slide {
    display: block !important;
    position: absolute !important;
    inset: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;

    transform: translateY(18px) scale(.975);
    filter: blur(4px);

    transition:
        opacity 1.45s cubic-bezier(.22, 1, .36, 1),
        transform 1.45s cubic-bezier(.22, 1, .36, 1),
        filter 1.45s cubic-bezier(.22, 1, .36, 1),
        visibility 1.45s cubic-bezier(.22, 1, .36, 1);
}

.featured-slide.ativo {
    display: block !important;
    position: absolute !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 3;

    transform: translateY(0) scale(1);
    filter: blur(0);
}

.featured-slide.ativo .featured-photo img {
    animation: destaqueFotoSuave 10s ease-in-out forwards;
}

@keyframes destaqueFotoSuave {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.025);
    }

    100% {
        transform: scale(1.01);
    }
}

.featured-controls {
    position: relative;
    z-index: 5;
}

.featured-dot {
    opacity: .65;
}

.featured-dot.ativo {
    width: 34px;
    opacity: 1;
    background: #ffd21c;
}

.featured-progress {
    position: relative;
    z-index: 5;
}

.featured-progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: #ffd21c;
    border-radius: 999px;
}

.featured-progress span.animando {
    animation: featuredProgressPremium 10s linear forwards;
}

@keyframes featuredProgressPremium {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .featured-slides {
        min-height: 535px;
    }

    .featured-slide {
        transform: translateY(14px) scale(.985);
        filter: blur(3px);
    }
}

@media (max-width: 520px) {
    .featured-slides {
        min-height: 505px;
    }
}
/* =========================================================
   CORREÇÃO - BOTÃO "VER FOTO E DESCRIÇÃO" ESCONDIDO
   Cole no FINAL do home.css
   ========================================================= */

/* Faz o carrossel calcular a altura real do card */
.featured-slides {
    display: grid !important;
    position: relative !important;
    width: 100% !important;
    min-height: auto !important;
    overflow: visible !important;
}

/* Coloca todos os slides no mesmo espaço, mas sem cortar o conteúdo */
.featured-slide {
    grid-area: 1 / 1 !important;
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    min-height: auto !important;
    overflow: visible !important;
}

/* Slide escondido fica invisível, mas ajuda o container a não cortar */
.featured-slide:not(.ativo) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* Slide ativo aparece por cima */
.featured-slide.ativo {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 3 !important;
}

/* Card principal com conteúdo organizado */
.featured-card {
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
}

/* Reduz um pouco a foto para sobrar espaço para texto e botão */
.featured-photo {
    aspect-ratio: 1 / .66 !important;
    flex-shrink: 0 !important;
}

/* Parte de texto sempre visível */
.featured-card-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 16px 4px 4px !important;
    overflow: visible !important;
}

/* Descrição do card principal resumida, sem empurrar o botão para fora */
.featured-card-body p {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin-bottom: 8px !important;
}

/* Botão "Ver foto e descrição" sempre aparecendo */
.featured-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    max-width: 100% !important;
    min-height: 42px !important;
    margin-top: 4px !important;
    padding: 10px 16px !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Controles do carrossel ficam abaixo, sem cobrir o botão */
.featured-controls,
.featured-progress {
    position: relative !important;
    z-index: 20 !important;
}

/* Celular */
@media (max-width: 760px) {
    .featured-photo {
        aspect-ratio: 1 / .72 !important;
        padding: 14px !important;
    }

    .featured-card-body h2 {
        font-size: 21px !important;
        line-height: 1.15 !important;
    }

    .featured-card-body p {
        font-size: 14px !important;
        -webkit-line-clamp: 2 !important;
    }

    .featured-link {
        width: 100% !important;
        font-size: 14px !important;
    }
}

@media (max-width: 520px) {
    .featured-photo {
        aspect-ratio: 1 / .78 !important;
    }

    .featured-card {
        padding: 13px !important;
    }
}