/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification Modal */
.age-modal {
    display: flex;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.age-modal-content {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(51, 51, 51, 0.95));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.age-modal-header {
    margin-bottom: 20px;
}

.age-modal-header h2 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.age-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

.age-modal p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.age-modal-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.age-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.age-btn.confirm {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.age-btn.confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.age-btn.decline {
    background: linear-gradient(45deg, #DC143C, #B22222);
    color: #fff;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.age-btn.decline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    line-height: 1;
    margin-bottom: 0;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

.nav-logo span {
    font-size: 1rem;
    color: #DC143C;
    display: block;
    font-weight: 400;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-menu li a:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #FFD700, #DC143C);
    transition: all 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
    left: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('../images/new-header-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(26, 26, 26, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    margin-bottom: 10px;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes glow {
    from { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.6); }
    to { text-shadow: 0 0 40px rgba(255, 215, 0, 1), 0 0 50px rgba(255, 215, 0, 0.8); }
}

.hero-subtitle {
    font-size: 2.5rem;
    color: #DC143C;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
}

.hero-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.desktop-text {
    display: block;
}

.mobile-text {
    display: none;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
    background: linear-gradient(45deg, #DC143C, #FF6B6B);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.6);
}

.hero-btn:active {
    transform: translateY(-1px) scale(0.95);
    animation: buttonPress 0.2s ease;
}

@keyframes buttonPress {
    0% { transform: translateY(-3px) scale(1); }
    50% { transform: translateY(1px) scale(0.95); }
    100% { transform: translateY(-1px) scale(0.95); }
}

/* Cooperation Section */
.cooperation {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
}

.cooperation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(220, 20, 60, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 60px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    position: relative;
}

.cooperation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.cooperation-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cooperation-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.cooperation-card:hover::before {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.cooperation-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.cooperation-icon {
    text-align: center;
    margin-bottom: 20px;
}

.cooperation-icon i {
    font-size: 3rem;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

.cooperation-card h3 {
    text-align: center;
    margin-bottom: 20px;
}

.cooperation-card h3 a {
    font-size: 1.5rem;
    background: linear-gradient(45deg, #FFD700, #DC143C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cooperation-card h3 a:hover {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    filter: brightness(1.2);
}

.cooperation-details p:first-child {
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
}

.cooperation-details ul {
    list-style: none;
    margin: 20px 0;
}

.cooperation-details ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #ffffff;
}

.cooperation-details ul li i {
    color: #DC143C;
    font-size: 0.9rem;
}

.cooperation-description {
    margin-top: 20px;
    color: #cccccc;
    line-height: 1.6;
    font-style: italic;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.service-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 3rem;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

.service-card h3 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Ambiente Section */
.ambiente {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.ambiente-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0 60px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(26, 26, 26, 0.5);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-item i {
    font-size: 1.5rem;
    color: #FFD700;
}

.feature-item span {
    color: #ffffff;
    font-weight: 500;
}

.ambiente-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.review-summary {
    text-align: center;
    margin-bottom: 60px;
}

.rating-display {
    display: inline-block;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px 40px;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stars {
    margin: 10px 0;
}

.stars i {
    color: #FFD700;
    font-size: 1.5rem;
    margin: 0 2px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

.review-stars {
    margin-bottom: 15px;
}

.review-stars i {
    color: #FFD700;
    margin-right: 2px;
}

.review-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-author strong {
    color: #FFD700;
}

.review-author span {
    color: #999;
    font-size: 0.9rem;
}

.google-maps-btn {
    text-align: center;
    margin-top: 40px;
}

.google-maps-btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #4285f4, #34a853);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.google-maps-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info h3,
.contact-form h3 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-item i {
    color: #FFD700;
    font-size: 1.3rem;
    margin-top: 3px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: #FFD700;
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FFD700;
}

.contact-form {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #FFD700;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    border-radius: 10px;
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.maps-container {
    margin-top: 60px;
}

.maps-container h3 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.google-map {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 20px;
}

.maps-btn {
    text-align: center;
}

.maps-btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #4285f4, #34a853);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.maps-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.footer-section p,
.footer-section ul li {
    color: #cccccc;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: #999;
}

.footer-credit a {
    color: #FFD700;
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(51, 51, 51, 0.95));
    backdrop-filter: blur(15px);
    margin: 5% auto;
    padding: 40px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #FFD700;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #DC143C;
}

.modal-info h3 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.modal-info p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.reservation-contact {
    background: rgba(26, 26, 26, 0.5);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin: 20px 0;
}

.reservation-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.reservation-contact i {
    color: #FFD700;
}

.reservation-contact a {
    color: #FFD700;
    text-decoration: none;
}

.reservation-contact a:hover {
    text-decoration: underline;
}

#modalImage {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo {
        margin-top: 8px;
    }
    
    .nav-logo h1 {
        font-size: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        border-top: 1px solid rgba(255, 215, 0, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 3.5rem;
        margin-top: 60px;
    }
    
    .hero-subtitle {
        display: none;
    }
    
    .desktop-text {
        display: none;
    }
    
    .mobile-text {
        display: block;
    }



    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 90%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .cooperation-grid {
        grid-template-columns: 1fr;
    }

    .cooperation-card {
        padding: 30px 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .ambiente-gallery {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
        margin-top: 80px;
    }
    
    .hero-subtitle {
        display: none;
    }

    .hero-btn {
        width: 85%;
        max-width: 220px;
        padding: 10px 18px;
        font-size: 0.95rem;
    }

    .cooperation-card {
        padding: 25px 15px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .modal-content {
        padding: 20px 15px;
    }

    .age-modal-content {
        padding: 30px 20px;
    }

    .age-modal-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }
}