:root {
    --primary-color: #F7B5C8;      /* Soft Pink */
    --secondary-color: #A8D5E2;    /* Soft Blue */
    --accent-color: #F3DE8A;       /* Soft Yellow */
    --text-color: #5C4334;         /* Soft Brown from logo */
    --text-light: #8A6B56;
    --bg-color: #FFFDF9;           /* Cream white */
    --card-bg: #FFFFFF;
    
    --ml-color: #FFE600;           /* Mercado Livre Yellow */
    --shopee-color: #EE4D2D;       /* Shopee Orange */
    --tiktok-color: #000000;       /* TikTok Black */
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(92, 67, 52, 0.08);
    --shadow-hover: 0 15px 40px rgba(92, 67, 52, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fredoka', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-color);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 400;
}

/* Navbar */
.navbar {
    padding: 24px 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 120px;
    background: linear-gradient(135deg, rgba(247,181,200,0.15) 0%, rgba(168,213,226,0.15) 100%);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(247, 181, 200, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(247, 181, 200, 0.6);
    background-color: #F59CB5;
}

/* Wave Divider */
.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-bottom .shape-fill {
    fill: var(--bg-color);
}

/* Stores Section */
.stores-section {
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-color);
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 60px;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.store-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px 30px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    transition: var(--transition);
}

.store-card.mercadolivre::before { background-color: var(--ml-color); }
.store-card.shopee::before { background-color: var(--shopee-color); }
.store-card.tiktok::before { background-color: var(--tiktok-color); }

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0,0,0,0.05);
}

.store-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 24px;
    background: var(--bg-color);
    transition: var(--transition);
}

.store-card.mercadolivre .store-icon { color: #333; box-shadow: 0 10px 20px rgba(255, 230, 0, 0.2); }
.store-card.shopee .store-icon { color: var(--shopee-color); box-shadow: 0 10px 20px rgba(238, 77, 45, 0.15); }
.store-card.tiktok .store-icon { color: var(--tiktok-color); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }

.store-card:hover .store-icon {
    transform: scale(1.1) rotate(-5deg);
}

.store-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.store-card p {
    font-size: 1rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.btn-store {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.store-card.mercadolivre .btn-store { color: #000; }
.store-card.shopee .btn-store { color: var(--shopee-color); }
.store-card.tiktok .btn-store { color: var(--tiktok-color); }

.store-card:hover .btn-store {
    gap: 12px;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0 100px;
    background: rgba(243, 222, 138, 0.15); /* Very light yellow */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-info h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: white;
}

.footer-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .main-logo {
        max-width: 350px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
    }
    
    .main-logo {
        max-width: 250px;
    }
}
