:root {
    --madera-oscura: #3e2723;
    --madera-textura: #5d4037;
    --oro-toston: #fbc02d;
    --verde-platano: #2e7d32;
    --blanco-crema: #fdfaf6;
    --negro-mate: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--blanco-crema);
    color: var(--negro-mate);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Hero Section Reforzado */
.hero {
    position: relative;
    height: 100vh;
    /* Imagen de fondo con madera y elementos verdes */
    background: url('https://images.unsplash.com/photo-1542831371-29b0f74f9713?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(rgba(62, 39, 35, 0.85), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.badge {
    background: var(--verde-platano);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin: 20px 0;
    line-height: 1.1;
}

.highlight {
    color: var(--oro-toston);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-main {
    display: inline-block;
    background: var(--oro-toston);
    color: var(--madera-oscura);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid white;
    color: white;
    padding: 13px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-main:hover { background: white; transform: translateY(-3px); }

/* Sección Packs */
.section-title {
    text-align: center;
    padding-top: 60px;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--madera-oscura);
}

.pack-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 10% 80px 10%;
}

.pack-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.pack-card:hover { transform: translateY(-10px); }

.highlight-card {
    border: 3px solid var(--verde-platano);
    background-color: #f1f8e9;
}

.pack-img-container {
    height: 200px;
    overflow: hidden;
}

.pack-img-container img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.pack-card:hover img { transform: scale(1.1); }

.pack-info {
    padding: 25px;
    text-align: center;
}

.pack-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--madera-oscura);
}

.pack-label {
    display: block;
    margin: 15px 0;
    font-weight: bold;
    color: var(--verde-platano);
}

.btn-buy {
    display: block;
    padding: 12px;
    background: var(--madera-oscura);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-buy:hover { background: var(--verde-platano); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px; height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 100;
}

.whatsapp-float img { width: 35px; }

footer {
    background: var(--madera-oscura);
    color: white;
    padding: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-btns a { margin: 10px 0; display: block; }
}