:root {--primary-color: #FF0066;--secondary-color: #14d117;--dark-bg: #0a0a0a;--light-text: #ffffff;--gray-text: #b0b0b0;--gradient: linear-gradient(135deg, #FF0066 0%, #FF4D4D 100%);}* {margin: 0;padding: 0;box-sizing: border-box;}body {font-family: 'Poppins', sans-serif;background-color: var(--dark-bg);color: var(--light-text);line-height: 1.6;min-height: 100vh;overflow-x: hidden;}.header {background: rgba(10, 10, 10, 0.95);backdrop-filter: blur(10px);padding: 1rem 0;position: fixed;width: 100%;top: 0;z-index: 1000;border-bottom: 1px solid rgba(255, 255, 255, 0.1);}.header-container {max-width: 1200px;margin: 0 auto;padding: 0 1.5rem;display: flex;justify-content: space-between;align-items: center;}.logo {height: 35px;z-index: 1001;}.menu-toggle {display: none;background: none;border: none;cursor: pointer;padding: 0;width: 30px;height: 30px;position: relative;z-index: 1001;}.menu-toggle span {display: block;width: 25px;height: 3px;background: white;margin: 5px 0;transition: all 0.3s ease;border-radius: 2px;}.menu-toggle.active span:nth-child(1) {transform: rotate(45deg) translate(5px, 5px);}.menu-toggle.active span:nth-child(2) {opacity: 0;}.menu-toggle.active span:nth-child(3) {transform: rotate(-45deg) translate(7px, -6px);}.nav-menu {display: flex;gap: 2rem;align-items: center;list-style: none;}.nav-link {color: var(--light-text);text-decoration: none;font-weight: 500;transition: all 0.3s ease;position: relative;padding: 0.5rem 0;}.nav-link:hover {color: var(--primary-color);}.nav-link::after {content: '';position: absolute;bottom: 0;left: 0;width: 0;height: 2px;background: var(--gradient);transition: width 0.3s ease;}.nav-link:hover::after {width: 100%;}.whatsapp-btn {background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);color: white;padding: 0.7rem 1.5rem;border-radius: 50px;text-decoration: none;display: inline-flex;align-items: center;gap: 0.5rem;font-weight: 500;transition: all 0.3s ease;box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);}.whatsapp-btn:hover {transform: translateY(-3px);box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);}.hero-section {background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.8)), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-4.0.3');background-size: cover;background-position: center;background-attachment: fixed;padding: 120px 1.5rem 60px;text-align: center;position: relative;overflow: hidden;}.hero-section::before {content: '';position: absolute;top: 0;left: 0;right: 0;bottom: 0;background: radial-gradient(circle at 50% 50%, rgba(255, 0, 102, 0.1) 0%, transparent 70%);}.hero-content {position: relative;z-index: 1;max-width: 800px;margin: 0 auto;}.hero-title {font-size: 2.5rem;font-weight: 800;margin-bottom: 1rem;background: var(--gradient);-webkit-background-clip: text;-webkit-text-fill-color: transparent;}.hero-subtitle {font-size: 1.1rem;color: var(--gray-text);margin-bottom: 2rem;}.contact-cards-section {padding: 3rem 1.5rem;background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);}.contact-cards-container {max-width: 1200px;margin: 0 auto;display: grid;grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));gap: 1.5rem;}.contact-card {background: rgba(255, 255, 255, 0.03);padding: 2rem;border-radius: 20px;text-align: center;transition: all 0.3s ease;border: 1px solid rgba(255, 255, 255, 0.05);position: relative;overflow: hidden;}.contact-card::before {content: '';position: absolute;top: 0;left: 0;width: 100%;height: 3px;background: var(--gradient);transform: scaleX(0);transition: transform 0.3s ease;}.contact-card:hover {transform: translateY(-10px);background: rgba(255, 255, 255, 0.06);box-shadow: 0 20px 40px rgba(255, 0, 102, 0.1);}.contact-card:hover::before {transform: scaleX(1);}.contact-card-icon {width: 70px;height: 70px;background: var(--gradient);border-radius: 50%;display: flex;align-items: center;justify-content: center;margin: 0 auto 1.5rem;font-size: 1.8rem;color: white;position: relative;}.contact-card-icon::after {content: '';position: absolute;width: 100%;height: 100%;border-radius: 50%;background: var(--gradient);opacity: 0.3;animation: pulse 2s ease-in-out infinite;}@keyframes pulse {0% {transform: scale(1);opacity: 0.3;}50% {transform: scale(1.2);opacity: 0;}100% {transform: scale(1);opacity: 0.3;}}.contact-card-title {font-size: 1.2rem;font-weight: 600;margin-bottom: 0.8rem;color: white;}.contact-card-info {color: var(--gray-text);margin-bottom: 1rem;font-size: 0.95rem;}.contact-card-link {color: var(--primary-color);text-decoration: none;font-weight: 500;display: inline-flex;align-items: center;gap: 0.5rem;transition: all 0.3s ease;}.contact-card-link:hover {gap: 1rem;}.main-contact-section {padding: 3rem 1.5rem;background: var(--dark-bg);}.section-header {text-align: center;margin-bottom: 3rem;}.section-title {font-size: 2rem;font-weight: 700;margin-bottom: 1rem;background: var(--gradient);-webkit-background-clip: text;-webkit-text-fill-color: transparent;}.section-subtitle {font-size: 1rem;color: var(--gray-text);max-width: 600px;margin: 0 auto;}.contact-container {max-width: 1200px;margin: 0 auto;display: grid;grid-template-columns: 1fr 1fr;gap: 3rem;}.contact-form-wrapper {background: rgba(255, 255, 255, 0.03);padding: 2rem;border-radius: 25px;border: 1px solid rgba(255, 255, 255, 0.05);box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);}.form-title {font-size: 1.5rem;font-weight: 600;margin-bottom: 1.5rem;color: white;}.form-group {margin-bottom: 1.2rem;}.form-label {display: block;margin-bottom: 0.5rem;color: var(--gray-text);font-size: 0.9rem;}.form-control {width: 100%;padding: 1rem;background: rgba(255, 255, 255, 0.05);border: 1px solid rgba(255, 255, 255, 0.1);border-radius: 12px;color: white;font-family: 'Poppins', sans-serif;transition: all 0.3s ease;font-size: 0.95rem;}.form-control:focus {outline: none;background: rgba(255, 255, 255, 0.08);border-color: var(--primary-color);box-shadow: 0 0 0 3px rgba(255, 0, 102, 0.1);}.form-control::placeholder {color: rgba(255, 255, 255, 0.4);}select.form-control {cursor: pointer;}textarea.form-control {resize: vertical;min-height: 100px;}.btn-submit {width: 100%;padding: 1rem;background: var(--gradient);color: white;border: none;border-radius: 50px;font-weight: 600;font-size: 1rem;cursor: pointer;transition: all 0.3s ease;display: flex;align-items: center;justify-content: center;gap: 0.5rem;box-shadow: 0 10px 30px rgba(255, 0, 102, 0.3);}.btn-submit:hover {transform: translateY(-3px);box-shadow: 0 15px 40px rgba(255, 0, 102, 0.4);}.info-section {display: flex;flex-direction: column;gap: 1.5rem;}.info-box {background: rgba(255, 255, 255, 0.03);padding: 1.5rem;border-radius: 20px;border: 1px solid rgba(255, 255, 255, 0.05);transition: all 0.3s ease;}.info-box:hover {background: rgba(255, 255, 255, 0.05);transform: translateX(10px);border-color: rgba(255, 0, 102, 0.3);}.info-box-header {display: flex;align-items: center;gap: 1rem;margin-bottom: 1rem;}.info-icon {width: 45px;height: 45px;background: var(--gradient);border-radius: 50%;display: flex;align-items: center;justify-content: center;color: white;font-size: 1.2rem;flex-shrink: 0;}.info-title {font-size: 1.1rem;font-weight: 600;color: white;}.info-content {color: var(--gray-text);padding-left: 3.5rem;font-size: 0.95rem;}.info-content a {color: var(--primary-color);text-decoration: none;transition: color 0.3s ease;}.info-content a:hover {color: #ff3380;text-decoration: underline;}.map-section {padding: 3rem 1.5rem;background: linear-gradient(180deg, #0f0f0f 0%, var(--dark-bg) 100%);}.map-container {max-width: 1200px;margin: 0 auto;}.map-header {text-align: center;margin-bottom: 2rem;}.map-title {font-size: 1.8rem;font-weight: 600;margin-bottom: 0.5rem;color: white;}.map-subtitle {color: var(--gray-text);font-size: 0.95rem;}.map-wrapper {border-radius: 20px;overflow: hidden;height: 400px;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);}.map-wrapper iframe {width: 100%;height: 100%;border: 0;}.cta-section {background: linear-gradient(135deg, #FF0066 0%, #FF4D4D 100%);padding: 3rem 1.5rem;text-align: center;position: relative;overflow: hidden;}.cta-section::before, .cta-section::after {content: '';position: absolute;width: 200px;height: 200px;background: rgba(255, 255, 255, 0.1);border-radius: 50%;}.cta-section::before {top: -100px;left: -100px;}.cta-section::after {bottom: -100px;right: -100px;}.cta-content {position: relative;z-index: 1;max-width: 800px;margin: 0 auto;}.cta-title {font-size: 2rem;font-weight: 700;color: white;margin-bottom: 1rem;}.cta-text {font-size: 1.1rem;color: rgba(255, 255, 255, 0.95);margin-bottom: 2rem;}.cta-button {background: white;color: var(--primary-color);padding: 1rem 2.5rem;border-radius: 50px;text-decoration: none;font-weight: 600;display: inline-flex;align-items: center;gap: 0.5rem;transition: all 0.3s ease;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);}.cta-button:hover {transform: translateY(-5px);box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);}.footer {background: #050505;padding: 2rem 1.5rem 1.5rem;text-align: center;border-top: 1px solid rgba(255, 255, 255, 0.05);}.footer-content {max-width: 1200px;margin: 0 auto;}.footer-logo {height: 40px;margin-bottom: 1.5rem;opacity: 0.9;}.footer-links {display: flex;justify-content: center;gap: 1.5rem;margin-bottom: 1.5rem;flex-wrap: wrap;}.footer-link {color: var(--gray-text);text-decoration: none;transition: color 0.3s ease;font-size: 0.9rem;}.footer-link:hover {color: var(--primary-color);}.copyright {color: var(--gray-text);font-size: 0.85rem;padding-top: 1.5rem;border-top: 1px solid rgba(255, 255, 255, 0.05);}@media (max-width: 768px) {.menu-toggle {display: block;}.nav-menu {position: fixed;top: 0;right: -100%;width: 80%;max-width: 300px;height: 100vh;background: rgba(10, 10, 10, 0.98);flex-direction: column;justify-content: flex-start;align-items: flex-start;padding: 80px 30px 30px;transition: right 0.3s ease;box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);}.nav-menu.active {right: 0;}.nav-link {width: 100%;padding: 1rem 0;border-bottom: 1px solid rgba(255, 255, 255, 0.1);}.whatsapp-btn {margin-top: 2rem;width: 100%;justify-content: center;}.hero-section {padding: 100px 1rem 40px;background-attachment: scroll;}.hero-title {font-size: 1.8rem;}.hero-subtitle {font-size: 0.95rem;}.contact-cards-section {padding: 2rem 1rem;}.contact-cards-container {grid-template-columns: 1fr;gap: 1rem;}.contact-card {padding: 1.5rem;}.main-contact-section {padding: 2rem 1rem;}.section-title {font-size: 1.5rem;}.section-subtitle {font-size: 0.9rem;}.contact-container {grid-template-columns: 1fr;gap: 2rem;}.contact-form-wrapper {padding: 1.5rem;}.form-title {font-size: 1.3rem;}.info-content {padding-left: 0;margin-top: 0.5rem;}.map-wrapper {height: 300px;}.cta-section {padding: 2.5rem 1rem;}.cta-title {font-size: 1.5rem;}.cta-text {font-size: 1rem;}.cta-button {padding: 0.9rem 2rem;font-size: 0.95rem;}.footer-links {gap: 1rem;font-size: 0.85rem;}}@media (max-width: 480px) {.hero-title {font-size: 1.5rem;}.contact-card-icon {width: 60px;height: 60px;font-size: 1.5rem;}.contact-card-title {font-size: 1.1rem;}.info-box {padding: 1.2rem;}.form-control {padding: 0.9rem;font-size: 0.9rem;}}.menu-overlay {display: none;position: fixed;top: 0;left: 0;width: 100%;height: 100%;background: rgba(0, 0, 0, 0.7);z-index: 999;}.menu-overlay.active {display: block;}