@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

:root {
    --primary-pink: #FFC0CB;
    --soft-pink: #FEE4EB;
    --deep-pink: #FF69B4;
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --text-dark: #333333;
    --text-light: #666666;
    --gold-accent: #D4AF37;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-heavy: 0 10px 20px rgba(0, 0, 0, 0.1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-pink {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 105, 180, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 105, 180, 0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-pink);
    font-family: var(--font-heading);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-light);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--deep-pink);
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--deep-pink);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--deep-pink);
    color: white;
}

.btn-primary:hover {
    background-color: #E05297;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 82, 151, 0.4);
}

.btn-primary.pulse {
    animation: pulse-pink 2s infinite;
}

.hero-image {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    width: 500px;
    height: 500px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-heavy);
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    flex-shrink: 0;
    margin: 0 auto;
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 6rem;
        height: auto;
        padding-bottom: 4rem;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .hero-image {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Categories Section */
.categories {
    padding: 5rem 10%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-card h3 {
    margin-bottom: 0.5rem;
    color: var(--deep-pink);
}

/* CSS for Products Page */
.page-header {
    background-color: var(--soft-pink);
    padding: 6rem 10% 8rem; /* MAIS espaço em baixo */
    text-align: center;
}

.page-header h1 {
    color: var(--deep-pink);
    font-size: 3rem;
}

.products-container {
    padding: 4rem 10%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 250px;
    background-color: #eee;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-pink);
    margin-bottom: 1rem;
}

.product-btn {
    margin-top: auto;
    width: 100%;
    padding: 0.8rem;
    background: white;
    border: 1px solid var(--deep-pink);
    color: var(--deep-pink);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.product-btn:hover {
    background: var(--deep-pink);
    color: white;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    background: var(--soft-pink);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    color: var(--deep-pink);
}

.close-cart {
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 1rem;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: var(--text-light);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background: var(--white);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
}

.overlay.active {
    display: block;
}

/* Checkout Page */
.checkout-container {
    padding: 4rem 10%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout-form-section,
.order-summary {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--deep-pink);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-method-card {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-card.active {
    border-color: var(--deep-pink);
    background-color: var(--soft-pink);
    color: var(--deep-pink);
    font-weight: bold;
}

.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
        /* Mobile menu implementation later if needed */
    }

    .hero {
        flex-direction: column;
        padding-top: 4rem;
        height: auto;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .hero-image {
        position: relative;
        right: 0;
        transform: none;
        width: 300px;
        height: 300px;
        margin: 0 auto 3rem;
    }

    .checkout-container {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;      /* centra verticalmente */
    justify-content: center;  /* centra horizontalmente */
    padding: 0 10%;
    background-color: var(--soft-pink); /* opcional */
}

.hero-content {
    text-align: center;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.hero-content .btn {
    padding: 1rem 2.8rem;
    font-size: 1.05rem;
}

.promo-wrapper {
    max-width: 1200px;
    margin: -4rem auto 4rem; /* AFASTA + efeito flutuante */
    padding: 0 10%;
}

.promo-banner {
    background: linear-gradient(45deg, var(--deep-pink), #ff8eb8);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-heavy);
}

.promo-banner h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.promo-banner p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.8rem;
}

.promo-btn {
    background: white;
    color: var(--deep-pink);
    padding: 0.9rem 2.5rem;
}

.promo-icon {
    font-size: 4rem;
}



