/* ===== FONTS ===== */
@font-face {
    font-family: 'Cooper Black';
    src: url('fonts/CooperBlack-Std.otf') format('opentype');
    font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Bluetea';
    src: url('fonts/Bluetea.otf') format('opentype');
    font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Alphazet';
    src: url('fonts/Alphazet-SemiBold.otf') format('opentype');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Caveat';
    src: url('fonts/Caveat.ttf') format('truetype');
    font-weight: 400 700; font-style: normal; font-display: swap;
}

/* ===== VARIABLES & RESET ===== */
:root {
    --pink: #e9adcf;
    --pink-soft: #fbe7f1;
    --pink-deep: #c75a93;
    --purple: #8a5fb0;
    --cream: #fdf7ef;
    --cream-2: #f7ecdd;
    --white: #ffffff;
    --ink: #2e2228;
    --ink-soft: #6b5a61;
    --muted: #9a8b90;
    --line: #eaddd0;

    --font-display: 'Cooper Black', Georgia, serif;
    --font-script: 'Caveat', 'Brush Script MT', cursive;
    --font-accent: 'Alphazet', 'Helvetica Neue', sans-serif;
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --header-h: 76px;
    --radius: 16px;
    --radius-lg: 28px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --shadow: 0 20px 50px rgba(46,34,40,.10);
    --shadow-pink: 0 18px 44px rgba(199,90,147,.22);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container { position: relative; z-index: 2; width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; overflow: hidden; }
.bg-cream { background: var(--cream); }
.bg-cream-2 { background: var(--cream-2); }
.bg-white { background: var(--white); }

/* ===== SPRINKLES (aleatorios, generados por JS) ===== */
.spk { position: absolute; pointer-events: none; z-index: 1; }
.section__header--center, .about__content, .shop__content, .hero__text { position: relative; }

/* ===== SECTION HEADERS ===== */
.section__tag {
    display: block;
    font-family: var(--font-script);
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 1;
    color: var(--pink-deep);
    margin-bottom: 6px;
}
.section__title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: .3px;
}
.section__desc {
    font-size: 1.08rem;
    color: var(--ink-soft);
    max-width: 580px;
}
.section__header--center { text-align: center; margin-bottom: 64px; }
.section__header--center .section__desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    gap: 8px;
}
.btn--primary { background: var(--pink-deep); color: #fff; }
.btn--primary:hover { background: #b34a82; transform: translateY(-2px); box-shadow: var(--shadow-pink); }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--full { width: 100%; }

/* ===== HEADER / NAV ===== */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    height: var(--header-h); z-index: 1000;
    transition: all var(--transition);
}
.header--scrolled {
    background: rgba(253,247,239,.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(46,34,40,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 40px; width: auto; display: block; }
.nav__menu { display: flex; align-items: center; gap: 30px; }
.nav__link {
    font-size: 15px; font-weight: 700; color: var(--ink);
    position: relative; padding: 4px 0;
}
.nav__link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--pink-deep);
    transition: width var(--transition);
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__cta {
    background: var(--pink-deep); color: #fff !important;
    padding: 10px 22px; border-radius: 50px; font-weight: 800;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: #b34a82; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); transition: all var(--transition); }
.nav__close-wrap { display: none; }
.nav__close { background: none; border: none; color: var(--ink); font-size: 2rem; cursor: pointer; padding: 0; line-height: 1; }
.nav__close:hover { color: var(--pink-deep); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--cream);
    overflow: hidden;
    padding-top: var(--header-h);
}
.hero__deco {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--pink-soft) 0%, transparent 70%);
    z-index: 0;
}
.hero__deco--1 { width: 560px; height: 560px; top: -160px; right: -120px; }
.hero__deco--2 { width: 420px; height: 420px; bottom: -160px; left: -140px; }
.hero__grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.05fr 1fr;
    gap: 56px; align-items: center; width: 100%;
}
.hero__tag {
    font-family: var(--font-script);
    font-size: 2.8rem; font-weight: 700; line-height: 1; color: var(--pink-deep);
    margin-bottom: 10px;
    animation: fadeInUp .8s ease-out .1s both;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.1rem);
    line-height: 1.04; color: var(--ink); margin-bottom: 22px;
    animation: fadeInUp .8s ease-out .25s both;
}
.hero__title em { font-style: normal; color: var(--pink-deep); }
.hero__desc {
    font-size: 1.12rem; color: var(--ink-soft);
    max-width: 460px; margin-bottom: 34px;
    animation: fadeInUp .8s ease-out .4s both;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp .8s ease-out .55s both; }

.hero__media { position: relative; animation: fadeIn 1s ease-out .3s both; }
.hero__photo {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    border-radius: 180px 180px var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow);
}
.hero__photo-float {
    position: absolute; bottom: -26px; left: -34px;
    width: 168px; height: 168px; object-fit: cover;
    border-radius: 50%; border: 7px solid var(--cream);
    box-shadow: var(--shadow);
}
.hero__badge {
    position: absolute; top: 18px; right: -26px;
    width: 150px; height: auto;
    filter: drop-shadow(0 10px 22px rgba(199,90,147,.28));
    transform: rotate(8deg);
    animation: floaty 4s ease-in-out infinite;
}
.hero__scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--muted); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; z-index: 2;
}
.hero__scroll-line {
    width: 1px; height: 38px;
    background: linear-gradient(to bottom, var(--pink-deep), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ===== ABOUT ===== */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__images { position: relative; }
.about__img--main {
    border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/5;
    object-fit: cover; box-shadow: var(--shadow);
}
.about__img--float {
    position: absolute; bottom: -30px; right: -28px;
    width: 200px; height: 200px; object-fit: cover;
    border-radius: var(--radius); border: 6px solid var(--white);
    box-shadow: var(--shadow);
}
.about__content p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.06rem; }
.about__sign {
    font-family: var(--font-script); font-size: 2.4rem; font-weight: 700;
    color: var(--pink-deep); margin: 6px 0 4px;
}
.about__stats { display: flex; gap: 44px; margin-top: 34px; padding-top: 32px; border-top: 1px solid var(--line); }
.about__stat-number { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--pink-deep); }
.about__stat-label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== PRODUCTS ===== */
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
    display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(199,90,147,.20); }
