/* ========== RESET / BASE ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #0F172A;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ========== HEADER (idêntico às outras páginas) ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, .12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

.logo {
    font-weight: 800;
    letter-spacing: .2px;
    font-size: 1.3rem;
    line-height: 1;
}

.main-nav {
    display: flex;
    gap: 22px;
}

.main-nav a {
    color: #334155;
    font-size: .95rem;
}

.main-nav a[aria-current="page"] {
    color: #0F172A;
    font-weight: 700;
}

.main-nav a:hover {
    color: #2563EB;
}

.header-icons {
    display: flex;
    gap: 14px;
    font-size: 1.1rem;
}

.header-icons .icon {
    padding: 6px 8px;
    border-radius: 8px;
}

.header-icons .icon:hover {
    background: rgba(15, 23, 42, .06);
}

@media (max-width:550px) {
    .header-inner {
        padding: 12px 0;
    }

    .main-nav {
        display: none;
    }
}

/* ========== HERO (mantido) ========== */
.hero {
    background-image: url(Paste\ image.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-inner {
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content {
    margin-left: auto;
    max-width: 560px;
    padding: 36px;
}

.hero-content h1 {
    font-family: 'Montserrat', Inter, Arial, sans-serif;
    font-size: 3.2rem;
    line-height: 1.02;
    margin-bottom: .6rem;
    color: #0F172A;
}

.subtitle {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(15, 23, 42, .85);
}

.highlight {
    color: #2563EB;
}

.btn-primary {
    display: inline-block;
    background: #0F172A;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
}

/* Hero — breakpoints */
@media (max-width:1100px) {
    .hero {
        min-height: 440px;
        background-position: center left;
    }

    .hero-content {
        max-width: 460px;
        padding: 28px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }
}

@media (max-width:550px) {
    .hero {
        min-height: 360px;
        background-position: center;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
        padding: 18px;
        max-width: 92%;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .subtitle {
        font-size: .95rem;
    }
}

/* ========== NEW ARRIVALS ========== */
.new-arrivals {
    padding: 80px 0;
    background: #F9FAFB;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
    color: #0F172A;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.product-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: box-shadow .3s ease;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #0F172A;
    color: #fff;
    font-size: .75rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: .5px;
}

.add-cart {
    display: block;
    width: 100%;
    background: #0F172A;
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: .9rem;
    margin-top: 12px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background .3s ease;
}

.add-cart:hover {
    background: #2563EB;
}

.product-info {
    margin-top: 14px;
    text-align: left;
    color: #0F172A;
}

.stars {
    font-size: .85rem;
    color: gold;
}

.product-info h3 {
    font-size: .95rem;
    margin: 4px 0;
    font-weight: 500;
    line-height: 1.4;
}

.price {
    font-weight: 600;
    font-size: 1rem;
}

/* ========== SHOP COLLECTION ========== */
.shop-collection {
    padding: 60px 0;
    background: #fff;
}

.shop-collection .section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

.collection-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    grid-auto-rows: 250px;
}

.collection-item {
    background: #f5f7fa;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.collection-item:hover img {
    transform: scale(1.05);
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .85);
    transition: background .3s ease;
}

.collection-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.collection-info a {
    font-size: 14px;
    color: #000;
}

.collection-item.large {
    grid-row: span 2;
}

@media (max-width:768px) {
    .collection-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .collection-item.large {
        grid-row: span 1;
    }
}

/* ========== PROMO ========== */
.promo-offer {
    display: flex;
    min-height: 60vh;
    width: 100%;
}

.promo-image {
    flex: 1;
    min-height: 360px;
    background: #111;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-info {
    flex: 1;
    background: #FCD77F;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-info .promo-label {
    color: #2563EB;
    font-weight: 700;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.promo-info h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 12px 0 10px;
    color: #0F172A;
}

.promo-info p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #222;
}

.promo-timer {
    display: flex;
    gap: 16px;
    margin: 10px 0 24px;
    flex-wrap: wrap;
}

.promo-timer div {
    background: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    text-align: center;
    min-width: 74px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.promo-timer span {
    display: block;
    font-weight: 800;
    font-size: 1.6rem;
    color: #0F172A;
}

.promo-timer small {
    display: block;
    font-size: .75rem;
    color: #6B7280;
}

.promo-info .btn {
    align-self: flex-start;
    padding: 12px 28px;
    background: #0F172A;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: background .25s ease;
}

.promo-info .btn:hover {
    background: #333;
}

@media (max-width:900px) {
    .promo-offer {
        flex-direction: column;
    }

    .promo-image {
        height: 280px;
    }

    .promo-info {
        padding: 32px 20px;
    }

    .promo-info h2 {
        font-size: 2rem;
    }
}

/* ========== BENEFÍCIOS ========== */
.store-benefits {
    padding: 40px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: #F6F8FB;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 10px;
    padding: 22px 20px;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    column-gap: 16px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: grid;
    place-items: center;
}

.benefit-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
    filter: contrast(0) brightness(0);
}

.benefit-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.35;
}

.benefit-sub {
    margin-top: 6px;
    font-size: .875rem;
    color: #6B7280;
}

@media (max-width:1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:560px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        grid-template-columns: 44px 1fr;
    }

    .benefit-icon {
        width: 44px;
        height: 44px;
    }

    .benefit-icon img {
        width: 30px;
        height: 30px;
    }
}

/* ========== NEWSLETTER ========== */
.newsletter {
    background: #fff;
    padding: 60px 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.newsletter-content {
    text-align: center;
    max-width: 480px;
}

.newsletter-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.newsletter-content p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    font-size: .95rem;
}

.newsletter-form button {
    background: #0F172A;
    color: #fff;
    padding: 12px 20px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #2563EB;
}

.newsletter-image img {
    max-height: 160px;
    object-fit: contain;
}

@media (max-width:768px) {
    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* ========== FOOTER ========== */
.site-footer {
    background: #0F172A;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 60px;
    font-size: .9rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-brand .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-right: 6px;
}

.footer-brand span {
    font-size: .95rem;
    color: #ccc;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: #fff;
}

.footer-nav a:hover {
    color: #2563EB;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links a {
    margin-left: 16px;
    color: #ccc;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social a {
    margin-left: 14px;
    font-size: 1.2rem;
    color: #fff;
}

.footer-social a:hover {
    color: #2563EB;
}

@media (max-width:768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}