/* =============================================
   CORUJA RABISCADA - LANDING ARTESANAL VIBRANTE
   ============================================= */
:root {
    --cor-pink: #ff69b4;
    --cor-amarelo: #ffd700;
    --cor-azul: #4169e1;
    --cor-roxo: #9b59b6;
    --cor-laranja: #ff8c00;
    --cor-verde: #25d366;
    --cor-tinta: #19152f;
    --cor-texto: #302944;
    --cor-muted: #736a84;
    --cor-fundo: #fff8f2;
    --cor-papel: #fffdf8;
    --cor-linha: rgba(48, 41, 68, 0.12);
    --fonte-base: "Nunito", sans-serif;
    --fonte-display: "Baloo 2", "Nunito", sans-serif;
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 38px;
    --shadow-soft: 0 18px 50px rgba(77, 41, 95, 0.13);
    --shadow-color: 0 18px 42px rgba(255, 105, 180, 0.26);
}

*, *::before, *::after { box-sizing: border-box; }

.form-guard-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--fonte-base);
    color: var(--cor-texto);
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 105, 180, 0.12), transparent 24rem),
        radial-gradient(circle at 88% 8%, rgba(255, 215, 0, 0.13), transparent 22rem),
        linear-gradient(180deg, #fffdf8 0%, #fff8f2 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.42;
    z-index: -1;
    background-image:
        linear-gradient(rgba(65, 105, 225, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 105, 180, 0.045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

h1, h2, h3, h4 {
    font-family: var(--fonte-display);
    font-weight: 800;
    letter-spacing: 0;
}

a { text-decoration: none; }

img {
    max-width: 100%;
    display: inline-block;
}

::selection {
    background: var(--cor-amarelo);
    color: var(--cor-tinta);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #fff2f8; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cor-pink), var(--cor-roxo));
    border-radius: 999px;
    border: 2px solid #fff2f8;
}

/* HEADER */
.lp-header {
    background: rgba(255, 253, 248, 0.86);
    border-bottom: 1px solid rgba(155, 89, 182, 0.12);
    box-shadow: 0 10px 35px rgba(25, 21, 47, 0.06);
    backdrop-filter: blur(18px);
    z-index: 1000;
}

.lp-header .navbar { min-height: 76px; }

.navbar-brand img {
    width: min(205px, 52vw);
    max-height: 64px;
    object-fit: contain;
}

.navbar-toggler {
    border: 0;
    border-radius: 999px;
    padding: 10px;
    background: #fff2f8;
}

.navbar-toggler:focus { box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.16); }

.lp-header .nav-link {
    position: relative;
    color: var(--cor-tinta) !important;
    font-weight: 900;
    padding-inline: 0.95rem !important;
}

.lp-header .nav-link::after {
    content: "";
    position: absolute;
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0.2rem;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cor-pink), var(--cor-amarelo));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.lp-header .nav-link:hover::after,
.lp-header .nav-link.is-active::after {
    transform: scaleX(1);
}

.lp-header .nav-link.is-active {
    color: var(--cor-pink) !important;
}

/* BOTOES */
.btn {
    border: 0;
    font-weight: 900;
    border-radius: 999px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn:hover { transform: translateY(-3px); }

.btn-whatsapp {
    position: relative;
    overflow: hidden;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    background: var(--cor-verde);
    color: #fff !important;
    padding: 0;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    color: #fff !important;
    background: #17b857;
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.32);
}

.btn-whatsapp::before {
    content: "";
    position: absolute;
    right: 9px;
    bottom: 9px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.btn-whatsapp svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.btn-cta-hero {
    color: #fff !important;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--cor-pink), var(--cor-laranja));
    box-shadow: var(--shadow-color);
}

.btn-cta-hero:hover {
    color: #fff !important;
    filter: saturate(1.08);
    box-shadow: 0 22px 46px rgba(255, 105, 180, 0.34);
}

.btn-cta-secondary {
    color: var(--cor-tinta) !important;
    padding: 14px 24px;
    background: #fff;
    border: 2px solid rgba(155, 89, 182, 0.16);
    box-shadow: 0 12px 28px rgba(25, 21, 47, 0.08);
}

.btn-produto {
    width: 100%;
    color: var(--cor-tinta) !important;
    background: var(--cor-amarelo);
    padding: 11px 18px;
    box-shadow: 0 12px 24px rgba(255, 215, 0, 0.22);
}

.btn-produto:hover,
.btn-produto:focus {
    color: #fff !important;
    background: linear-gradient(135deg, var(--cor-pink), var(--cor-laranja));
    box-shadow: var(--shadow-color);
}

.lp-catalog-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 30px;
    padding: clamp(20px, 4vw, 32px);
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 215, 0, 0.2), transparent 12rem),
        linear-gradient(135deg, rgba(255, 105, 180, 0.13), rgba(65, 105, 225, 0.1));
    border: 1px solid rgba(155, 89, 182, 0.14);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.lp-catalog-cta > div {
    min-width: 0;
}

.lp-catalog-cta .btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

.lp-catalog-cta h3 {
    margin: 12px 0 6px;
    color: var(--cor-tinta);
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1;
}

.lp-catalog-cta p {
    max-width: 650px;
    margin: 0;
    color: var(--cor-muted);
    line-height: 1.6;
}

/* HERO */
.lp-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: calc(100svh - 76px);
    background:
        linear-gradient(120deg, rgba(255, 105, 180, 0.12), transparent 32%),
        linear-gradient(300deg, rgba(65, 105, 225, 0.12), transparent 34%),
        #fffdf8;
}

.lp-hero::before,
.lp-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.lp-hero::before {
    inset: auto -8vw -11vw -8vw;
    height: 24vw;
    min-height: 170px;
    background: linear-gradient(90deg, var(--cor-pink), var(--cor-amarelo), var(--cor-azul), var(--cor-roxo), var(--cor-laranja));
    clip-path: polygon(0 42%, 13% 26%, 25% 42%, 39% 21%, 55% 39%, 70% 18%, 86% 35%, 100% 17%, 100% 100%, 0 100%);
    opacity: 0.94;
}

