:root {
    --bg-dark: #050505;
    --gold: #D4AF37;
    --gold-light: #F2D06B;
    --gold-dark: #AA8825;
    --text-main: #ffffff;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(212, 175, 55, 0.15);
    --font-head: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    margin: 0;
    overflow-x: hidden;
}

/* Tipografía de Lujo */
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; margin: 0; }
.text-gold { color: var(--gold); }
.text-gradient {
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

/* Estructura */
.ma-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.ma-section { padding: 100px 0; position: relative; }
.ma-title { font-size: 3rem; text-align: center; margin-bottom: 60px; text-transform: uppercase; letter-spacing: 2px; }

/* HERO 3D SECTION */
.ma-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ma-hero__bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}
.ma-hero__content {
    position: relative; z-index: 10; text-align: center; padding: 20px;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 70%);
}
.ma-hero__badge {
    display: inline-block; padding: 8px 16px; border: 1px solid var(--gold);
    color: var(--gold); font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 20px;
    background: rgba(0,0,0,0.5);
}
.ma-hero__title { font-size: clamp(3rem, 8vw, 6rem); line-height: 0.9; margin-bottom: 20px; }
.ma-hero__subtitle { font-size: 1.2rem; color: #ccc; max-width: 600px; margin: 0 auto 40px; font-weight: 300; }
.ma-hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; text-align: center; color: var(--gold); opacity: 0.7; }

/* Botones */
.ma-btn {
    display: inline-block; padding: 15px 40px; text-decoration: none; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; border-radius: 50px;
}
.ma-btn--gold { background: linear-gradient(45deg, var(--gold-dark), var(--gold)); color: #000; box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
.ma-btn--gold:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(212, 175, 55, 0.6); }
.ma-btn--outline { border: 1px solid rgba(255,255,255,0.3); color: #fff; margin-left: 15px; }
.ma-btn--outline:hover { border-color: var(--gold); color: var(--gold); }

/* Tarjetas (Services) */
.ma-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.ma-glass-card {
    background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--glass-border);
    padding: 40px; border-radius: 20px; transition: 0.4s; text-align: center;
}
.ma-glass-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-10px); border-color: var(--gold); }
.ma-icon { font-size: 3rem; margin-bottom: 20px; }

/* Precios */
.ma-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.ma-price-card {
    background: #0e0e0e; border: 1px solid #222; padding: 40px; border-radius: 20px;
    text-align: center; position: relative; transition: 0.3s;
}
.ma-price-card.best-seller {
    border: 2px solid var(--gold); transform: scale(1.05);
    background: linear-gradient(180deg, #151205 0%, #0e0e0e 100%);
    box-shadow: 0 10px 50px rgba(0,0,0,0.5); z-index: 5;
}
.ma-tag {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: #000; padding: 5px 15px; font-weight: bold; font-size: 0.8rem;
}
.price { font-size: 3rem; font-family: var(--font-head); color: var(--gold); margin: 20px 0; }
.price .curr { font-size: 1rem; color: #666; }
.ma-price-card ul { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; }
.ma-price-card li { margin-bottom: 12px; color: #ccc; border-bottom: 1px solid #222; padding-bottom: 8px; }

/* Contacto y Mapa */
.split-screen { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.big-phone a { font-size: 2.5rem; color: var(--text-main); text-decoration: none; font-family: var(--font-head); transition: 0.3s; }
.big-phone a:hover { color: var(--gold); }
#ma-map { width: 100%; height: 300px; border-radius: 20px; filter: grayscale(100%) invert(92%) contrast(83%); opacity: 0.8; }
.ma-glass-form { background: #111; padding: 40px; border-radius: 20px; border: 1px solid #333; text-align: center; }
.full-width { width: 100%; box-sizing: border-box; }

/* WhatsApp Flotante */
.ma-fab-wa {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); z-index: 999; transition: transform 0.3s;
}
.ma-fab-wa:hover { transform: scale(1.1) rotate(10deg); }
.ma-fab-wa img { width: 35px; height: 35px; }

/* Responsive */
@media(max-width: 768px) {
    .ma-hero__title { font-size: 3rem; }
    .split-screen { grid-template-columns: 1fr; }
    .ma-price-card.best-seller { transform: scale(1); }
}