.product-card__img-wrap { aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0; }
.product-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-card__img-wrap img { transform: scale(1.07); }
.product-card__body { padding: 26px 28px 30px; flex: 1; }
.product-card__body h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 10px; color: var(--pink-deep); }
.product-card__body p { font-size: .96rem; color: var(--ink-soft); line-height: 1.6; }

/* ===== GALLERY ===== */
.gallery__grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px; grid-auto-flow: dense; gap: 16px;
}
.gallery__item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 10px 30px rgba(46,34,40,.08); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(199,90,147,.35), transparent 60%);
    opacity: 0; transition: opacity var(--transition);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ===== SHOP ===== */
.shop__card {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, var(--pink-soft) 100%);
    border: 1.5px solid var(--pink);
    border-radius: var(--radius-lg);
    padding: 64px 48px; text-align: center;
    box-shadow: var(--shadow);
}
.shop__content { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.shop__desc { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 44px; }
.shop__features { display: flex; justify-content: center; gap: 48px; margin-bottom: 44px; flex-wrap: wrap; }
.shop__feature { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.shop__feature-icon {
    width: 66px; height: 66px; border-radius: 50%;
    background: var(--white); border: 2px solid var(--pink);
    display: flex; align-items: center; justify-content: center; color: var(--pink-deep);
    box-shadow: 0 8px 20px rgba(199,90,147,.14);
}
.shop__feature span { font-size: 14px; font-weight: 700; color: var(--ink); }
.shop__cta { padding-top: 40px; border-top: 1px solid var(--pink); }
.shop__coming {
    font-family: var(--font-script); font-size: 3rem; font-weight: 700; color: var(--pink-deep);
    margin-bottom: 8px; animation: pulse 2.4s ease-in-out infinite;
}
.shop__notify { color: var(--ink-soft); margin-bottom: 24px; }

/* ===== CONTACT ===== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 18px; }
.contact__card {
    display: flex; align-items: center; gap: 20px; padding: 22px 24px;
    background: var(--white); border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(46,34,40,.06); transition: all var(--transition);
}
.contact__card:hover { transform: translateX(8px); box-shadow: var(--shadow-pink); }
.contact__card-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--pink-deep); color: #fff;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact__card-icon--whatsapp { background: #25d366; }
.contact__card-icon--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contact__card h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 2px; }
.contact__card a { font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.contact__card a:hover { color: var(--pink-deep); }
.contact__form-wrap { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.form__group input, .form__group select, .form__group textarea {
    width: 100%; padding: 15px 18px; font-family: var(--font-body); font-size: 15px;
    border: 2px solid var(--line); border-radius: var(--radius); background: var(--cream);
    color: var(--ink); transition: border-color var(--transition); outline: none;
}
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { border-color: var(--pink-deep); background: #fff; }
.form__group textarea { resize: vertical; min-height: 120px; }
.form__group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c75a93' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; cursor: pointer;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px;
    background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; z-index: 999;
    box-shadow: 0 6px 24px rgba(37,211,102,.4); transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: #d8c9cf; }
.footer__top {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
    padding: 64px 0 44px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__logo { width: 92px; margin-bottom: 16px; }
.footer__brand p { font-size: .94rem; line-height: 1.7; color: #b8a6ad; }
.footer__links h4 { font-family: var(--font-display); color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: .92rem; color: #b8a6ad; }
.footer__links a:hover { color: var(--pink); }
.footer__bottom { padding: 22px 0; text-align: center; font-size: .85rem; color: #8a787f; }
.footer__bottom a { color: var(--pink); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floaty { 0%,100% { transform: rotate(8deg) translateY(0); } 50% { transform: rotate(8deg) translateY(-10px); } }
@keyframes scrollLine { 0%,100% { opacity: .3; transform: scaleY(.5); } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .55; } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
    .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .hero__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero__desc { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__media { max-width: 420px; margin: 0 auto; order: -1; }
    .about__grid { grid-template-columns: 1fr; gap: 56px; }
    .contact__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .nav__toggle { display: flex; }
    .nav__menu {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--cream); flex-direction: column; align-items: flex-start;
        padding: 100px 40px 40px; gap: 24px; transition: right var(--transition);
        box-shadow: -10px 0 40px rgba(46,34,40,.18);
    }
    .nav__menu.open { right: 0; }
    .nav__close-wrap { display: block; text-align: right; width: 100%; margin-bottom: 8px; }
    .nav__link { font-size: 18px; }
    .products__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .shop__features { gap: 28px; }
    .footer__top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .hero__photo-float { width: 120px; height: 120px; bottom: -16px; left: -10px; }
    .hero__badge { width: 118px; right: -6px; }
    .about__img--float { width: 140px; height: 140px; bottom: -20px; right: -10px; }
    .about__stats { flex-direction: column; gap: 18px; }
    .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gallery__item--tall, .gallery__item--wide { grid-row: span 1; grid-column: span 1; }
    .shop__features { flex-direction: column; }
    .shop__card { padding: 44px 24px; }
    .contact__form-wrap { padding: 28px; }
}
