/* Reset e Cores */
:root {
    --rose-pink: #ff6b9d;
    --coral: #ff8a80;
    --lavender: #b388ff;
    --sky-blue: #82b1ff;
    --mint: #69f0ae;
    --cream: #fff8e1;
    --white: #ffffff;
    --text-color: #5d4037;
    --gradient-floral: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    --gradient-spring: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    --gradient-summer: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --shadow-soft: 0 10px 30px rgba(255, 107, 157, 0.15);
    --shadow-hover: 0 20px 50px rgba(255, 107, 157, 0.25);
}

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

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, #fffafb 0%, #fff8e1 100%);
    line-height: 1.7;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Dancing Script', cursive;
    color: var(--rose-pink);
    font-weight: 700;
}

h1 { font-size: 4.5rem; line-height: 1.1; }
h2 { font-size: 3rem; }
h3 { font-size: 2.2rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Top Bar */
.top-bar {
    background: var(--gradient-spring);
    color: var(--white);
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid transparent;
    border-image: var(--gradient-floral) 1;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
    font-weight: 700;
    background: var(--gradient-floral);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    display: inline-block;
}

.logo a:hover {
    transform: scale(1.08) rotate(-2deg);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav a {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-color);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 50%;
    background: var(--gradient-floral);
    border-radius: 10px;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--rose-pink);
}

.header-icons {
    font-size: 22px;
    cursor: pointer;
    color: var(--rose-pink);
    transition: transform 0.3s ease;
}

.header-icons:hover {
    transform: scale(1.2);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-floral);
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '🌸🦋🌺🌼🌷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 150px;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -55%) rotate(10deg); }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-content p {
    font-size: 24px;
    margin: 30px 0 50px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--rose-pink);
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Brand Story */
.brand-story {
    padding: 120px 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
}

.brand-story h2 {
    font-size: 52px;
    margin-bottom: 40px;
}

.brand-story p {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-color);
}

/* Products */
.products-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    font-size: 56px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: var(--gradient-floral);
    margin: 30px auto 0;
    border-radius: 10px;
}

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

.product-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: var(--shadow-hover);
    border-color: var(--rose-pink);
}

.product-image {
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.05) 100%);
}

.bg-pink { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.bg-lilac { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
.bg-mint { background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%); }
.bg-white { background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%); }

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    color: var(--rose-pink);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.product-info {
    padding: 30px;
    text-align: center;
}

.product-info h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.price {
    font-size: 26px;
    font-weight: 800;
    background: var(--gradient-floral);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block;
}

.old-price {
    text-decoration: line-through;
    color: #ccc;
    font-size: 18px;
    margin-left: 10px;
}

.btn-buy {
    background: var(--gradient-floral);
    border: none;
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
}

/* Features Bar */
.features-bar {
    background: var(--gradient-spring);
    padding: 80px 0;
    color: var(--white);
}

.features-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 50px;
}

.feature {
    flex: 1;
    min-width: 250px;
}

.feature .icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.feature h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    font-size: 22px;
}

.feature p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* Authority Links */
.authority-links {
    padding: 80px 0;
    text-align: center;
    background: var(--white);
}

.authority-links h3 {
    font-size: 42px;
    margin-bottom: 30px;
}

.authority-links ul {
    list-style: none;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.authority-links a {
    color: #888;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.authority-links a:hover {
    color: var(--rose-pink);
    border-bottom-color: var(--rose-pink);
}

/* Newsletter */
.newsletter-signup {
    padding: 100px 0;
    text-align: center;
    background: var(--gradient-floral);
    position: relative;
    overflow: hidden;
}

.newsletter-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.newsletter-signup h2 {
    color: var(--white);
    font-size: 52px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.newsletter-signup p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.newsletter-signup form {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.newsletter-signup input {
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    width: 400px;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-signup button {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    background-color: var(--white);
    color: var(--rose-pink);
    cursor: pointer;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.newsletter-signup button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 40px;
    text-align: center;
    color: var(--white);
}

.footer-links {
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    gap: 35px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.copyright {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
