/* ====================GERAL============================== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary-color: hsl(33, 100%, 50%);
--headline: hsl(210, 11%, 15%);
--paragraph: hsl(210, 9%, 31%);
--brand-beige: hsl(39, 100%, 97%);
--brand-light: hsl(148, 23%, 89%);
--bg-light: hsl(180, 14%, 97%);
font-size: 62.5%;
/* 1rem = 10px */
--nav-height: 7.2rem;
--zt-pink: #ff5ca7;
--zt-red: #ff2a68;
--zt-white: #fff;
--zt-black: #18141c;
--zt-blue: #7ed6ff;
--zt-shadow: 0 4px 24px 0 rgba(255, 92, 167, 0.15);
--zt-radius: 1.6rem;
--zt-gradient: linear-gradient(135deg, #ff5ca7 0%, #ff2a68 100%);
}

html {
scroll-behavior: smooth;
}

html,
body {
width: 100%;
height: 100%;
}

body {
font-family: 'Poppins', 'DM Sans', Arial, sans-serif;
font-size: 1.6rem;
text-align: center;
overflow: overlay;
color: var(--zt-white);
min-height: 100vh;
position: relative;
background-image: linear-gradient(120deg, #ffe0f7, #ffe6fa, #ffe0f7, #f3c6e8, #ffe0f7), url('https://telegra.ph/file/21da2729b002ac3cb29c3.jpg');
background-size: 400% 400%, cover;
background-repeat: no-repeat, no-repeat;
background-position: center, center;
background-attachment: fixed, fixed;
background-blend-mode: lighten;
overflow-x: hidden;
}

.wrapper {
width: 37.5rem;
margin-inline: auto;
padding-inline: 2.4rem;
}

ul {
list-style: none;
}

section {
padding-block: 10rem;
}

/* Container para as pétalas */
.petals {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden;
z-index: 1;
}

.petal {
position: absolute;
width: 20px;
height: 20px;
background: url('https://lucasmod2.sirv.com/scaled_1006492249_transformed.png'); /* Substitua pelo link da imagem da pétala */
background-size: cover;
opacity: 0.7;
animation: fall linear infinite;
}

/* Animação de queda */
@keyframes fall {
0% {
transform: translateY(-100px);
opacity: 0;
}
10% {
opacity: 1;
}
100% {
transform: translateY(100vh);
opacity: 0;
}
}
/* ====================EFEITO DE NEVE======================= */
.snow {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1000;
}

.snow .flake {
position: absolute;
top: -10px;
background: white;
border-radius: 50%;
opacity: 0.8;
pointer-events: none;
animation: fall linear infinite;
}

@keyframes fall {
0% {
transform: translateY(0);
}
100% {
transform: translateY(100vh);
}
}
/* ==============================HOME============================== */
#home {
padding-top: calc(4.1rem + var(--nav-height));
}
#home::before {
content: '';
width: 100%;
height: calc(108rem + var(--nav-height));
background-color: var(--brand-light);
display: block;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
#home h4 {
font-size: 1.4rem;
color: var(--primary-color);
margin-bottom: 1.6rem;
}
#home h1 {
font-size: 3.4rem;
color: var(--headline);
line-height: 130%;
margin-bottom: 2.4rem;
}
#home p {
font-size: 1.8rem;
line-height: 150%;
font-weight: 400;
color: var(--paragraph);
margin-bottom: 3.2rem;
}
#home button {
background: var(--primary-color);
border: none;
border-radius: 4rem;
margin-bottom: 6rem;
height: 6.2rem;
width: 26.3rem;
color: hsl(0, 0%, 100%);
text-transform: uppercase;
font-size: 1.4rem;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
gap: 1.6rem;
margin-right: auto;
margin-left: auto;
}
#home img {
width: 26.4rem;
display: block;
margin-inline: auto;
object-position: 0 2rem;
}
#home .stats {
width: 32.7rem;
padding-block: 4rem;
margin-inline: auto;
background-color: var(--brand-beige);
display: flex;
flex-direction: column;
justify-content: center;
gap: 6rem;
border: 1px solid var(--brand-light);
border-radius: .6rem;
}
#home .stat h3 {
font-size: 4.8rem;
color: var(--headline);
line-height: 130%;
margin-bottom: .4rem;
}
#home .stat p {
margin: 0;
color: var(--primary-color);
font-size: 1.6rem;
line-height: 150%;
}
/* ==============================NAVIGATION============================== */
nav {
display: flex;
padding: 1.6rem 2.4rem;
position: fixed;
top: 0;
left: 50%;
transform: translateX(-50%);
height: var(--nav-height);
}
nav .wrapper {
display: flex;
align-items: center;
justify-content: space-between;
}
nav.scroll {
background: var(--primary-color);
width: 100vw;
}
nav.scroll svg:nth-child(1) path {
fill: hsl(0, 0%, 100%);
}
nav.scroll button path {
stroke: hsl(0, 0%, 100%);
}
nav button {
background: none;
border: none;
cursor: pointer;
}
/* ==============================MENU-EXPANDED============================== */
body.menu-expanded {
overflow: hidden;
}
body.menu-expanded > :not(nav) {
display: none;
}
.menu, 
.close-menu,
body.menu-expanded .open-menu {
opacity: 0;
visibility: hidden;
}
body.menu-expanded .menu, 
body.menu-expanded .close-menu {
opacity: 1;
visibility: visible;
}
.menu {
transform: translateY(-100%);
}
body.menu-expanded .menu {
position: fixed;
top: 0;
left: 0;
background: var(--primary-color);
width: 100vw;
height: 100vh;
padding-top: var(--nav-height);
transition: transform 700ms;
transform: translateY(0);
}
body.menu-expanded nav {
position: relative;
}
.menu ul:nth-child(1) {
display: flex;
flex-direction: column;
gap: 4.8rem;
margin-top: 6rem;
font-weight: 700;
font-size: 2.4rem;
line-height: 3.2rem;
}
.menu ul li a {
color: hsl(0, 0%, 100%);
text-decoration: none;
}
.menu .button {
background-color: hsl(0, 0%, 100%);
border-radius: 4rem;
font-weight: 700;
font-size: 1.8rem;
line-height: 2.3rem;
text-transform: uppercase;
text-decoration: none;
color: var(--primary-color);
display: inline-block;
padding: 1.6rem 3.2rem;
margin-top: 4.8rem;
margin-bottom: 8rem;
} 
.social-links {
display: flex;
align-items: center;
justify-content: center;
gap: 3.2rem;
}
body.menu-expanded .logo,
body.menu-expanded button {
position: relative;
z-index: 10;
}
body.menu-expanded .logo path {
fill: hsl(0, 0%, 100%);
}
body.menu-expanded button path {
stroke: hsl(0, 0%, 100%);
}
/* ==============================SERVICES============================== */
/* Estilos antigos removidos para limpeza */

