/*
Theme Name: Floresser Ateliê
Theme URI: https://floresser.com.br
Author: Floresser Team
Author URI: https://floresser.com.br
Description: Tema premium para floricultura online com design minimalista e sofisticado
Version: 1.0.0
License: GPL v2 or later
Text Domain: floresser
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da Paleta */
    --color-primary: #E4B4C8;
    --color-secondary: #F5E6E8;
    --color-accent: #C88FA3;
    --color-porcelain: #FBF7F4;
    --color-sage: #B8C5B8;
    --color-terracotta: #D4A59A;
    --color-dark: #2C2C2C;
    --color-light: #FFFFFF;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #E4B4C8, #F5E6E8);
    --gradient-subtle: linear-gradient(180deg, #FBF7F4, #FFFFFF);
    
    /* Sombras */
    --shadow-soft: 0 2px 8px rgba(228, 180, 200, 0.15);
    --shadow-medium: 0 4px 16px rgba(228, 180, 200, 0.2);
    --shadow-large: 0 8px 32px rgba(228, 180, 200, 0.25);
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 20px 0;
}

.site-header.scrolled {
    box-shadow: var(--shadow-soft);
    padding: 15px 0;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 48px;
}

.menu-primary {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu-primary a {
    text-decoration: none;
    color: var(--color-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    position: relative;
    transition: color 0.3s;
}

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

.menu-primary a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s;
}

.menu-primary a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(228, 180, 200, 0.4), rgba(245, 230, 232, 0.3));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--color-light);
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Categories Grid */
.categories-section {
    padding: 80px 0;
    background: var(--gradient-subtle);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--color-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 350px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.category-card:hover .category-overlay {
    transform: translateY(0);
}

.category-name {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Product Cards */
.products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.product-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* Footer */
.site-footer {
    background: linear-gradient(to bottom, var(--color-porcelain), var(--color-light));
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--color-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* Newsletter */
.newsletter {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin: 40px 0;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 1.5rem auto 0;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .menu-primary {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}