@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
    --bg-color: #FAFAFA;
    --text-main: #2C2C2C;
    --text-muted: #7A7266;
    --brand-gold: #C5A059;
    --brand-blue: #00AEEF;
    --bg-warm: #EFE8DA;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3 { font-family: 'Abril Fatface', serif; font-weight: normal; }
h4, h5 { font-family: 'Playfair Display', serif; }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky; top: 0; z-index: 1000;
}
.navbar img { max-height: 50px; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 600; transition: color 0.3s; }
.nav-links a:hover { color: var(--brand-gold); }

.btn-primary, .btn-secondary {
    padding: 10px 25px; border-radius: 30px; text-decoration: none; font-weight: 600; display: inline-block; transition: all 0.3s;
}
.btn-primary { background: var(--brand-blue); color: #fff; border: 2px solid var(--brand-blue); }
.btn-primary:hover { background: #008fcc; border-color: #008fcc; }
.btn-secondary { background: transparent; color: var(--brand-gold); border: 2px solid var(--brand-gold); }
.btn-secondary:hover { background: var(--brand-gold); color: #fff; }

/* Secciones Generales */
section { padding: 80px 5%; }
.section-title { text-align: center; font-size: 2.5rem; color: var(--brand-gold); margin-bottom: 40px; }

/* Hero Section */
.hero {
    background: var(--bg-warm); text-align: center; padding: 100px 5%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero h1 { font-size: 3.5rem; color: var(--text-main); margin-bottom: 20px; max-width: 800px; line-height: 1.2;}
.hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; }
.benefits { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 40px; }
.badge { background: #fff; padding: 8px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; color: var(--brand-blue); border: 1px solid rgba(0,174,239,0.2); }

/* Grid Cards */
.grid-2, .grid-3 { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); border: 1px solid #eaeaea; text-align: center;}
.card h4 { font-size: 1.5rem; margin-bottom: 15px; color: var(--text-main); }

/* Formulario */
.form-container { max-width: 600px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-family: 'Open Sans', sans-serif;
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* Footer */
footer { background: var(--text-main); color: #fff; padding: 60px 5% 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-grid h5 { color: var(--brand-gold); font-size: 1.2rem; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #ccc; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }

/* Botón Flotante WhatsApp */
.wa-float {
    position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: #FFF;
    border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; z-index: 1000; text-decoration: none; transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }

/* Responsive */
@media(max-width: 768px) {
    .nav-links { display: none; /* En un entorno real se haría un menú hamburguesa */ }
    .hero h1 { font-size: 2.5rem; }
    section { padding: 50px 5%; }
}