main {
padding: 2rem 1.5rem;
max-width: 1200px;
margin: 0 auto;
z-index: 2;
position: relative;
}

.store-intro {
text-align: center;
margin-bottom: 3.5rem;
}

.store-intro h2 {
font-size: 2.5rem;
color: var(--zt-pink);
margin-bottom: 1rem;
font-weight: 700;
text-shadow: 0 2px 10px rgba(255, 92, 167, 0.4);
}

.store-intro p {
font-size: 1.2rem;
color: var(--zt-white);
opacity: 0.85;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

.product-section {
margin-bottom: 3rem;
}

.section-title {
font-size: 2rem;
color: var(--zt-white);
text-align: center;
margin-bottom: 2rem;
padding-bottom: 0.8rem;
border-bottom: 2px solid var(--zt-pink);
display: inline-block;
position: relative;
left: 50%;
transform: translateX(-50%);
letter-spacing: 1px;
text-shadow: 2px 2px 8px #ffb3da, 0 0 2px #fff;
-webkit-text-stroke: 1px #ffb3da;
}

.section-title span {
margin-right: 0.8rem;
}

/* ==================== ZERO TWO THEME ==================== */
.zero-two-bg {
position: fixed;
top: 0; left: 0; width: 100vw; height: 100vh;
background: var(--zt-gradient), url('https://i.imgur.com/0y0y0y0.jpg') center/cover no-repeat;
opacity: 0.18;
z-index: 0;
pointer-events: none;
}

.zt-header {
display: flex;
flex-direction: column;
align-items: center;
padding: 3rem 1rem 2rem 1rem;
background: transparent;
z-index: 2;
position: relative;
}
.zt-img {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
border: 4px solid var(--zt-pink);
box-shadow: var(--zt-shadow);
margin-bottom: 1.2rem;
}
.zt-title {
font-size: 2.8rem;
font-weight: 700;
color: var(--zt-pink);
margin-bottom: 0.5rem;
letter-spacing: 2px;
}
.zt-subtitle {
font-size: 1.3rem;
color: var(--zt-white);
opacity: 0.8;
margin-bottom: 1.5rem;
}

.cards {
display: flex;
flex-wrap: wrap;
gap: 2.5rem;
justify-content: center;
margin-top: 2rem;
}
.card {
background: var(--zt-card-bg, #fff5f7);
color: var(--zt-card-text, #5c3b54);
border-radius: 2.2rem;
box-shadow: var(--zt-card-shadow, 0 4px 24px 0 rgba(255, 92, 167, 0.18)), 0 1.5px 0 0 #ffb3da inset;
padding: 2.5rem 2rem 2rem 2rem;
width: 320px;
max-width: 95vw;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
border: 3px solid var(--zt-card-border, transparent);
background-clip: padding-box, border-box;
background-origin: padding-box, border-box;
transition: transform 0.25s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.25s, border 0.25s, background 0.25s, color 0.25s;
overflow: visible;
}
.card:before {
content: '';
position: absolute;
top: -3px; left: -3px; right: -3px; bottom: -3px;
z-index: 0;
border-radius: 2.5rem;
background: var(--zt-card-glow, linear-gradient(120deg, #ff5ca7, #b388ff, #ffb3da, #ff5ca7));
background-size: 200% 200%;
animation: borderGradientMove 6s linear infinite;
opacity: 0.7;
}
.card > * { position: relative; z-index: 1; }
.card .card-glow {
position: absolute;
top: 0; left: 0; right: 0;
height: 38px;
border-radius: 2.2rem 2.2rem 0 0;
background: var(--zt-card-glow-top, linear-gradient(180deg, #fff 60%, transparent 100%));
opacity: 0.7;
z-index: 2;
pointer-events: none;
}
.card:hover {
transform: translateY(-12px) scale(1.045) rotate(-1deg);
box-shadow: var(--zt-card-hover-shadow, 0 16px 48px 0 #ffb3da99), 0 1.5px 0 0 #ffb3da inset;
border-color: var(--zt-card-hover-border, #ff5ca7);
background: var(--zt-card-hover-bg, var(--zt-card-bg, #fff5f7));
}
.card-icon {
width: 60px;
height: 60px;
margin-bottom: 1.2rem;
border-radius: 50%;
border: 2px solid var(--zt-pink);
background: var(--zt-gradient);
object-fit: cover;
}
.card h3 {
font-size: 1.5rem;
color: var(--zt-pink);
margin-bottom: 0.7rem;
font-weight: 700;
text-shadow: 1px 1px 3px rgba(255, 92, 167, 0.1);
}
.card span {
font-size: 2.2rem;
color: var(--zt-red);
font-weight: 700;
text-shadow: 1px 1px 3px rgba(255, 42, 104, 0.2);
}
.meses {
color: var(--zt-desc-color, #7d5a73);
font-size: 1.1rem;
margin-bottom: 0.7rem;
background: var(--zt-desc-bg, none);
border-radius: var(--zt-desc-radius, 1.2rem);
padding: var(--zt-desc-padding, 0.2em 0.7em);
box-shadow: var(--zt-desc-shadow, none);
border: var(--zt-desc-border, none);
display: inline-block;
font-weight: var(--zt-desc-weight, 500);
transition: all 0.3s;
}
.card .meses span {
color: var(--zt-desc-price, var(--zt-pink));
font-weight: 700;
font-size: 1.3rem;
margin-right: 0.3em;
text-shadow: var(--zt-desc-price-shadow, none);
}
.card .meses p.meses {
display: inline;
color: var(--zt-desc-detail, var(--zt-red));
font-size: 1.05rem;
font-weight: 600;
background: var(--zt-desc-detail-bg, none);
border-radius: var(--zt-desc-detail-radius, 0.7em);
padding: var(--zt-desc-detail-padding, 0.1em 0.5em);
margin-left: 0.3em;
box-shadow: var(--zt-desc-detail-shadow, none);
border: var(--zt-desc-detail-border, none);
text-shadow: var(--zt-desc-detail-shadow, none);
transition: all 0.3s;
}
.ul-check {
list-style: none;
padding: 0;
margin: 1rem 0 1.5rem 0;
}
.ul-check li {
margin-bottom: 0.5rem;
padding-left: 1.2rem;
position: relative;
font-size: 1.05rem;
}
.ul-check li:before {
content: '❤';
color: var(--zt-pink);
position: absolute;
left: 0;
font-size: 1.1rem;
top: 0;
}
.ul-check .negado:before {
content: '✖';
color: var(--zt-red);
}
.zt-btn {
background: var(--zt-gradient);
color: var(--zt-white);
border: none;
border-radius: 2rem;
padding: 0.9rem 2.2rem;
font-size: 1.1rem;
font-weight: 700;
box-shadow: var(--zt-shadow);
transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
cursor: pointer;
text-decoration: none;
margin-top: 0.5rem;
position: relative;
overflow: hidden;
}
.zt-btn:hover {
background: var(--zt-btn-hover, linear-gradient(135deg, #ff2a68 0%, #ff5ca7 100%));
transform: scale(1.08) rotate(-2deg);
box-shadow: 0 0 16px #ffb3da99;
}
.zt-btn::after {
content: '';
position: absolute;
left: -75%;
top: 0;
width: 50%;
height: 100%;
background: linear-gradient(120deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.0) 100%);
transform: skewX(-20deg);
transition: left 0.5s;
}
.zt-btn:hover::after {
left: 120%;
transition: left 0.5s;
}
.zt-footer {
text-align: center;
padding: 2rem 1rem 1.5rem 1rem;
color: var(--zt-white);
font-size: 1.1rem;
opacity: 0.8;
z-index: 2;
position: relative;
}
.footer-heart {
display: inline-block;
vertical-align: middle;
width: 1.2em;
height: 1.2em;
fill: var(--zt-pink);
margin: 0 0.2em;
animation: pulseHeart 1.5s infinite ease-in-out;
filter: drop-shadow(0 0 5px var(--zt-pink));
}
@keyframes pulseHeart {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.15); }
}
.zt-decor {
position: fixed;
pointer-events: none;
z-index: 10;
top: 0; left: 0; width: 100vw; height: 100vh;
}
.zt-heart, .zt-heart2 {
position: absolute;
width: 48px;
opacity: 0.7;
animation: floatHeart 6s infinite ease-in-out;
}
.zt-heart {
top: 10%; left: 5%;
animation-delay: 0s;
}
.zt-heart2 {
bottom: 8%; right: 7%;
animation-delay: 2s;
}
@keyframes floatHeart {
0% { transform: scale(1) translateY(0); }
50% { transform: scale(1.1) translateY(-18px); }
100% { transform: scale(1) translateY(0); }
}

.zt-horns {
position: absolute;
top: -18px;
left: 50%;
transform: translateX(-50%);
z-index: 3;
}
.zt-horns-img {
width: 60px;
height: auto;
filter: drop-shadow(0 2px 8px #ff5ca7cc);
stroke: var(--zt-pink); /* Cor da linha do chifre */
}

.zt-emoji {
font-size: 1.2em;
vertical-align: middle;
}

.zt-badge {
background: var(--zt-badge-bg, var(--zt-gradient));
color: var(--zt-badge-text, #fff);
font-size: 0.95rem;
font-weight: 700;
padding: 0.3em 1em;
border-radius: 1em;
box-shadow: 0 2px 8px #ff5ca733;
letter-spacing: 1px;
z-index: 2;
animation: badgePop 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
.zt-badge-hot { background: linear-gradient(90deg, #ff5ca7 60%, #ff2a68 100%); }
.zt-badge-new { background: linear-gradient(90deg, #7ed6ff 60%, #ff5ca7 100%); }
.zt-badge-best { background: linear-gradient(90deg, #ff2a68 60%, #ff5ca7 100%); }
@keyframes badgePop {
0% { transform: scale(0.5) rotate(-10deg); opacity: 0; }
80% { transform: scale(1.1) rotate(2deg); opacity: 1; }
100% { transform: scale(1) rotate(0); }
}

#zt-hearts-container {
pointer-events: none;
position: fixed;
left: 0; top: 0; width: 100vw; height: 100vh;
z-index: 10000;
}

.zt-heart-falling {
position: fixed;
top: -40px;
pointer-events: none;
z-index: 10001;
animation: zt-heart-fall linear forwards;
opacity: 0.85;
filter: drop-shadow(0 2px 8px #ff5ca7cc);
will-change: transform, opacity;
}
@keyframes zt-heart-fall {
0% { transform: translateY(0) scale(1) rotate(-10deg); opacity: 0.7; }
80% { opacity: 1; }
100% { transform: translateY(100vh) scale(1.2) rotate(10deg); opacity: 0; }
}

/* Responsividade */
@media (max-width: 600px) {
main {
padding: 1.5rem 1rem;
}
.store-intro h2 {
font-size: 2rem;
}
.store-intro p {
font-size: 1rem;
}
.section-title {
font-size: 1.5rem;
}
.zt-header { padding: 2rem 0.5rem 1.2rem 0.5rem; }
.zt-title { font-size: 2rem; }
.zt-img { width: 80px; height: 80px; }
.cards { gap: 1.2rem; }
.card { width: 98vw; min-width: 0; padding: 1.2rem 0.5rem; }
.zt-badge { font-size: 0.8rem; padding: 0.2em 0.7em; top: 10px; left: 10px; }
.zt-horns-img { width: 38px; }
}

.card-icon-svg {
width: 60px;
height: 60px;
margin-bottom: 1.2rem;
display: flex;
align-items: center;
justify-content: center;
}
.card-icon-svg svg {
width: 100%;
height: 100%;
display: block;
}

.theme-switcher {
position: fixed;
top: 18px;
right: 18px;
z-index: 9999;
display: flex;
flex-direction: column;
align-items: flex-end;
}
#themeBtn {
background: linear-gradient(120deg, #ff5ca7, #b388ff);
color: #fff;
border: none;
border-radius: 50%;
width: 48px;
height: 48px;
font-size: 1.7rem;
box-shadow: 0 2px 12px #ffb3da88;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
outline: none;
}
#themeBtn:hover {
transform: scale(1.08) rotate(-8deg);
box-shadow: 0 0 16px #ffb3da99;
}
.theme-menu {
display: none;
flex-direction: column;
margin-top: 8px;
background: #fff5f7;
border-radius: 1.2rem;
box-shadow: 0 4px 16px #ffb3da55;
padding: 0.7rem 0.5rem;
min-width: 140px;
animation: fadeInMenu 0.3s;
}
.theme-switcher.open .theme-menu {
display: flex;
}
@keyframes fadeInMenu {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
.theme-option {
background: none;
border: none;
color: #ff5ca7;
font-weight: 700;
font-size: 1.1rem;
padding: 0.5em 0.7em;
border-radius: 0.7em;
margin: 0.1em 0;
cursor: pointer;
transition: background 0.2s, color 0.2s;
}
.theme-option:hover, .theme-option.active {
background: linear-gradient(90deg, #ffb3da 60%, #b388ff 100%);
color: #fff;
}
@media (max-width: 600px) {
.theme-switcher { top: 8px; right: 8px; }
#themeBtn { width: 38px; height: 38px; font-size: 1.2rem; }
.theme-menu { min-width: 100px; }
}

#zt-bg-special {
position: fixed;
top: 0; left: 0; width: 100vw; height: 100vh;
z-index: 0;
pointer-events: none;
transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
opacity: 1;
will-change: opacity;
}
body.theme-animating #zt-bg-special {
opacity: 0;
}