.lp-hero::after {
    width: 47vw;
    height: 47vw;
    min-width: 390px;
    min-height: 390px;
    right: -17vw;
    top: 8%;
    border-radius: 45% 55% 50% 50%;
    border: 2px dashed rgba(155, 89, 182, 0.25);
    transform: rotate(16deg);
}

.lp-hero__paint {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.58;
}

.lp-hero__paint--pink {
    width: 240px;
    height: 240px;
    left: -70px;
    top: 18%;
    background: rgba(255, 105, 180, 0.32);
}

.lp-hero__paint--yellow {
    width: 185px;
    height: 185px;
    right: 14%;
    bottom: 18%;
    background: rgba(255, 215, 0, 0.28);
}

.lp-hero__grid {
    min-height: calc(100svh - 76px);
    padding-block: clamp(52px, 8vw, 92px);
}

.lp-eyebrow,
.lp-section__kicker {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    width: max-content;
    max-width: 100%;
    color: var(--cor-roxo);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(155, 89, 182, 0.14);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.8rem;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}

.lp-eyebrow::before,
.lp-section__kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--cor-pink);
    box-shadow: 12px 0 0 var(--cor-amarelo), 24px 0 0 var(--cor-azul);
}

.lp-hero__titulo {
    max-width: 780px;
    margin: 18px 0 16px;
    color: var(--cor-tinta);
    font-size: clamp(2.55rem, 6vw, 5.6rem);
    line-height: 0.94;
}

.lp-hero__titulo strong,
.lp-hero__titulo em {
    color: var(--cor-pink);
    font-style: normal;
}

.lp-hero__subtitulo {
    max-width: 570px;
    color: var(--cor-muted);
    font-size: clamp(1.04rem, 2vw, 1.26rem);
    line-height: 1.65;
    margin-bottom: 28px;
}

.lp-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
    margin-bottom: 24px;
}

.lp-hero__actions .btn {
    min-height: 50px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    font-family: var(--fonte-display);
    font-size: clamp(0.98rem, 1.1vw, 1.08rem);
    line-height: 1;
    white-space: nowrap;
}

.btn-hero-primary::after {
    content: "→";
    font-family: var(--fonte-base);
    font-size: 1.18em;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.22s ease;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
    color: var(--cor-pink) !important;
    background: #fff;
    border: 2px solid rgba(255, 105, 180, 0.44);
    filter: none;
    box-shadow: 0 18px 42px rgba(255, 105, 180, 0.18);
}

.btn-hero-primary:hover::after,
.btn-hero-primary:focus::after {
    transform: translateX(4px);
}

.btn-hero-secondary {
    color: var(--cor-pink) !important;
    background: rgba(255, 255, 255, 0.78);
    border: 2px solid rgba(255, 105, 180, 0.42);
    box-shadow: 0 14px 34px rgba(25, 21, 47, 0.06);
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    color: #fff !important;
    background: linear-gradient(135deg, var(--cor-pink), var(--cor-laranja));
    border-color: transparent;
    box-shadow: var(--shadow-color);
}

.lp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
    padding: 0;
    margin: 0;
    color: var(--cor-tinta);
    list-style: none;
}

.lp-hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--cor-texto);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.25;
}

.lp-hero__trust-icon {
    display: inline-grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 18px rgba(25, 21, 47, 0.08);
    font-size: 0.98rem;
}

.lp-hero__showcase {
    position: relative;
    display: inline-grid;
    width: min(530px, 100%);
    min-height: 450px;
    place-items: center;
}

.lp-hero__showcase::before {
    content: "";
    position: absolute;
    inset: 7% 5% 1% 12%;
    z-index: -1;
    border-radius: 42% 58% 48% 52%;
    background: linear-gradient(135deg, var(--cor-amarelo), var(--cor-pink) 50%, var(--cor-roxo));
    transform: rotate(-7deg);
    box-shadow: var(--shadow-color);
}

.lp-hero__showcase::after {
    content: "";
    position: absolute;
    inset: 0 12% 16% 2%;
    z-index: -2;
    border-radius: 36px;
    border: 2px dashed rgba(25, 21, 47, 0.16);
    transform: rotate(8deg);
}

.lp-hero__imagem,
.lp-hero__placeholder {
    width: min(440px, 88vw);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 10px solid #fff;
    border-radius: 36% 22% 31% 18%;
    box-shadow: 0 28px 65px rgba(25, 21, 47, 0.2);
    animation: float 5s ease-in-out infinite;
}

.lp-hero__placeholder {
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 8rem;
    background: linear-gradient(135deg, var(--cor-pink), var(--cor-roxo));
}

.lp-hero__note {
    position: absolute;
    right: 0;
    bottom: 6%;
    width: min(270px, 76vw);
    text-align: left;
    padding: 18px 20px;
    color: var(--cor-texto);
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid rgba(155, 89, 182, 0.14);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.lp-hero__note strong,
.lp-hero__note span {
    display: block;
}

.lp-hero__note strong {
    font-family: var(--fonte-display);
    font-size: 1.12rem;
    line-height: 1.05;
    color: var(--cor-roxo);
    margin-bottom: 5px;
}

.lp-hero__note span {
    color: var(--cor-muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-14px) rotate(1.5deg); }
}

/* SECOES */
.lp-section {
    position: relative;
    padding: clamp(70px, 9vw, 112px) 0;
}

.lp-section__header {
    max-width: 760px;
    margin-inline: auto;
}

.lp-section__header h2 {
    margin: 14px 0 8px;
    color: var(--cor-tinta);
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: 1;
}

.lp-section__header p {
    margin: 0;
    color: var(--cor-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* PRODUTOS */
.lp-produtos {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 242, 248, 0.72));
}

