 /* Variables y reset */
 :root {
     --primary: #3AAFA9;
     --secondary: #F28C8C;
     --accent: #ff3e7f;
     --light: #f0f6ff;
     --dark: #ffffff;
     --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', 'Segoe UI', sans-serif;
 }

 body {
     background-color: #3AAFA9;
     color: #e0e0e0;
     overflow-x: hidden;
     background-image:
         radial-gradient(circle at 10% 20%, rgba(0, 162, 255, 0.1) 0%, transparent 20%),
         radial-gradient(circle at 90% 80%, rgba(255, 62, 127, 0.1) 0%, transparent 20%);
 }

 /* Estilos del menú futurista */
 .menu-container {
     position: relative;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     background: rgba(201, 201, 201, 0.8);
     backdrop-filter: blur(10px);
     padding: 10px 0;
     border-bottom: 1px solid rgba(201, 201, 201, 0.8);
     background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(226, 226, 226, 0.4) 40%,
        rgba(201, 201, 201, 0.2) 70%,
        rgba(201, 201, 201, 0) 100%
    );
    backdrop-filter: blur(10px);
 }

 .menu-wrapper {
     text-align: center;
 }

 .logo {
     width: 13.6%;
     text-align: center;
 }

 /* Menú hamburguesa futurista */
 .menu-toggle {
     display: none;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     width: 50px;
     height: 50px;
     cursor: pointer;
     z-index: 1001;
     background: rgb(63, 63, 63);
     border-radius: 50%;
     box-shadow: 0 0 15px rgba(15, 15, 15, 0.5);
 }

 .menu-toggle span {
     width: 25px;
     height: 2px;
     background: white;
     margin: 2px 0;
     transition: var(--transition);
     border-radius: 2px;
 }

 /* Navegación principal con animación futurista */
 .nav-main {
     display: flex;
     list-style: none;
 }

 .nav-item {
     position: relative;
     margin: 0 15px;
 }

 .nav-link {
     text-decoration: none;
     color: black;
     font-weight: 500;
     font-size: 16px;
     padding: 10px 0;
     position: relative;
     transition: var(--transition);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: gray;
     transition: var(--transition);
     box-shadow: 0 0 10px var(black);
 }

 .nav-link:hover {
     color: gray;
     text-shadow: 0 0 10px rgba(22, 22, 22, 0.5);
 }

 .nav-link:hover::after {
     width: 100%;
 }

 /* Menú desplegable con animación futurista */
 .dropdown {
     position: absolute;
     top: 100%;
     left: 0;
     width: 220px;
     background: rgba(15, 23, 38, 0.9);
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     opacity: 0;
     visibility: hidden;
     transform: translateY(20px) perspective(1000px) rotateX(-10deg);
     transition: var(--transition);
     z-index: 1000;
     padding: 15px 0;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(0, 162, 255, 0.2);
 }

 .nav-item:hover .dropdown {
     opacity: 1;
     visibility: visible;
     transform: translateY(10px) perspective(1000px) rotateX(0);
 }

 .dropdown-item {
     padding: 12px 20px;
     display: block;
     color: var(--light);
     text-decoration: none;
     transition: var(--transition);
     position: relative;
     overflow: hidden;
 }

 .dropdown-item::before {
     content: '';
     position: absolute;
     left: -100%;
     top: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(0, 162, 255, 0.1), transparent);
     transition: var(--transition);
     z-index: -1;
 }

 .dropdown-item:hover {
     color: var(--secondary);
     padding-left: 25px;
     text-shadow: 0 0 10px rgba(0, 162, 255, 0.5);
 }

 .dropdown-item:hover::before {
     left: 100%;
 }

 /* Hero Section futurista */
 .hero {
    padding: 20px 0;
     display: flex;
     background: linear-gradient(135deg, #FFFDF9 0%, #FFD3B6 100%);
     color: white;
     width: 100%;
 }

 .hero-content {
    margin-left: 2%;
     padding: 0 10px;
     position: relative;
     z-index: 1;
 }

 .hero h2 {
     font-size: 3.5rem;
     margin-top: 2%;
     margin-bottom: 20px;
     font-weight: 800;
     background: linear-gradient(135deg, #1e6966 0%, #abecc5 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     text-shadow: 0 5px 15px rgba(0, 162, 255, 0.4);
 }

 .hero p {
     font-size: 1.2rem;
     max-width: 90%;
     margin-bottom: 30px;
     line-height: 1.6;
     color: #302b2b;
     text-align: justify;
 }

 .btn {
     display: inline-block;
     padding: 15px 30px;
     background: linear-gradient(135deg, var(--secondary) 0%, #bd346d 100%);
     color: white;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     transition: var(--transition);
     box-shadow: 0 5px 15px rgba(129, 132, 134, 0.4);
     border: none;
     cursor: pointer;
     position: relative;
     overflow: hidden;
 }

 .btn::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transform: rotate(45deg);
     transition: var(--transition);
 }

 .btn:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(34, 35, 36, 0.6);
 }

 .btn:hover::before {
     left: 50%;
 }

 /* Sección de servicios futurista */
 .services {
     padding: 100px 20px;
     background: var(--dark);
     position: relative;
 }

 .services::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 10% 10%, rgba(0, 162, 255, 0.05) 0%, transparent 20%),
         radial-gradient(circle at 90% 90%, rgba(255, 62, 127, 0.05) 0%, transparent 20%);
 }

 .section-title {
     text-align: center;
     margin-bottom: 60px;
     position: relative;
     z-index: 1;
 }

 .section-title h2 {
     font-size: 2.5rem;
     color: var(--light);
     margin-bottom: 20px;
     background: linear-gradient(135deg, #1e6966 0%, #abecc5 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .section-title p {
     color: #302b2b;
     max-width: 700px;
     margin: 0 auto;
     font-size: 1.1rem;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }

 .service-card {
     background: rgba(15, 23, 38, 0.7);
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     transition: var(--transition);
     position: relative;
     z-index: 1;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(0, 162, 255, 0.1);
 }

 .service-card:hover {
     transform: translateY(-10px) scale(1.02);
     box-shadow: 0 15px 35px rgba(0, 162, 255, 0.2);
     border-color: rgba(0, 162, 255, 0.3);
 }

 .service-icon {
     height: 200px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, #0f2027 0%, #d97b5d 100%);
     color: white;
     font-size: 60px;
     position: relative;
     overflow: hidden;
 }

 .service-icon::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
     transform: translateX(-100%);
 }

 .service-card:hover .service-icon::before {
     animation: shine 1.5s infinite;
 }

 @keyframes shine {
     100% {
         transform: translateX(100%);
     }
 }

 .service-content {
     padding: 25px;
 }

 .service-content h3 {
     font-size: 1.5rem;
     margin-bottom: 15px;
     color: var(--light);
 }

 .service-content p {
     color: #dadada;
     line-height: 1.6;
 }

