@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;600&display=swap');

:root {
    --bg: #fff0d8;
    --primary: #4c513a;
    --accent: #edaf83;
    --white: #ffffff;
    --text-muted: #6e725e;
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg); color: var(--primary); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.7; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* --- HEADER --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 8%;
    position: fixed;
    top: 0; width: 100%;
    background: rgba(255, 240, 216, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
}

.logo img { height: 45px; position: relative; z-index: 3001; }

.mobile-btn {
    display: none;
    cursor: pointer;
    z-index: 3001;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--primary);
}

nav ul { display: flex; gap: 2.5rem; list-style: none; }
nav a { text-decoration: none; color: var(--primary); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; }
nav a.active { color: var(--accent); }

@media (max-width: 992px) {
    header { padding: 1rem 5%; }
    .mobile-btn { display: block; }
    nav ul {
        position: fixed; top: 0; left: 0;
        width: 100%; height: 100vh;
        background: var(--primary);
        flex-direction: column; justify-content: center; align-items: center;
        transform: translateY(-100%);
        transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 3000;
    }
    nav ul.active { transform: translateY(0); }
    nav a { color: var(--bg); font-size: 1.8rem; }
    .mobile-btn.active { color: var(--bg); }
}

/* --- BOTONES --- */
.btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    padding: 18px 35px; border-radius: 100px;
    text-decoration: none; font-weight: 600; font-size: 0.9rem;
    transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary { background: var(--primary); color: var(--bg); }
.btn-primary:hover { background: var(--accent); color: var(--white); }

.btn-whatsapp { background: var(--white); color: var(--primary); border: 1.5px solid var(--primary); }
.btn-whatsapp:hover { background: #25D366; color: white; border-color: #25D366; }

@media (max-width: 768px) {
    .btn-group { flex-direction: column; width: 100%; gap: 10px; }
    .btn { width: 100% !important; }
}

/* --- HERO --- */
.hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; padding: 10rem 8% 6rem; min-height: 90vh; }
.hero-text h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 2rem; }
.hero-img img { width: 100%; height: 600px; object-fit: cover; border-radius: 40px 180px 40px 40px; box-shadow: 20px 20px 0 var(--accent); }

@media (max-width: 992px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 8rem; }
    .hero-img { order: -1; }
    .hero-img img { height: 400px; }
    .hero-text h1 { font-size: 2.8rem; }
}

/* --- CARDS & SECCIONES --- */
.section { padding: 6rem 8%; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.card { background: var(--white); padding: 3rem; border-radius: 40px; display: flex; flex-direction: column; height: 100%; }
.card h3 { font-size: 2rem; margin-bottom: 1rem; }
.card ul { list-style: none; margin: 1.5rem 0; flex-grow: 1; }
.card li { margin-bottom: 0.5rem; color: var(--text-muted); }
.card li::before { content: "• "; color: var(--accent); }

/* ACORDEÓN */
.accordion { margin-top: 4rem; background: var(--white); border-radius: 30px; overflow: hidden; }
.acc-header { padding: 1.5rem 2rem; cursor: pointer; display: flex; justify-content: space-between; font-weight: 600; font-family: 'Playfair Display'; font-size: 1.3rem; border-bottom: 1px solid var(--bg); }
.acc-content { max-height: 0; overflow: hidden; transition: var(--transition); padding: 0 2rem; }

/* INSTAGRAM MOCK */
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 2rem; }
.ig-item { aspect-ratio: 1/1; background-size: cover; border-radius: 20px; transition: var(--transition); }
.ig-item:hover { transform: translateY(-10px); }

@media (max-width: 768px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

footer { background: var(--primary); color: var(--bg); padding: 4rem 8%; text-align: center; }