.lp-card-produto {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 28px;
    text-align: left;
    background: var(--cor-papel);
    border: 1px solid rgba(155, 89, 182, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 16px 42px rgba(25, 21, 47, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.lp-card-produto::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 9px;
    background: linear-gradient(90deg, var(--cor-pink), var(--cor-amarelo), var(--cor-azul));
}

.lp-card-produto::after {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: rgba(255, 105, 180, 0.13);
}

.lp-card-produto:hover {
    transform: translateY(-8px) rotate(-0.6deg);
    border-color: rgba(255, 105, 180, 0.34);
    box-shadow: 0 24px 54px rgba(25, 21, 47, 0.14);
}

.lp-card-produto--destaque {
    background: linear-gradient(160deg, #fff, #fff2f8 78%);
    border-color: rgba(255, 105, 180, 0.28);
}

.lp-card-produto__icone {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin: 8px 0 22px;
    font-size: 2.05rem;
    border-radius: 22px 18px 25px 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.45), rgba(255, 105, 180, 0.2));
    transform: rotate(-4deg);
}

.lp-card-produto__nome {
    margin-bottom: 8px;
    color: var(--cor-tinta);
    font-size: 1.35rem;
    line-height: 1.05;
}

.lp-card-produto__descricao {
    color: var(--cor-muted);
    font-size: 0.94rem;
    line-height: 1.55;
    min-height: 4.3em;
}

.lp-card-produto__preco {
    margin: 18px 0;
    color: var(--cor-pink);
    font-family: var(--fonte-display);
    font-size: 1.2rem;
    line-height: 1;
}

.lp-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    color: var(--cor-tinta);
    background: var(--cor-amarelo);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.18);
}

/* PARA QUEM */
.lp-para-quem {
    background: #fffdf8;
}

