:root {
    --bg-color: #121212;
    --card-bg: rgba(30, 30, 30, 0.95);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent-gold: #d4af37;
    --accent-rock-pink: #e91e63;
    --accent-rock-orange: #ff9800;
    --success-green: #4caf50;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('fondo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.container {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

header {
    text-align: center;
    margin-bottom: 0;
}

.logo-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    padding: 5px;
    margin: 0;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.menu-item:hover {
    border-color: var(--accent-rock-pink);
    background: rgba(40, 40, 40, 0.95);
}

.menu-item-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    font-size: 1.1rem;
    color: var(--accent-gold);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.menu-item:hover .icon {
    color: var(--accent-rock-pink);
    background: rgba(233, 30, 99, 0.15);
}

.label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.arrow {
    color: var(--text-secondary);
    font-size: 0.8rem;
    opacity: 0.7;
}

.social-footer {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.social-link:hover {
    color: #fff;
}

.social-link.tiktok:hover {
    background: #000;
    color: #00f2ea;
}

.social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-link.facebook:hover {
    background: #1877F2;
}

.footer-info {
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.address-link {
    text-decoration: none;
}

.address-link:hover {
    opacity: 0.8;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.subtitle i {
    color: var(--accent-gold);
    margin-right: 6px;
}

.tagline {
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.schedule {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--accent-rock-pink), var(--accent-rock-orange));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    opacity: 0.9;
}

.hidden {
    display: none;
}

.success-message {
    text-align: center;
    padding: 40px;
    background-color: var(--card-bg);
    border-radius: 20px;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-green);
    margin-bottom: 20px;
}

/* --- Feedback Form Styles --- */
.form-container {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 22px;
}

label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #444;
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent-rock-pink);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.star-rating {
    display: flex;
    gap: 10px;
    font-size: 2rem;
    margin-top: 5px;
}

.star {
    color: #444;
    cursor: pointer;
}

.star.active,
.star:hover {
    color: var(--accent-gold);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.btn-back:hover {
    color: var(--accent-rock-pink);
}

/* Mobile Responsive - Small phones (up to 375px) */
@media (max-width: 375px) {
    body {
        padding: 8px;
    }

    .container {
        max-width: 100%;
        padding: 0 10px;
        gap: 6px;
    }

    .logo-img {
        max-width: 100%;
        padding: 3px;
    }

    .menu-item {
        padding: 8px 14px;
        border-radius: 40px;
    }

    .icon {
        font-size: 1rem;
        width: 24px;
        height: 24px;
    }

    .label {
        font-size: 0.75rem;
    }

    .social-link {
        font-size: 1.1rem;
        width: 32px;
        height: 32px;
    }

    .subtitle {
        font-size: 0.75rem;
    }

    .tagline {
        font-size: 0.65rem;
    }

    .schedule {
        font-size: 0.6rem;
    }
}

/* Mobile Responsive - Standard phones (376px to 600px) */
@media (min-width: 376px) and (max-width: 600px) {
    body {
        padding: 10px;
    }

    .container {
        max-width: 100%;
        padding: 0 12px;
    }

    .logo-img {
        max-width: 100%;
    }

    .menu-item {
        padding: 10px 16px;
    }

    .social-link {
        font-size: 1.2rem;
        width: 34px;
        height: 34px;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .tagline {
        font-size: 0.7rem;
    }

    .schedule {
        font-size: 0.65rem;
    }
}

/* Tablet (601px to 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
    body {
        padding: 20px;
    }

    .container {
        max-width: 450px;
    }

    .logo-img {
        max-width: 100%;
    }

    .menu-item {
        padding: 12px 20px;
    }

    .icon {
        font-size: 1.2rem;
        width: 32px;
        height: 32px;
    }

    .label {
        font-size: 0.9rem;
    }

    .social-link {
        font-size: 1.4rem;
        width: 40px;
        height: 40px;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .tagline {
        font-size: 0.75rem;
    }

    .schedule {
        font-size: 0.7rem;
    }
}

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
    body {
        padding: 30px;
    }

    .container {
        max-width: 500px;
    }

    .logo-img {
        max-width: 100%;
    }

    .menu-item {
        padding: 14px 22px;
    }

    .icon {
        font-size: 1.3rem;
        width: 34px;
        height: 34px;
    }

    .label {
        font-size: 0.95rem;
    }

    .social-link {
        font-size: 1.5rem;
        width: 44px;
        height: 44px;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .schedule {
        font-size: 0.75rem;
    }
}

/* Form Responsive Styles */
@media (max-width: 600px) {
    .form-container {
        padding: 18px;
        max-width: 100%;
    }

    label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    textarea,
    select {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .star-rating {
        font-size: 1.8rem;
        gap: 8px;
        justify-content: center;
    }

    .btn-submit {
        font-size: 0.95rem;
        padding: 14px;
    }

    .form-group {
        margin-bottom: 18px;
    }
}

@media (min-width: 601px) {
    .form-container {
        padding: 25px;
        max-width: 500px;
    }
}