:root {
    --primary: #1A2F23; /* Deep Forest Luxury */
    --primary-light: #2D4A39;
    --accent: #C5A059; /* Sophisticated Gold */
    --accent-light: #E5D5B5;
    --text-main: #2C2C2C;
    --text-muted: #5F6368;
    --bg-base: #FDFBF7; /* Creamy Silk */
    --bg-white: #FFFFFF;
    --error: #BC4B51;
    --success: #5B8266;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Typography Scale */
h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.2; }
h3 { font-size: 1.75rem; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    padding: 1rem 8%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.btn-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.9rem 2.2rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow-md);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background: linear-gradient(rgba(26, 47, 35, 0.4), rgba(26, 47, 35, 0.2)), url('floristeria_hero_1777572267756.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.hero-content {
    max-width: 900px;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(197, 160, 89, 0.9);
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    border-radius: 50px;
}

.hero h1 {
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.btn-luxury {
    padding: 1.2rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-outline-luxury {
    border: 2px solid white;
    color: white;
}

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

/* Sections */
section {
    padding: 10rem 8%;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

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

.product-img-container {
    height: 500px;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 47, 35, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-btn {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.product-details {
    padding: 2.5rem;
    text-align: center;
}

.product-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: block;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1rem;
}

/* Trust Section */
.trust-banner {
    background: var(--primary);
    color: white;
    padding: 6rem 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    text-align: center;
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

.trust-item h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.trust-item p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Contact Grid (Ads Compliance) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding: 4rem;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--accent);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.info-block p {
    font-size: 1.1rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #E0E0E0;
    background: #F9F9F9;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    background: white;
}

.btn-submit {
    background: var(--primary);
    color: white;
    padding: 1.2rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Footer */
footer {
    background: #111;
    color: white;
    padding: 8rem 8% 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 2rem;
    display: block;
}

.footer-brand p {
    opacity: 0.6;
    max-width: 300px;
}

.footer-col h5 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--accent);
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    opacity: 0.6;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 10px;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .contact-grid, .footer-main {
        grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    section { padding: 6rem 5%; }
    .hero-btns { flex-direction: column; }
}