.lp-card-para-quem {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 28px 22px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(65, 105, 225, 0.12);
    border-radius: 24px 24px 24px 8px;
    box-shadow: 0 14px 34px rgba(25, 21, 47, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-card-para-quem:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(65, 105, 225, 0.12);
}

.lp-card-para-quem__icone {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    border-radius: 50%;
    background: rgba(255, 105, 180, 0.12);
}

.lp-card-para-quem h4 {
    color: var(--cor-roxo);
    font-size: 1.18rem;
    margin-bottom: 8px;
}

.lp-card-para-quem p {
    color: var(--cor-muted);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

/* COMO FUNCIONA */
.lp-como-funciona {
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 8% 20%, rgba(255, 215, 0, 0.22), transparent 22rem),
        linear-gradient(135deg, #201538 0%, var(--cor-roxo) 45%, var(--cor-azul) 100%);
}

.lp-como-funciona::before {
    content: "";
    position: absolute;
    inset: 34px 0 auto;
    height: 1px;
    opacity: 0.3;
    background-image: linear-gradient(90deg, transparent, #fff, transparent);
}

.lp-como-funciona .lp-section__kicker {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.lp-como-funciona .lp-section__header h2,
.lp-como-funciona .lp-section__header p { color: #fff; }

.lp-passo {
    height: 100%;
    padding: 34px 26px;
    text-align: left;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(12px);
    transition: transform 0.24s ease, background 0.24s ease;
}

.lp-passo:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.16);
}

.lp-passo__numero {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    color: var(--cor-tinta);
    background: var(--cor-amarelo);
    border-radius: 18px 18px 18px 4px;
    font-family: var(--fonte-display);
    font-size: 1.6rem;
}

.lp-passo__titulo {
    color: #fff;
    font-size: 1.28rem;
    margin-bottom: 8px;
}

.lp-passo p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    margin: 0;
}

/* KIT */
.lp-kit {
    background:
        linear-gradient(180deg, #fffdf8 0%, #fff5eb 100%);
}

.lp-kit__card {
    position: relative;
    overflow: hidden;
    align-items: stretch !important;
    padding: clamp(26px, 4vw, 48px);
    background: #fff;
    border: 1px solid rgba(255, 105, 180, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.lp-kit__card::before {
    content: "";
    position: absolute;
    left: -65px;
    top: -65px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.24);
}

.lp-kit__imagem,
.lp-kit__placeholder {
    width: min(430px, 100%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 34px 12px 34px 12px;
    box-shadow: 0 22px 45px rgba(25, 21, 47, 0.14);
}

.lp-kit__placeholder {
    display: grid;
    place-items: center;
    font-size: 7rem;
    background: #fff2f8;
}

.lp-kit__titulo {
    color: var(--cor-pink);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    margin-bottom: 14px;
}

.lp-kit__descricao {
    color: var(--cor-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.lp-kit__precos {
    display: grid;
    gap: 4px;
    justify-items: start;
    margin-bottom: 4px;
}

.lp-kit__preco-de {
    display: inline-flex;
    width: fit-content;
    color: rgba(48, 41, 68, 0.62);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.lp-kit__preco {
    color: var(--cor-tinta);
    font-family: var(--fonte-display);
    font-size: clamp(2.35rem, 4.5vw, 3.45rem);
    line-height: 0.9;
}

.lp-kit .carousel-control-prev,
.lp-kit .carousel-control-next {
    width: 48px;
}

.lp-kit .carousel-control-prev-icon,
.lp-kit .carousel-control-next-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--cor-tinta);
    background-size: 52%;
}

/* GALERIA */
.lp-galeria {
    background: #fffdf8;
}

.lp-galeria__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 250px;
    gap: 18px;
}

.lp-galeria__grid--1 { grid-template-columns: minmax(260px, 620px); justify-content: center; }
.lp-galeria__grid--2 { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
.lp-galeria__grid--3 { grid-template-columns: repeat(3, minmax(220px, 1fr)); }
.lp-galeria__grid--4 { grid-template-columns: repeat(4, minmax(170px, 1fr)); }
.lp-galeria__grid--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(230px, 1fr));
}

.lp-galeria__item {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    min-height: 260px;
    grid-column: span 2;
    border-radius: 30px 12px 30px 12px;
    background: #fff2f8;
    box-shadow: 0 18px 42px rgba(25, 21, 47, 0.1);
    cursor: zoom-in;
}

.lp-galeria__grid--5 .lp-galeria__item {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
}

.lp-galeria__grid--5 .lp-galeria__item:first-child {
    grid-row: 1 / span 2;
}

.lp-galeria__grid:not(.lp-galeria__grid--5) .lp-galeria__item:nth-child(4n + 1) {
    grid-row: span 2;
    min-height: 520px;
}

.lp-galeria__item:nth-child(5n + 2) {
    border-radius: 12px 30px 12px 30px;
}

.lp-galeria__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.55s ease;
}

.lp-galeria__item:hover img {
    transform: scale(1.07) rotate(0.6deg);
    filter: saturate(1.08);
}

.lp-galeria__zoom {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    color: var(--cor-tinta);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(25, 21, 47, 0.16);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.lp-galeria__item:hover .lp-galeria__zoom,
.lp-galeria__item:focus-visible .lp-galeria__zoom {
    opacity: 1;
    transform: translateY(0);
}

.lp-galeria__item:focus-visible {
    outline: 4px solid rgba(255, 105, 180, 0.35);
    outline-offset: 4px;
}

.lp-galeria-modal .modal-dialog {
    max-width: min(1120px, calc(100vw - 28px));
}

.lp-galeria-modal .modal-content {
    overflow: hidden;
    color: var(--cor-texto);
    background: #fffdf8;
    border: 1px solid rgba(255, 105, 180, 0.16);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(25, 21, 47, 0.28);
}

.lp-galeria-modal .modal-header {
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(155, 89, 182, 0.12);
}

.lp-galeria-modal__kicker {
    display: block;
    color: var(--cor-pink);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.lp-galeria-modal .modal-title {
    margin: 2px 0 0;
    color: var(--cor-tinta);
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1;
}

.lp-galeria-modal .modal-body {
    padding: 18px;
}

.lp-galeria-modal .carousel-inner {
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 105, 180, 0.08), rgba(255, 215, 0, 0.08)),
        #fff;
}

.lp-galeria-modal .carousel-item {
    text-align: center;
}

.lp-galeria-modal__imagem {
    width: 100%;
    max-height: min(72vh, 760px);
    object-fit: contain;
    object-position: center;
    background: #fff;
}

.lp-galeria-modal .carousel-control-prev,
.lp-galeria-modal .carousel-control-next {
    width: 58px;
}

.lp-galeria-modal .carousel-control-prev-icon,
.lp-galeria-modal .carousel-control-next-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(25, 21, 47, 0.72);
    background-size: 52%;
    box-shadow: 0 12px 26px rgba(25, 21, 47, 0.24);
}

.lp-galeria-modal__thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px 2px 2px;
    scrollbar-width: thin;
}

.lp-galeria-modal__thumbs button {
    flex: 0 0 74px;
    height: 74px;
    overflow: hidden;
    padding: 0;
    background: #fff;
    border: 3px solid transparent;
    border-radius: 14px;
    opacity: 0.62;
    transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.lp-galeria-modal__thumbs button.active,
.lp-galeria-modal__thumbs button:hover,
.lp-galeria-modal__thumbs button:focus-visible {
    opacity: 1;
    transform: translateY(-2px);
    border-color: var(--cor-pink);
}

.lp-galeria-modal__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DEPOIMENTOS */
.lp-depoimentos {
    background:
        radial-gradient(circle at 12% 14%, rgba(255, 215, 0, 0.16), transparent 20rem),
        linear-gradient(135deg, #fff9e7, #fff1f8);
}

.lp-depoimento {
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 14px;
    max-width: 780px;
    min-height: 280px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 46px);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 105, 180, 0.16);
    border-radius: 28px 28px 8px 28px;
    box-shadow: var(--shadow-soft);
}

.lp-depoimento::before {
    content: '"';
    position: absolute;
    top: -24px;
    left: 24px;
    color: var(--cor-pink);
    font-family: Georgia, serif;
    font-size: 6rem;
    line-height: 1;
    opacity: 0.28;
}

.lp-depoimento__estrelas {
    color: var(--cor-amarelo);
    letter-spacing: 1px;
    margin-bottom: 0;
}

.lp-depoimento__body {
    min-width: 0;
}

.lp-depoimento__texto {
    color: var(--cor-texto);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.lp-depoimento__texto.is-expanded {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

.lp-depoimento__more {
    display: none;
    margin-top: 6px;
    padding: 0;
    color: #1a73e8;
    background: transparent;
    border: 0;
    font-size: 0.86rem;
    font-weight: 900;
}

.lp-depoimento__more.is-visible {
    display: inline-flex;
}

.lp-depoimento__nome {
    color: var(--cor-roxo);
    font-weight: 900;
    margin: 0;
}

.lp-depoimentos__carousel {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 58px;
    overflow: hidden;
}

.lp-depoimentos__viewport {
    overflow: hidden;
}

.lp-depoimentos__track {
    display: flex;
    align-items: stretch;
    gap: 18px;
    padding: 8px 0;
    transition: transform 0.45s ease;
    will-change: transform;
}

.lp-depoimentos__track .lp-depoimento {
    flex: 0 0 min(620px, 62%);
    opacity: 0.42;
    filter: saturate(0.82);
    transform: scale(0.88);
    transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.lp-depoimentos__track .lp-depoimento.is-active {
    opacity: 1;
    filter: saturate(1);
    transform: scale(1);
}

.lp-depoimentos__control {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #fff;
    background: var(--cor-tinta);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 12px 26px rgba(25, 21, 47, 0.18);
    transform: translateY(-50%);
}

.lp-depoimentos__control span {
    font-size: 2rem;
    line-height: 0.8;
}

.lp-depoimentos__control--prev {
    left: 0;
}

.lp-depoimentos__control--next {
    right: 0;
}

.lp-depoimento__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.lp-depoimento__data {
    color: rgba(115, 106, 132, 0.48);
    font-size: 0.92rem;
    font-weight: 800;
}

.lp-depoimento__data--novo {
    color: #fff;
    background: linear-gradient(135deg, var(--cor-pink), var(--cor-laranja));
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 0.74rem;
    letter-spacing: 0;
}

.lp-depoimento__origem {
    border: 1px solid rgba(66, 133, 244, 0.28);
    border-radius: 999px;
    color: #1a73e8;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 5px 10px;
    white-space: nowrap;
}

.lp-depoimento__header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lp-depoimento__separator {
    color: rgba(115, 106, 132, 0.38);
    font-weight: 900;
}

/* FAQ */
.lp-faq {
    background: #fffdf8;
}

.lp-accordion {
    max-width: 840px;
    margin-inline: auto;
}

.lp-accordion__item {
    border: 1px solid rgba(155, 89, 182, 0.12);
    border-radius: 18px !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(25, 21, 47, 0.06);
}

.lp-accordion__item .accordion-button {
    color: var(--cor-tinta);
    background: #fff;
    font-weight: 900;
    padding: 21px 24px;
    border-radius: 18px !important;
}

.lp-accordion__item .accordion-button:not(.collapsed) {
    color: var(--cor-pink);
    background: #fff2f8;
    box-shadow: none;
}

.lp-accordion__item .accordion-button:focus {
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.14);
}

.lp-accordion__item .accordion-body {
    color: var(--cor-muted);
    background: #fff;
    padding: 0 24px 22px;
    line-height: 1.7;
}

/* CTA FINAL */
.lp-cta-final {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 10vw, 118px) 0;
    background:
        radial-gradient(circle at 14% 20%, rgba(255, 215, 0, 0.24), transparent 18rem),
        linear-gradient(135deg, var(--cor-pink), var(--cor-roxo));
}

.lp-cta-final::before,
.lp-cta-final::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.lp-cta-final::before {
    width: 320px;
    height: 320px;
    left: -120px;
    top: -130px;
}

.lp-cta-final::after {
    width: 240px;
    height: 240px;
    right: -80px;
    bottom: -90px;
}

.lp-cta-final__titulo {
    color: #fff;
    font-size: clamp(2.1rem, 4vw, 3.7rem);
    line-height: 1;
    margin-bottom: 14px;
}

.lp-cta-final__subtitulo {
    max-width: 620px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
    line-height: 1.6;
}

.lp-lead-form {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr);
    gap: 12px;
    max-width: 850px;
    margin-inline: auto;
    padding: 12px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    backdrop-filter: blur(12px);
}

.lp-lead-form input,
.lp-lead-form textarea {
    min-width: 0;
    width: 100%;
    color: var(--cor-tinta);
    background: #fff;
    border: 0;
    border-radius: 999px;
    padding: 15px 18px;
    font-weight: 800;
    outline: none;
}

.lp-lead-form textarea {
    grid-column: 1 / -1;
    min-height: 96px;
    border-radius: 24px;
    line-height: 1.45;
    resize: vertical;
}

.lp-lead-form input::placeholder,
.lp-lead-form textarea::placeholder {
    color: rgba(25, 21, 47, 0.64);
}

.lp-lead-form input:focus,
.lp-lead-form textarea:focus {
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.28);
}

