* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --primary-red: #C41E3A; --dark-gray: #1a1a1a; --medium-gray: #4a4a4a; --light-gray: #f8f9fa; --white: #ffffff; --border-light: #e9ecef; --shadow-light: 0 2px 20px rgba(0, 0, 0, 0.08); --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12); }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--dark-gray); overflow-x: hidden; font-weight: 400; }
.header { background: var(--white); padding: 1.2rem 0; box-shadow: var(--shadow-light); position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-light); }
.nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 3rem; }
.logo-container { display: flex; align-items: center; gap: 1.2rem; }
.logo-icon { width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; }
.logo-img { width: 100%; height: 100%; object-fit: contain; }
.logo-text h1 { font-size: 1.8rem; color: var(--dark-gray); font-weight: 700; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 0; }
.logo-text .events { color: var(--primary-red); font-size: 0.9rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1; margin-top: -2px; }
.nav-menu { display: flex; gap: 2rem; align-items: center; }
.hamburger-menu { display: none; flex-direction: column; cursor: pointer; padding: 0.5rem; z-index: 1001; }
.hamburger-line { width: 25px; height: 3px; background: var(--dark-gray); margin: 3px 0; transition: all 0.3s ease; border-radius: 2px; }
.hamburger-menu.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.hamburger-menu.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger-menu.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
.nav-link { color: var(--dark-gray); text-decoration: none; font-weight: 500; font-size: 1rem; transition: all 0.2s ease; padding: 0.5rem 1rem; border-radius: 6px; position: relative; }
.nav-link:hover { color: var(--primary-red); background: rgba(196, 30, 58, 0.05); }
.nav-link.active { color: var(--primary-red); background: rgba(196, 30, 58, 0.1); font-weight: 600; }
.nav-link.active::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 30px; height: 3px; background: var(--primary-red); border-radius: 2px; }
@media (max-width: 768px) { .hamburger-menu { display: flex; } }
@media (min-width: 769px) { .hamburger-menu { display: none !important; } .nav-menu { position: static !important; flex-direction: row !important; height: auto !important; width: auto !important; background: transparent !important; box-shadow: none !important; } }
.hero { background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 10rem 3rem 6rem; position: relative; }
.hero-content { max-width: 900px; z-index: 2; }
.hero-logo { height: 200px !important; width: auto !important; margin: 0 auto 3rem auto; display: block; max-width: none !important; max-height: none !important; border-radius: 50%; border: 4px solid rgba(255, 255, 255, 0.3); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); background: rgba(255, 255, 255, 0.1); padding: 8px; transition: all 0.3s ease; }
.hero-logo:hover { transform: scale(1.05); border-color: rgba(255, 255, 255, 0.5); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); }
.coming-soon { font-size: 3.8rem; font-weight: 700; color: var(--dark-gray); margin-bottom: 1.5rem; letter-spacing: -1px; line-height: 1.1; }
.coming-soon .highlight { color: var(--primary-red); }
.tagline { font-size: 1.2rem; color: var(--primary-red); font-weight: 500; letter-spacing: 2px; margin-bottom: 1.5rem; text-transform: uppercase; }
.hero-description { font-size: 1.2rem; color: var(--medium-gray); margin-bottom: 1rem; line-height: 1.7; font-weight: 400; }
.cta-buttons { display: flex; justify-content: center; }
.btn-discover { padding: 1.2rem 2.5rem; border: none; border-radius: 30px; font-size: 1rem; font-weight: 500; cursor: pointer; transition: all 0.2s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 0.7rem; letter-spacing: 0.3px; background: var(--primary-red); color: var(--white); animation: float 3s ease-in-out infinite; box-shadow: 0 6px 20px rgba(196, 30, 58, 0.3); }
.btn-discover:hover { background: #A01729; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4); animation-play-state: paused; }
.btn-discover i { transition: transform 0.2s ease; }
.btn-discover:hover i { transform: translateY(2px); }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }
.services-section { padding: 8rem 3rem; background: var(--white); }
.container { max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: 2.8rem; color: var(--dark-gray); margin-bottom: 1.5rem; font-weight: 700; letter-spacing: -0.5px; }
.section-subtitle { font-size: 1.1rem; color: var(--medium-gray); font-weight: 400; }
.about-content { max-width: 800px; margin: 0 auto; text-align: center; }
.about-content p { font-size: 1.1rem; line-height: 1.7; color: var(--medium-gray); margin-bottom: 1rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.service-item { background: var(--white); padding: 3rem 2.5rem; border-radius: 16px; border: 1px solid var(--border-light); text-align: center; transition: all 0.3s ease; box-shadow: var(--shadow-light); min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.service-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); border-color: var(--primary-red); }
.service-icon { font-size: 2.8rem; color: var(--primary-red); margin-bottom: 1.5rem; }
.service-image { width: 140px; height: 140px; object-fit: contain; border-radius: 16px; margin-bottom: 1.5rem; border: 3px solid var(--primary-red); transition: all 0.3s ease; background: #f8f9fa; padding: 8px; }
.service-item:hover .service-image { transform: scale(1.05); border-color: #A01729; box-shadow: 0 8px 25px rgba(196, 30, 58, 0.2); }
.service-name { font-size: 1.1rem; font-weight: 500; color: var(--dark-gray); letter-spacing: 0.2px; }
.service-coming-soon { font-size: 0.9rem; color: var(--primary-red); font-weight: 400; margin-top: 0.5rem; font-style: italic; }
.contact { padding: 8rem 3rem; background: var(--dark-gray); color: var(--white); }
.contact .section-title { color: var(--white); }
.contact .section-subtitle { color: #cccccc; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 3rem; margin-top: 5rem; justify-items: center; }
.contact-card { background: rgba(255, 255, 255, 0.05); padding: 3rem; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); width: 100%; max-width: 450px; min-height: 400px; }
.contact-title { font-size: 1.4rem; margin-bottom: 2.5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 600; color: var(--white); text-align: center; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; flex: 1; }
.contact-link { display: flex; align-items: center; justify-content: center; gap: 1.2rem; color: var(--white); text-decoration: none; padding: 1.2rem 1.5rem; border-radius: 8px; transition: all 0.2s ease; background: rgba(255, 255, 255, 0.05); font-weight: 400; border: 1px solid transparent; width: 100%; max-width: 320px; text-align: center; }
.contact-link:hover { background: var(--primary-red); transform: translateX(5px); border-color: rgba(255, 255, 255, 0.2); }
.contact-link i { width: 20px; text-align: center; font-size: 1.3rem; }
.footer { background: #111111; color: #cccccc; text-align: center; padding: 4rem 3rem; border-top: 1px solid #333; }
.footer-content { max-width: 1400px; margin: 0 auto; }
.footer h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 1rem; font-weight: 600; }
.footer p { margin-bottom: 1rem; font-weight: 400; }
.footer-credits { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.footer-credits .dot { width: 4px; height: 4px; background: #666; border-radius: 50%; }
.social-links { display: flex; justify-content: center; gap: 1.5rem; margin: 3rem 0; }
.social-link { width: 45px; height: 45px; background: var(--primary-red); color: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.2s ease; font-size: 1.1rem; }
.social-link:hover { background: #A01729; transform: translateY(-2px); }
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 55px; height: 55px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; text-decoration: none; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); z-index: 1000; transition: all 0.2s ease; }
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
@media (max-width: 768px) {
    .nav-container { padding: 0 1.5rem; flex-direction: row; justify-content: space-between; align-items: center; }
    .logo-icon { width: 50px; height: 50px; }
    .logo-text h1 { font-size: 1.3rem; line-height: 1.1; margin-bottom: 0; }
    .logo-text .events { font-size: 0.7rem; letter-spacing: 1px; line-height: 1; margin-top: -1px; }
    .header { padding: 0.8rem 0; }
    .hamburger-menu { display: flex; }
    .nav-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--white); flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem; transition: right 0.3s ease; z-index: 1000; box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1); }
    .nav-menu.active { right: 0; }
    .nav-menu .nav-link { font-size: 1.1rem; padding: 0.8rem 1.5rem; width: 180px; text-align: center; border-radius: 10px; background: rgba(196, 30, 58, 0.05); border: 1px solid rgba(196, 30, 58, 0.1); }
    .coming-soon { font-size: 2.8rem; }
    .tagline { font-size: 1rem; letter-spacing: 1.5px; }
    .hero { padding: 7rem 1.5rem 4rem; }
    .hero-description { font-size: 1.1rem; }
    .cta-buttons { justify-content: center; }
    .btn-discover { width: 100%; max-width: 300px; justify-content: center; }
    .services-section, .contact { padding: 6rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .service-item { padding: 3rem 2rem; min-height: 300px; }
    .service-image { width: 150px; height: 150px; }
    .service-icon { font-size: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; justify-items: center; }
    .contact-card { padding: 2rem; max-width: 100%; min-height: auto; }
    .contact-link { max-width: 280px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.1rem; }
    .section-title { font-size: 2.2rem; }
    .hero-logo { height: 120px; margin-bottom: 2rem; }
}
@media (max-width: 900px) and (min-width: 769px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } .contact-card { max-width: 500px; } }
@media (max-width: 480px) { .coming-soon { font-size: 2.2rem; } .hero-description { font-size: 1rem; } .service-item { padding: 2rem 1.5rem; } }