.section-title0 {
    font-size: 20px;
     text-align: center;
     margin-bottom: 10px;
     position: relative;
     z-index: 1;
     margin-top: 2%;
     color: #302b2b;
     line-height: 1.6;
     text-align: justify;
 }

.section-title1 {
    font-size: 20px;
     text-align: center;
     margin-bottom: 20px;
     position: relative;
     z-index: 1;
     color: #302b2b;
     line-height: 1.6;
     text-align: justify;
 }

 /* Formulario de contacto futurista */
 .contact {
     padding: 100px 20px;
     background: var(--dark);
     position: relative;
 }

 .contact::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 80% 20%, rgba(0, 162, 255, 0.1) 0%, transparent 30%),
         radial-gradient(circle at 20% 80%, rgba(255, 62, 127, 0.1) 0%, transparent 30%);
 }

 .contact-container {
     max-width: 800px;
     margin: 0 auto;
     background: rgba(15, 23, 38, 0.7);
     border-radius: 20px;
     padding: 40px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(0, 162, 255, 0.2);
     position: relative;
     z-index: 1;
 }

 .contact-title {
     text-align: center;
     margin-bottom: 40px;
 }

 .contact-title h2 {
     font-size: 2.5rem;
     margin-bottom: 15px;
     background: linear-gradient(135deg, #fff 0%, #00a2ff 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .contact-title p {
     color: #a0a0a0;
 }

 .form-group {
     margin-bottom: 25px;
     position: relative;
 }

 .form-label {
     display: block;
     margin-bottom: 8px;
     color: var(--light);
     font-weight: 500;
 }

 .form-input {
     width: 100%;
     padding: 15px;
     background: rgba(10, 15, 29, 0.7);
     border: 1px solid rgba(0, 162, 255, 0.3);
     border-radius: 10px;
     color: var(--light);
     font-size: 16px;
     transition: var(--transition);
 }

 .form-input:focus {
     outline: none;
     border-color: var(--secondary);
     box-shadow: 0 0 15px rgba(0, 162, 255, 0.3);
 }

 textarea.form-input {
     min-height: 120px;
     resize: vertical;
 }

 .submit-btn {
     display: block;
     width: 100%;
     padding: 15px;
     background: linear-gradient(135deg, var(--secondary) 0%, #bd346d 100%);
     color: white;
     border: none;
     border-radius: 10px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: var(--transition);
     box-shadow: 0 5px 15px rgba(22, 22, 22, 0.4);
 }

 .submit-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(15, 15, 15, 0.6);
 }

 /* Responsive */
 @media (max-width: 992px) {
     .menu-toggle {
         display: flex;
     }
     
     .logo {
         width: 110px;
     }

     .nav-main {
         position: fixed;
         top: 0;
         right: -100%;
         width: 280px;
         height: 100vh;
         background: rgba(243, 243, 243, 0.95);
         flex-direction: column;
         padding: 80px 20px 30px;
         box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
         transition: var(--transition);
         backdrop-filter: blur(10px);
         border-left: 1px solid rgba(0, 162, 255, 0.2);
     }

     .nav-main.active {
         right: 0;
     }

     .nav-item {
         margin: 15px 0;
     }

     .dropdown {
         position: static;
         width: 100%;
         box-shadow: none;
         margin-top: 10px;
         opacity: 1;
         visibility: visible;
         transform: none;
         display: none;
         background: rgba(10, 15, 29, 0.7);
     }

     .nav-item:hover .dropdown {
         transform: none;
     }

     .dropdown.active {
         display: block;
     }

     .hero h2 {
         font-size: 2.5rem;
     }

     .contact-container {
         padding: 30px 20px;
     }
 }