.lp-lead-form .btn-cta-hero {
    justify-self: start;
    min-width: min(100%, 310px);
}

.lp-consent {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
}

.lp-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--cor-rosa);
}

.lp-lead-form .lp-consent input {
    min-width: 18px;
    width: 18px;
    padding: 0;
    border-radius: 4px;
}

.lp-consent--light {
    color: var(--cor-tinta);
    background: rgba(255, 248, 242, 0.82);
    border: 1px solid rgba(155, 89, 182, 0.16);
    border-radius: 16px;
    padding: 12px 14px;
}

.lp-whatsapp-lead-modal .modal-content {
    overflow: hidden;
    border: 1px solid rgba(255, 105, 180, 0.18);
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(25, 21, 47, 0.22);
}

.lp-whatsapp-lead-modal .modal-header,
.lp-whatsapp-lead-modal .modal-footer {
    border: 0;
    padding: 24px 28px;
}

.lp-whatsapp-lead-modal .modal-header {
    align-items: flex-start;
    background:
        radial-gradient(circle at 10% 12%, rgba(255, 215, 0, 0.22), transparent 10rem),
        linear-gradient(135deg, rgba(255, 105, 180, 0.13), rgba(65, 105, 225, 0.08));
}

.lp-whatsapp-lead-modal .modal-body {
    padding: 24px 28px 8px;
}

.lp-whatsapp-lead-modal__kicker {
    display: block;
    color: var(--cor-pink);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lp-whatsapp-lead-modal .modal-title {
    color: var(--cor-tinta);
    font-family: var(--fonte-display);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    line-height: 0.95;
}

.lp-whatsapp-lead-modal__intro {
    color: var(--cor-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.lp-whatsapp-lead-modal .form-label {
    color: var(--cor-tinta);
    font-weight: 900;
}

.lp-whatsapp-lead-modal .form-control {
    min-height: 48px;
    border: 1px solid rgba(155, 89, 182, 0.18);
    border-radius: 16px;
    color: var(--cor-tinta);
    font-weight: 800;
}

.lp-whatsapp-lead-modal textarea.form-control {
    resize: vertical;
}

.lp-whatsapp-lead-modal .form-control:focus {
    border-color: rgba(255, 105, 180, 0.65);
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.14);
}

.lp-whatsapp-lead-modal .modal-footer {
    gap: 10px;
    justify-content: space-between;
}

.lp-cta-final .btn-cta-hero {
    background: var(--cor-amarelo);
    color: var(--cor-tinta) !important;
    box-shadow: 0 14px 32px rgba(25, 21, 47, 0.2);
}

/* FOOTER */
.lp-footer {
    color: rgba(255, 255, 255, 0.72);
    padding: 48px 0;
    background: #171327;
    font-size: 0.92rem;
}

.lp-footer__logo {
    width: min(230px, 72vw);
    max-height: 170px;
    object-fit: contain;
}

.lp-footer__social a {
    color: var(--cor-amarelo);
    font-weight: 900;
}

.lp-footer__social a:hover { color: #fff; }

.lp-footer__cnpj {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 400;
}

.lp-footer__privacy {
    max-width: 760px;
    margin: 0 auto 12px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* PAGINA PUBLICA DE DEPOIMENTO */
.lp-testimonial-page {
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: clamp(42px, 8vw, 86px) 0;
    background:
        radial-gradient(circle at 12% 14%, rgba(255, 105, 180, 0.18), transparent 22rem),
        radial-gradient(circle at 86% 10%, rgba(255, 215, 0, 0.14), transparent 18rem),
        #fffdf8;
}

.lp-testimonial-page__shell {
    display: grid;
    gap: 22px;
}

.lp-testimonial-page__intro,
.lp-testimonial-form {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(155, 89, 182, 0.14);
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    padding: clamp(24px, 5vw, 42px);
}

.lp-testimonial-page__intro {
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 14% 14%, rgba(255, 215, 0, 0.24), transparent 14rem),
        linear-gradient(135deg, var(--cor-pink), var(--cor-roxo) 58%, var(--cor-azul));
}

.lp-testimonial-page__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 560px);
    min-height: clamp(132px, 18vw, 178px);
    margin-bottom: 22px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    box-shadow: 0 18px 38px rgba(25, 21, 47, 0.16);
}

.lp-testimonial-page__logo img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.lp-testimonial-page__intro .lp-eyebrow {
    color: #fff;
    background: rgba(25, 21, 47, 0.16);
    border-color: rgba(255, 255, 255, 0.18);
}

.lp-testimonial-page__intro h1 {
    margin: 18px 0 12px;
    font-size: clamp(2.2rem, 8vw, 4.8rem);
    line-height: 0.96;
}

.lp-testimonial-page__intro p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    line-height: 1.6;
}

