:root {
    --black: #0c0c0c;
    --dark: #151515;
    --gold: #b38e44;
    --gold-light: #d4af37;
    --white: #f5f5f5;
    --grey: #888;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

.gold-text { color: var(--gold); }
.title-serif { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 7%; background: rgba(12, 12, 12, 0.98);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(179, 142, 68, 0.2);
}

.logo { letter-spacing: 3px; font-weight: 600; }
.logo small { display: block; font-size: 0.6rem; color: var(--grey); letter-spacing: 5px; }

.nav-links { display: flex; list-style: none; gap: 35px; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 0.8rem; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }

/* Hero */
.hero {
    height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; background: radial-gradient(circle, rgba(21,21,21,0.5) 0%, rgba(12,12,12,1) 100%);
    padding: 20px;
}

.hero h1 { font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 1.1; }
.line-gold { width: 80px; height: 2px; background: var(--gold); margin: 30px auto; }

.btn-outline {
    border: 1px solid var(--gold); color: var(--gold); padding: 15px 40px;
    text-decoration: none; display: inline-block; transition: 0.4s; letter-spacing: 2px;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* Secciones */
.section { padding: 120px 10%; text-align: center; }
.bg-alt { background-color: var(--dark); }
.text-p { max-width: 700px; margin: 0 auto; color: var(--grey); line-height: 1.8; }

.grid-services {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px; margin-top: 60px;
}

.card {
    padding: 50px; border: 1px solid #222; transition: 0.4s;
}
.card:hover { border-color: var(--gold); background: #1a1a1a; }
.card h3 { font-family: 'Playfair Display', serif; margin-bottom: 15px; color: var(--gold-light); }

/* Formulario */
.contact-box {
    display: flex; flex-wrap: wrap; gap: 50px; margin-top: 60px; text-align: left;
}
.info { flex: 1; min-width: 250px; }
.elegant-form { flex: 2; min-width: 300px; display: flex; flex-direction: column; gap: 20px; }
.elegant-form input, .elegant-form textarea {
    background: transparent; border: none; border-bottom: 1px solid #333;
    padding: 15px; color: white; font-family: inherit; transition: 0.3s;
}
.elegant-form input:focus { border-bottom-color: var(--gold); outline: none; }
.btn-gold-full { background: var(--gold); border: none; padding: 18px; font-weight: 600; cursor: pointer; }

/* Móvil */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .section { padding: 80px 5%; }
}
/* ... (Todo lo anterior se mantiene, pero asegúrate de que incluya esto para los iconos y el mapa) ... */

.icon-card {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.map-container {
    border: 1px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    line-height: 0; /* Quita espacio extra abajo */
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    z-index: 9999;
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover { transform: scale(1.1); background-color: #128c7e; }

/* Contacto mejorado */
.info i { color: var(--gold); margin-right: 10px; width: 20px; }
.social-links-footer { margin-top: 20px; }
.social-links-footer a { color: var(--gold); font-size: 1.5rem; margin-right: 15px; text-decoration: none; }
.map-container {
    width: 100%;
    max-width: 1200px; /* Para que en computadoras muy grandes no sea gigante */
    margin: 0 auto;
}




