/* Estilos personalizados para Monkey Restobar - Basado en la marca original */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --bg-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #121212 100%);
    --accent-gold: #FFC222;
    --accent-orange: #ff6a00;
    --accent-gold-hover: #ffb100;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(20, 20, 20, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-sans: 'Poppins', sans-serif;
    --font-brand: 'Lobster Two', cursive;
}

body {
    background: var(--bg-dark);
    background-image: var(--bg-gradient);
    color: var(--text-light);
    font-family: var(--font-sans);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
    position: relative;
}

/* Efectos de luces de neon/glow de fondo */
body::before, body::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    z-index: 0;
    pointer-events: none;
}

body::before {
    width: 320px;
    height: 320px;
    background: rgba(255, 194, 34, 0.07);
    top: 15%;
    left: -80px;
}

body::after {
    width: 350px;
    height: 350px;
    background: rgba(255, 106, 0, 0.07);
    bottom: 10%;
    right: -100px;
}

/* Contenedor Principal */
.main-wrapper {
    z-index: 1;
    position: relative;
    width: 100%;
}

/* Logotipo e Identidad */
.brand-logo-img {
    max-height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

.slogan-title {
    font-family: var(--font-brand);
    font-size: 1.6rem;
    color: var(--accent-gold);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Tipografía de Títulos */
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.text-orange {
    color: var(--accent-orange) !important;
}

/* Tarjeta Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(255, 194, 34, 0.25);
    box-shadow: 0 20px 45px rgba(255, 194, 34, 0.05);
}

/* Lista de Atributos del Restobar */
.monkey-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.monkey-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
}

.monkey-list li:last-child {
    border-bottom: none;
}

.monkey-list li .icon {
    font-size: 1.25rem;
}

/* Controles de Formulario */
.form-control-custom {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-light) !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    transition: all 0.3s ease !important;
}

.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 0 4px rgba(255, 194, 34, 0.15) !important;
    outline: none;
}

/* Botón Premium */
.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: #000000;
    font-weight: 700;
    border-radius: 10px;
    padding: 12px 24px;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.3);
    color: #000000;
}

/* Redes Sociales */
.social-icon-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    color: #000000;
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 194, 34, 0.3);
}

/* Alertas de Feedback */
.feedback-alert {
    border-radius: 10px;
    padding: 12px;
    font-size: 0.9rem;
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.5);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8) !important;
}

footer p, footer span {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Tarjetas de Especialidades */
.specialty-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.specialty-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 194, 34, 0.08);
}

.specialty-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 194, 34, 0.1);
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.specialty-card:hover .specialty-icon-wrapper {
    transform: rotate(-5deg) scale(1.1);
    background: var(--accent-gold);
    color: #000000;
}

/* Barra de Progreso Personalizada */
.progress-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    height: 10px;
    overflow: hidden;
}

.progress-bar-custom {
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from { box-shadow: 0 0 8px rgba(255, 194, 34, 0.4); }
    to { box-shadow: 0 0 16px rgba(255, 106, 0, 0.7); }
}