.lp-testimonial-form h2 {
    margin: 14px 0 0;
    color: var(--cor-tinta);
    font-family: var(--fonte-display);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
}

.lp-testimonial-form .form-label {
    color: var(--cor-tinta);
    font-weight: 900;
}

.lp-testimonial-form .form-control,
.lp-testimonial-form .form-select {
    min-height: 48px;
    border-color: rgba(155, 89, 182, 0.18);
    border-radius: 16px;
}

.lp-testimonial-form .form-control:focus,
.lp-testimonial-form .form-select:focus {
    border-color: rgba(255, 105, 180, 0.65);
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.14);
}

@media (min-width: 992px) {
    .lp-testimonial-page__shell {
        grid-template-columns: 1fr 0.9fr;
        align-items: center;
    }
}

/* TEMAS SAZONAIS */
.tema-natal { --cor-pink: #d62f43; --cor-roxo: #155b3a; --cor-azul: #1f7a8c; }
.tema-pascoa { --cor-pink: #f35ab7; --cor-roxo: #8c52ff; --cor-azul: #20b8d6; }
.tema-maes { --cor-pink: #ff5f9e; --cor-roxo: #9b59b6; --cor-azul: #53a7ff; --cor-laranja: #e94b35; }
.tema-pais { --cor-pink: #4169e1; --cor-roxo: #254b73; --cor-azul: #1593c7; }
.tema-aniversario { --cor-pink: #ff69b4; --cor-roxo: #7c4dff; --cor-azul: #00bcd4; }

/* TEMAS GLOBAIS DO SITE */
.site-theme-elegante {
    --cor-pink: #b89155;
    --cor-amarelo: #d9c59b;
    --cor-azul: #6f7f8f;
    --cor-roxo: #2f3340;
    --cor-laranja: #9d7854;
    --cor-verde: #2e7d5f;
    --cor-tinta: #171717;
    --cor-texto: #323232;
    --cor-muted: #6e6a64;
    --cor-fundo: #f7f3ec;
    --cor-papel: #fffdf8;
    --cor-linha: rgba(23, 23, 23, 0.12);
    --radius: 18px;
    --radius-lg: 26px;
    --shadow-soft: 0 18px 48px rgba(23, 23, 23, 0.08);
    --shadow-color: 0 16px 38px rgba(184, 145, 85, 0.18);
}

.site-theme-elegante {
    background: linear-gradient(180deg, #fffdf8 0%, #f7f3ec 100%);
}

.site-theme-elegante::before {
    opacity: 0.18;
    background-size: 72px 72px;
}

.site-theme-elegante .lp-header,
.site-theme-elegante .catalog-category-nav,
.site-theme-elegante .catalog-card,
.site-theme-elegante .admin-panel {
    border-color: rgba(23, 23, 23, 0.1);
}

.site-theme-elegante .lp-hero {
    background:
        linear-gradient(120deg, rgba(184, 145, 85, 0.12), transparent 36%),
        linear-gradient(300deg, rgba(47, 51, 64, 0.08), transparent 38%),
        #fffdf8;
}

.site-theme-elegante .lp-hero::before {
    background: linear-gradient(90deg, #171717, #b89155, #f7f3ec);
    opacity: 0.7;
}

.site-theme-elegante .btn-cta-hero,
.site-theme-elegante .catalog-category-nav a:hover,
.site-theme-elegante .catalog-back-top:hover {
    background: linear-gradient(135deg, #171717, #725a38);
}

.site-theme-elegante .btn-cta-secondary,
.site-theme-elegante .catalog-category-nav a,
.site-theme-elegante .catalog-back-top {
    background: #fffdf8;
    border-color: rgba(184, 145, 85, 0.26);
}

.site-theme-delicado {
    --cor-pink: #d889a5;
    --cor-amarelo: #f3d8a8;
    --cor-azul: #8aa6a3;
    --cor-roxo: #8c6f91;
    --cor-laranja: #d9a078;
    --cor-verde: #76a98f;
    --cor-tinta: #3b2d39;
    --cor-texto: #514454;
    --cor-muted: #8a7c85;
    --cor-fundo: #fff7f7;
    --cor-papel: #fffdfb;
    --cor-linha: rgba(140, 111, 145, 0.14);
    --radius-sm: 16px;
    --radius: 28px;
    --radius-lg: 44px;
    --shadow-soft: 0 18px 48px rgba(216, 137, 165, 0.16);
    --shadow-color: 0 18px 40px rgba(216, 137, 165, 0.22);
}

.site-theme-delicado {
    background:
        radial-gradient(circle at 12% 12%, rgba(216, 137, 165, 0.12), transparent 24rem),
        radial-gradient(circle at 88% 8%, rgba(138, 166, 163, 0.13), transparent 22rem),
        linear-gradient(180deg, #fffdfb 0%, #fff7f7 100%);
}

.site-theme-delicado::before {
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(216, 137, 165, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 166, 163, 0.045) 1px, transparent 1px);
}

.site-theme-delicado .lp-header {
    background: rgba(255, 253, 251, 0.9);
    border-bottom-color: rgba(216, 137, 165, 0.14);
}

.site-theme-delicado .lp-hero {
    background:
        radial-gradient(circle at 16% 20%, rgba(243, 216, 168, 0.24), transparent 18rem),
        linear-gradient(135deg, rgba(216, 137, 165, 0.13), rgba(138, 166, 163, 0.13)),
        #fffdfb;
}

.site-theme-delicado .lp-hero::before {
    background: linear-gradient(90deg, #d889a5, #f3d8a8, #8aa6a3);
    clip-path: polygon(0 46%, 12% 34%, 25% 48%, 38% 31%, 53% 44%, 69% 30%, 84% 42%, 100% 28%, 100% 100%, 0 100%);
}

.site-theme-delicado .btn-cta-hero {
    background: linear-gradient(135deg, #d889a5, #d9a078);
}

.site-theme-delicado .btn-cta-secondary,
.site-theme-delicado .catalog-category-nav a,
.site-theme-delicado .catalog-back-top {
    background: #fff7f7;
    border-color: rgba(216, 137, 165, 0.22);
}

/* RESPONSIVIDADE */
@media (max-width: 991px) {
    .lp-header .navbar-collapse {
        margin-top: 12px;
        padding: 16px;
        background: #fff;
        border-radius: 22px;
        box-shadow: var(--shadow-soft);
    }

    .lp-hero__grid {
        min-height: auto;
        padding-block: 48px 92px;
    }

    .lp-hero__texto { text-align: center; }
    .lp-eyebrow { margin-inline: auto; }
    .lp-hero__subtitulo { margin-inline: auto; }
    .lp-hero__actions,
    .lp-hero__trust { justify-content: center; }
    .lp-hero__trust li { justify-content: center; }
    .lp-hero__showcase { min-height: 390px; }
    .lp-kit__card { text-align: center; }
    .lp-kit__precos { justify-items: center; }
}

@media (max-width: 767px) {
    .lp-section { padding-block: 62px; }

    .lp-catalog-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .lp-catalog-cta .btn {
        width: 100%;
        text-align: center;
    }

    .lp-hero::before {
        height: 200px;
        bottom: -96px;
    }

    .lp-hero__titulo {
        font-size: clamp(2.35rem, 14vw, 4rem);
    }

    .lp-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .lp-hero__actions {
        flex-wrap: wrap;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        min-width: 0;
        min-height: 52px;
        padding: 13px 18px;
        font-size: clamp(0.98rem, 4.3vw, 1.08rem);
    }

    .btn-hero-primary::after {
        content: "↓";
    }

    .btn-hero-primary:hover::after,
    .btn-hero-primary:focus::after {
        transform: translateY(3px);
    }

    .lp-hero__trust {
        display: grid;
        justify-content: stretch;
        width: min(100%, 360px);
        margin-inline: auto;
        gap: 11px;
    }

    .lp-hero__trust li {
        justify-content: flex-start;
        text-align: left;
    }

    .lp-hero__showcase {
        width: 100%;
        min-height: 350px;
    }

    .lp-hero__note {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -24px auto 0;
    }

    .lp-galeria__grid,
    .lp-galeria__grid--2,
    .lp-galeria__grid--3,
    .lp-galeria__grid--4,
    .lp-galeria__grid--5 {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .lp-galeria__item,
    .lp-galeria__item:nth-child(4n + 1) {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 210px;
    }

    .lp-lead-form {
        grid-template-columns: 1fr;
        border-radius: 26px;
    }

    .lp-whatsapp-lead-modal .modal-header,
    .lp-whatsapp-lead-modal .modal-body,
    .lp-whatsapp-lead-modal .modal-footer {
        padding-inline: 20px;
    }

    .lp-whatsapp-lead-modal .modal-footer .btn {
        width: 100%;
    }

    .lp-depoimentos__carousel {
        padding-inline: 0;
    }

    .lp-depoimentos__track {
        gap: 0;
    }

    .lp-depoimentos__track .lp-depoimento {
        flex-basis: 100%;
        opacity: 1;
        filter: none;
        transform: none;
    }

    .lp-depoimentos__control {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar-brand img { width: 168px; }
    .lp-eyebrow,
    .lp-section__kicker {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 0.72rem;
    }

    .lp-galeria__grid,
    .lp-galeria__grid--2,
    .lp-galeria__grid--3,
    .lp-galeria__grid--4,
    .lp-galeria__grid--5 {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* CATALOGO PUBLICO */
.catalog-page {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.78), rgba(255, 248, 242, 0.94));
}

.catalog-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 10vw, 118px) 0 64px;
}

.catalog-hero__paint {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.2;
    pointer-events: none;
}

.catalog-hero__paint--pink {
    left: -80px;
    top: 40px;
    background: var(--cor-pink);
}

.catalog-hero__paint--yellow {
    right: -70px;
    bottom: 20px;
    background: var(--cor-amarelo);
}

.catalog-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(28px, 6vw, 76px);
    align-items: center;
}

.catalog-hero h1 {
    max-width: 760px;
    color: var(--cor-tinta);
    font-size: clamp(2.5rem, 7vw, 5.4rem);
    line-height: 0.92;
    margin: 18px 0;
}

.catalog-hero p {
    max-width: 650px;
    color: var(--cor-muted);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
}

.catalog-hero__actions,
.catalog-card__actions,
.catalog-contact__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.catalog-hero__visual {
    position: relative;
    min-height: 420px;
    border-radius: 42px 18px 42px 18px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 16%, rgba(255, 215, 0, 0.3), transparent 10rem),
        linear-gradient(135deg, rgba(255, 105, 180, 0.26), rgba(65, 105, 225, 0.18));
    border: 1px solid rgba(155, 89, 182, 0.15);
    box-shadow: var(--shadow-soft);
}

.catalog-hero__visual img,
.catalog-hero__placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.catalog-hero__placeholder {
    display: grid;
    place-items: center;
}

.catalog-hero__placeholder span {
    display: grid;
    place-items: center;
    width: 150px;
    height: 150px;
    color: #fff;
    font-family: var(--fonte-display);
    font-size: 3rem;
    border-radius: 42px 42px 42px 12px;
    background: linear-gradient(135deg, var(--cor-pink), var(--cor-laranja));
}

.catalog-hero__tag {
    position: absolute;
    right: 18px;
    bottom: 18px;
    color: var(--cor-tinta);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(25, 21, 47, 0.12);
}

.catalog-category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(155, 89, 182, 0.15);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.catalog-campaign-highlight {
    padding-top: 22px;
    padding-bottom: 22px;
}

.catalog-campaign-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(22px, 4vw, 44px);
    align-items: center;
    padding: clamp(18px, 4vw, 34px);
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 215, 0, 0.18), transparent 12rem),
        linear-gradient(135deg, rgba(255, 105, 180, 0.14), rgba(65, 105, 225, 0.1));
    border: 1px solid rgba(155, 89, 182, 0.15);
    border-radius: 34px;
    box-shadow: var(--shadow-soft);
}

.catalog-campaign-card__media {
    display: grid;
    place-items: center;
    min-height: 280px;
    overflow: hidden;
    color: #fff;
    background: #fff2f8;
    border-radius: 28px 14px 28px 14px;
    font-family: var(--fonte-display);
    font-size: 2.5rem;
    font-weight: 900;
}

.catalog-campaign-card__media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.catalog-campaign-card__media span {
    display: grid;
    place-items: center;
    width: 120px;
    height: 120px;
    border-radius: 34px 34px 34px 10px;
    background: linear-gradient(135deg, var(--cor-pink), var(--cor-laranja));
}

.catalog-campaign-card__content h2 {
    color: var(--cor-roxo);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin: 10px 0 0;
}

.catalog-campaign-card__content h3 {
    color: var(--cor-tinta);
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1;
    margin: 2px 0 12px;
}

.catalog-campaign-card__content p {
    color: var(--cor-muted);
    line-height: 1.7;
    max-width: 680px;
}

.catalog-category-nav a,
.catalog-back-top {
    color: var(--cor-tinta);
    background: #fff2f8;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
}

.catalog-category-nav a:hover,
.catalog-back-top:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--cor-pink), var(--cor-roxo));
}

.catalog-section {
    padding-top: 38px;
}

.catalog-section__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    margin-bottom: 26px;
}

.catalog-section__head h2 {
    color: var(--cor-tinta);
    margin: 10px 0 0;
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.catalog-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(155, 89, 182, 0.14);
    border-radius: 28px 14px 28px 14px;
    box-shadow: var(--shadow-soft);
}

.catalog-card__media {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    background: #fff2f8;
    color: var(--cor-roxo);
    font-family: var(--fonte-display);
    font-size: 2.5rem;
    font-weight: 900;
    overflow: hidden;
}

.catalog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-card__media img {
    transform: scale(1.05);
}

.catalog-card__body {
    padding: 20px;
}

.catalog-card__category {
    display: inline-block;
    color: var(--cor-pink);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.catalog-card h3 {
    color: var(--cor-tinta);
    font-size: 1.55rem;
    margin-bottom: 8px;
}

.catalog-card p {
    color: var(--cor-muted);
    line-height: 1.55;
}

.catalog-card__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin: 16px 0;
    color: var(--cor-muted);
    font-weight: 900;
}

.catalog-card__meta strong {
    color: var(--cor-roxo);
    font-size: 1.15rem;
}

.catalog-modal .modal-content {
    border: 1px solid rgba(155, 89, 182, 0.16);
    border-radius: 28px;
}

.catalog-modal__grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
}

