*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Nunito', sans-serif;
    background: #fff;
    color: #333;
}

/* ───── HEADER ───── */
header {
    background: #fff;
    border-bottom: 2px solid #f0e6ff;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(180,100,220,0.08);
}
.search-form {
    display: flex;
    max-width: 480px;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(180,100,220,0.2);
    align-items: center;
}
.search-form input {
    flex: 1;
    padding: 15px 24px;
    border: none;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    outline: none;
    color: #333;
}
.search-form input::placeholder {
    color: #bbb;
}
.search-form-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a3070;
    transition: color 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.search-form-btn:hover {
    color: #c040b0;
    transform: scale(1.1);
}
.search-form-btn svg {
    width: 22px;
    height: 22px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #c040b0;
    letter-spacing: -0.5px;
}
.logo span { color: #7c3aed; }

nav a {
    margin-left: 24px;
    text-decoration: none;
    color: #555;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s;
}
nav a:hover { color: #c040b0; }

.header-icons {
    display: flex;
    gap: 18px;
    align-items: center;
}
.header-icons svg { cursor: pointer; }
.cart-btn {
    background: #c040b0;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}
.cart-btn:hover { background: #a030a0; }

/* ───── ANNOUNCEMENT BAR ───── */
.announcement {
    background: linear-gradient(90deg, #c040b0, #7c3aed, #c040b0);
    /*background: linear-gradient(90deg, #FFF6AE, #FFABF9);*/
    /*background: linear-gradient(90deg, #FFF6AE 0%, #1DC6DD 50%, #FFABF9 90%);*/
    color: #fff;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.announcement span { margin: 0 16px; }

/* ───── HERO BANNER ───── */
.hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(120deg, #fce4ff 0%, #e8d5ff 50%, #ffdde8 100%);
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 60px;
}

.hero-badge {
    display: inline-block;
    background: #c040b0;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    color: #2d1048;
    margin-bottom: 18px;
}
.hero h1 em {
    font-style: normal;
    color: #c040b0;
}

.hero p {
    font-size: 1.15rem;
    color: #5a3070;
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.6;
    font-weight: 600;
}

.hero-cta {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-primary {
    background: #c040b0;
    color: #fff;
    border: none;
    padding: 15px 36px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 6px 20px rgba(192,64,176,0.35);
}
.btn-primary:hover { background: #a030a0; transform: translateY(-2px); }

.btn-secondary {
    background: #fff;
    color: #c040b0;
    border: 2px solid #c040b0;
    padding: 14px 34px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-secondary:hover { background: #fce4ff; transform: translateY(-2px); }

/* ───── TRUST BAR ───── */
.trust-bar {
    background: #f9f0ff;
    border-top: 1px solid #ead5ff;
    border-bottom: 1px solid #ead5ff;
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 18px 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 32px;
    border-right: 1px solid #dcc5f5;
    font-size: 0.9rem;
    font-weight: 700;
    color: #5a3070;
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.4rem; }

/* ───── SECTION TITLES ───── */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #2d1048;
    margin-bottom: 8px;
}
.section-title p {
    color: #7a5090;
    font-size: 1rem;
    font-weight: 600;
}
.pill-tag {
    display: inline-block;
    background: #fce4ff;
    color: #c040b0;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ───── CATEGORIAS ───── */
.categories {
    padding: 64px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cat-card {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(180,100,220,0.12);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(180,100,220,0.22); }

.cat-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.cat-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px 18px;
    background: linear-gradient(to top, rgba(45,16,72,0.85) 0%, transparent 100%);
}
.cat-label h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 2px;
}
.cat-label span {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ───── PRODUTOS ───── */
.products {
    background: #fdf6ff;
    padding: 64px 40px;
}
.products-inner { max-width: 1200px; margin: 0 auto; }

.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.prod-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(180,100,220,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(180,100,220,0.2); }

.prod-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}
.prod-img.pink { background: linear-gradient(135deg, #ffe0f7, #ffd0f0); }
.prod-img.purple { background: linear-gradient(135deg, #ede0ff, #ddc8ff); }
.prod-img.yellow { background: linear-gradient(135deg, #fff8d0, #ffecb0); }
.prod-img.mint { background: linear-gradient(135deg, #d0fff0, #b8f5e0); }
.prod-img.peach { background: linear-gradient(135deg, #ffe8d8, #ffd8c0); }
.prod-img.blue { background: linear-gradient(135deg, #d8eeff, #c0e0ff); }
.prod-img.coral { background: linear-gradient(135deg, #ffd8d8, #ffc0c0); }
.prod-img.green { background: linear-gradient(135deg, #d8ffd8, #c0f0c0); }

.prod-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #c040b0;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}
.prod-badge.novo { background: #7c3aed; }
.prod-badge.off { background: #e53e3e; }

.prod-info {
    padding: 16px 18px 20px;
}
.prod-cat {
    font-size: 0.75rem;
    font-weight: 700;
    color: #c040b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.prod-info h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #2d1048;
    margin-bottom: 8px;
    line-height: 1.3;
}
.stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 10px; }
.stars span { color: #888; font-size: 0.78rem; margin-left: 4px; }

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.price {
    font-size: 1.2rem;
    font-weight: 900;
    color: #c040b0;
}
.price-old {
    font-size: 0.82rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 600;
}
.add-btn {
    background: #c040b0;
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: background 0.2s;
    flex-shrink: 0;
}
.add-btn:hover { background: #a030a0; }

/* ───── BANNER ESPECIAL ───── */
.special-banner {
    max-width: 1200px;
    margin: 0 auto 0;
    padding: 0 40px 64px;
}
.special-banner-inner {
    background: linear-gradient(120deg, #7c3aed, #c040b0);
    /*background: linear-gradient(120deg, #1DC6DD, #FFF6AE);*/
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.special-text h2 {
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}
.special-text p {
    color: rgba(255,255,255,1.0);
    font-size: 1rem;
    font-weight: 600;
    max-width: 400px;
}
.btn-white {
    background: #fff;
    color: #c040b0;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-white:hover { background: #fce4ff; transform: translateY(-2px); }
/*.btn-white:hover { background: #fce4ff; transform: translateY(-2px); }*/

/* ───── DEPOIMENTOS ───── */
.testimonials {
    background: #fdf6ff;
    padding: 64px 40px;
}
.test-inner { max-width: 1200px; margin: 0 auto; }
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.test-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 26px;
    box-shadow: 0 3px 16px rgba(180,100,220,0.1);
}
.test-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; }
.test-card p {
    color: #4a3060;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 18px;
}
.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.test-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
}
.av1 { background: linear-gradient(135deg, #c040b0, #7c3aed); }
.av2 { background: linear-gradient(135deg, #f59e0b, #e85d04); }
.av3 { background: linear-gradient(135deg, #10b981, #3b82f6); }
.test-name { font-weight: 800; color: #2d1048; font-size: 0.9rem; }
.test-location { font-size: 0.78rem; color: #999; font-weight: 600; }

/* ───── CTA FINAL ───── */
.cta-final {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #2d1048 0%, #7c3aed 50%, #c040b0 100%);
    /*background: linear-gradient(135deg, #FFF6AE 10%, #1DC6DD 50%, #FFABF9 90%);*/
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.cta-final::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.cta-final h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}
.cta-final p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    font-weight: 600;
    max-width: 520px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}
.cta-final-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.btn-cta-white {
    background: #fff;
    color: #c040b0;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    transition: all 0.2s;
}
.btn-cta-white:hover { background: #fce4ff; transform: translateY(-2px); }
.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 15px 36px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ───── NEWSLETTER ───── */
.newsletter {
    background: #f9f0ff;
    padding: 60px 40px;
    text-align: center;
}
.newsletter h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #2d1048;
    margin-bottom: 8px;
}
.newsletter p {
    color: #7a5090;
    font-weight: 600;
    margin-bottom: 28px;
}
.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(180,100,220,0.2);
}
.newsletter-form input {
    flex: 1;
    padding: 15px 24px;
    border: none;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    outline: none;
    color: #333;
}
.newsletter-form button {
    background: #c040b0;
    color: #fff;
    border: none;
    padding: 15px 28px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.newsletter-form button:hover { background: #a030a0; }

/* ───── FOOTER ───── */
footer {
    background: #2d1048;
    color: rgba(255,255,255,0.75);
    padding: 50px 40px 24px;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { font-size: 1.3rem; color: #e080d0; }
.footer-brand .logo span { color: #b090ff; }
.footer-brand p {
    margin-top: 12px;
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 240px;
}
.footer-col h4 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 8px;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-col a:hover { color: #e080d0; }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 12px;
}
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-icon {
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}

@media (max-width: 900px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .test-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 2rem; }
    .hero-content { padding: 40px 28px; }
}
@media (max-width: 600px) {
    header { padding: 12px 20px; }
    nav { display: none; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .footer-grid { grid-template-columns: 1fr; }
    .categories, .products { padding: 40px 20px; }
    .special-banner { padding: 0 20px 40px; }
    .special-banner-inner { padding: 32px 28px; }
    .cta-final { padding: 60px 24px; }
    .cta-final h2 { font-size: 1.8rem; }
}