.catalog-modal__image {
    display: grid;
    place-items: center;
    min-height: 280px;
    background: #fff2f8;
    border-radius: 22px;
    overflow: hidden;
    color: var(--cor-roxo);
    font-family: var(--fonte-display);
    font-size: 2.2rem;
    font-weight: 900;
}

.catalog-modal__image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.catalog-modal__gallery {
    min-width: 0;
}

.catalog-product-carousel {
    overflow: hidden;
    background: #fff2f8;
    border-radius: 22px;
}

.catalog-product-carousel .carousel-inner {
    border-radius: 22px;
}

.catalog-product-carousel .carousel-item {
    background: #fff2f8;
}

.catalog-product-carousel .carousel-item img {
    width: 100%;
    height: min(52vh, 430px);
    min-height: 280px;
    object-fit: cover;
}

.catalog-product-carousel .carousel-control-prev,
.catalog-product-carousel .carousel-control-next {
    width: 46px;
}

.catalog-product-carousel .carousel-control-prev-icon,
.catalog-product-carousel .carousel-control-next-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--cor-tinta);
    background-size: 50%;
}

.catalog-product-carousel__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.72);
}

.catalog-product-carousel__thumbs button {
    flex: 0 0 62px;
    width: 62px;
    height: 54px;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #fff;
}

.catalog-product-carousel__thumbs button.active,
.catalog-product-carousel__thumbs button:hover,
.catalog-product-carousel__thumbs button:focus-visible {
    border-color: var(--cor-pink);
}

.catalog-product-carousel__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-detail-list {
    display: grid;
    gap: 8px;
    padding-left: 18px;
    color: var(--cor-texto);
}

.catalog-contact {
    padding: 52px 0 72px;
}

.catalog-contact__box,
.catalog-empty {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.16), rgba(255, 215, 0, 0.16));
    border: 1px solid rgba(155, 89, 182, 0.14);
    border-radius: 34px;
    box-shadow: var(--shadow-soft);
    padding: clamp(24px, 5vw, 44px);
}

.catalog-contact__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.catalog-contact__box h2,
.catalog-empty h2 {
    color: var(--cor-tinta);
    font-size: clamp(2rem, 5vw, 3rem);
}

.catalog-contact__box p {
    max-width: 700px;
    color: var(--cor-muted);
    line-height: 1.7;
}

.catalog-contact__links a {
    color: var(--cor-roxo);
    font-weight: 900;
}

@media (max-width: 991px) {
    .catalog-hero__grid,
    .catalog-modal__grid,
    .catalog-campaign-card {
        grid-template-columns: 1fr;
    }

    .catalog-hero__visual,
    .catalog-hero__visual img,
    .catalog-hero__placeholder {
        min-height: 320px;
    }

    .catalog-contact__box,
    .catalog-section__head {
        display: grid;
    }
}

@media (max-width: 560px) {
    .catalog-card__actions .btn,
    .catalog-hero__actions .btn,
    .catalog-contact__box .btn {
        width: 100%;
    }
}
