* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary-dark: #05F2AF;
--primary-light: #03A87A;
--bg-light: #f0f0f0;
--bg-dark: #0a0a0a;
--text-light: #0a0a0a;
--text-dark: #ffffff;
}

body.light-mode {
--primary: var(--primary-light);
background-color: var(--bg-light);
color: var(--text-light);
}

body.dark-mode {
--primary: var(--primary-dark);
background-color: var(--bg-dark);
color: var(--text-dark);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    position: relative;
}

.liquid-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
pointer-events: none;
}

.liquid-blob {
position: absolute;
border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
filter: blur(40px);
opacity: 0.08;
animation: morphBlob 10s infinite ease-in-out;
}

.blob-1 {
width: 500px;
height: 500px;
filter: blur(40px);
top: -10%;
left: -10%;
background: var(--primary);
animation-delay: 0s;
}

.blob-2 {
width: 400px;
height: 400px;
top: 40%;
right: -5%;
background: var(--primary);
animation-delay: 3s;
}

.blob-3 {
width: 600px;
height: 600px;
bottom: -15%;
left: 30%;
background: var(--primary);
animation-delay: 6s;
}

@keyframes morphBlob {
0%, 100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(0, 0) rotate(0deg);
}
25% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(50px, 30px) rotate(90deg);
}
50% {
    border-radius: 30% 70% 50% 50% / 50% 60% 40% 60%;
    transform: translate(-30px, 50px) rotate(180deg);
}
75% {
    border-radius: 70% 30% 60% 40% / 30% 50% 50% 70%;
    transform: translate(30px, -50px) rotate(270deg);
}
}

@media (max-width: 1024px), (hover: none) {
    .liquid-blob {
        animation: none;
        filter: blur(100px);
        opacity: 0.03;
    }
    
    .blob-1, .blob-2, .blob-3 {
        transform: translate(0, 0) rotate(0deg);
    }
    
    .glass-orb {
        animation: none;
    }
}


/* Desactivar animaciones en Android */
/* Desactivar animaciones en Android */
body.android-device .liquid-blob,
html.android-device .liquid-blob {
    animation: none !important;
    filter: blur(100px) !important;
    opacity: 0.03 !important;
}

body.android-device .glass-orb,
html.android-device .glass-orb {
    animation: none !important;
}

body.android-device .shape,
html.android-device .shape {
    animation: none !important;
}

body.android-device .particle,
html.android-device .particle {
    animation: none !important;
    display: none;
}

body.android-device .blob-1,
body.android-device .blob-2,
body.android-device .blob-3 {
    transform: translate(0, 0) rotate(0deg) !important;
}

/* Generic class to disable all animations/transitions on mobile devices (Android & iOS)
   Use this instead of platform-specific classes when possible. This targets elements
   and pseudo-elements, forces animation/transition removal, and disables animated
   transforms, filters, and smooth scrolling. */
.no-animations *,
.no-animations *::before,
.no-animations *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    scroll-behavior: auto !important;
    filter: none !important;
    -webkit-animation: none !important;
    -webkit-transition: none !important;
    -webkit-transform: none !important;
}

/* Hide decorative particles and heavy elements when no-animations is active */
.no-animations .particle,
.no-animations #particles,
.no-animations .liquid-blob,
.no-animations .shape,
.no-animations .glass-orb {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Buttons and hover effects: remove hover transitions */
.no-animations .btn,
.no-animations .btn::before,
.no-animations .btn-primary::before,
.no-animations .btn-secondary::before {
    transition: none !important;
}

/* Ensure the navbar/backdrop doesn't animate */
.no-animations .navbar {
    transition: none !important;
    backdrop-filter: none !important;
}

/* Respect prefers-reduced-motion as well */
@media (prefers-reduced-motion: reduce) {
    :root:not(.no-animations) *,
    :root:not(.no-animations) *::before,
    :root:not(.no-animations) *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* Additional strong overrides to catch other animation-related properties */
.no-animations * {
    animation-name: none !important;
    animation-play-state: paused !important;
    transition-property: none !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
    will-change: auto !important;
    scroll-snap-type: none !important;
    scroll-snap-align: none !important;
}

/* target pseudo-classes that sometimes animate (hover/focus) */
.no-animations a:hover, .no-animations a:focus,
.no-animations button:hover, .no-animations button:focus,
.no-animations input:hover, .no-animations input:focus {
    transition: none !important;
    transform: none !important;
}

/* Disable SVG SMIL animations and presentation attributes where possible */
.no-animations svg * {
    animation: none !important;
    transition: none !important;
}
.no-animations svg [begin],
.no-animations svg animate,
.no-animations svg animateTransform,
.no-animations svg animateMotion,
.no-animations svg set {
    display: none !important;
}

/* Large GPU-accelerated elements: avoid will-change forcing GPU */
.no-animations .gpu, .no-animations [data-gpu] {
    will-change: auto !important;
}

/* Prevent CSS variable animated changes by deprioritizing transitions on root */
.no-animations :root,
.no-animations html,
.no-animations body {
    transition: none !important;
}

/* Persistent indicator badge for no-animations mode */
.no-animations-badge {
    position: fixed;
    right: 12px;
    bottom: 12px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    z-index: 99999;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    pointer-events: auto;
}
.no-animations-badge.small {
    padding: 4px 8px;
    font-size: 11px;
}

.navbar {
    position: fixed;
    top: 10px;
    width: 95%;
    padding: 1rem 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    margin: 0 auto;
    left: 2.5%;
}

.light-mode .navbar {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 32px rgba(3, 168, 122, 0.1);
    border-bottom: 1px solid rgba(3, 168, 122, 0.1);
}

.dark-mode .navbar {
    background: rgba(10, 10, 10, 0.7);
    box-shadow: 0 8px 32px rgba(5, 242, 175, 0.1);
    border-bottom: 1px solid rgba(5, 242, 175, 0.1);
}


/* Contenedor derecho con menú y theme toggle */
.navbar > :last-child {
    margin-left: auto;
}

.nav-menu {
    position: relative;
    margin-right: 1rem;
}

.theme-toggle {
background: var(--primary);
border: none;
padding: 0.5rem 1rem;
border-radius: 20px;
cursor: pointer;
font-size: 1.2rem;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.theme-toggle:hover {
transform: scale(1.1);
}

.light-mode .theme-toggle {
box-shadow: 0 4px 15px rgba(3, 168, 122, 0.3);
}

.dark-mode .theme-toggle {
box-shadow: 0 4px 15px rgba(5, 242, 175, 0.3);
}

.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem 5%;
position: relative;
overflow: hidden;
}

.hero-content {
text-align: center;
z-index: 1;
}

.hero-content > * {
animation: fadeInUp 0.8s ease backwards;
}

.hero-content h1 {
animation-delay: 0.2s;
}

.hero-content p {
animation-delay: 0.4s;
}

.hero-content .cta-buttons {
animation-delay: 0.6s;
}

.hero h1 {
font-size: 6rem;
margin-bottom: 1rem;
}

.light-mode .hero h1 {
background: linear-gradient(135deg, #03A87A, #026b52);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.dark-mode .hero h1 {
background: linear-gradient(135deg, #05F2AF, #00d9a3);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero p {
font-size: 1.5rem;
margin-bottom: 2rem;
opacity: 0.8;
}

.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

.btn {
padding: 1rem 2rem;
border: none;
border-radius: 30px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}

.btn-primary {
background: var(--primary);
color: #0a0a0a;
position: relative;
overflow: hidden;
}

.btn-primary::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
width: 300px;
height: 300px;
}

.btn-primary:hover {
transform: translateY(-3px);
}

.light-mode .btn-primary:hover {
box-shadow: 0 15px 35px rgba(3, 168, 122, 0.4);
}

.dark-mode .btn-primary:hover {
box-shadow: 0 15px 35px rgba(5, 242, 175, 0.4);
}

.btn-secondary {
background: transparent;
color: inherit;
border: 2px solid var(--primary);
position: relative;
overflow: hidden;
z-index: 1;
}

.btn-secondary::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: var(--primary);
transition: left 0.4s ease;
z-index: -1;
}

.btn-secondary:hover::before {
left: 0;
}

.btn-secondary:hover {
color: #0a0a0a;
transform: translateY(-3px);
}

.light-mode .btn-secondary:hover {
box-shadow: 0 10px 30px rgba(3, 168, 122, 0.3);
}

.dark-mode .btn-secondary:hover {
box-shadow: 0 10px 30px rgba(5, 242, 175, 0.3);
}

.floating-shapes {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 0;
}

.shape {
position: absolute;
border-radius: 50%;
opacity: 0.1;
animation: float 6s infinite ease-in-out;
}

.shape:nth-child(1) {
width: 300px;
height: 300px;
background: var(--primary);
top: 10%;
left: 10%;
animation-delay: 0s;
}

.shape:nth-child(2) {
width: 200px;
height: 200px;
background: var(--primary);
bottom: 20%;
right: 15%;
animation-delay: 2s;
}

.shape:nth-child(3) {
width: 150px;
height: 150px;
background: var(--primary);
top: 50%;
right: 10%;
animation-delay: 4s;
}


.liquid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.liquid-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(150px);
    opacity: 0.04;
    animation: morphBlob 10s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -10%;
    background: var(--primary);
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    top: 40%;
    right: -5%;
    background: var(--primary);
    animation-delay: 3s;
}

.blob-3 {
    width: 600px;
    height: 600px;
    bottom: -15%;
    left: 30%;
    background: var(--primary);
    animation-delay: 6s;
}

/*@keyframes morphBlob {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(50px, 30px) rotate(90deg);
    }
    50% {
        border-radius: 30% 70% 50% 50% / 50% 60% 40% 60%;
        transform: translate(-30px, 50px) rotate(180deg);
    }
    75% {
        border-radius: 70% 30% 60% 40% / 30% 50% 50% 70%;
        transform: translate(30px, -50px) rotate(270deg);
    }
}*/
.services {
padding: 5rem 5%;
position: relative;
align-content: center;
}

.section-title {
text-align: center;
font-size: 3rem;
margin-bottom: 3rem;
position: relative;
animation: fadeInUp 0.8s ease;
}

.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 4px;
background: var(--primary);
border-radius: 2px;
box-shadow: 0 0 20px var(--primary);
animation: expandWidth 1s ease 0.5s backwards;
}

@keyframes expandWidth {
from {
    width: 0;
}
to {
    width: 100px;
}
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 4rem;
}

.service-card {
padding: 2rem;
border-radius: 20px;
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
position: relative;
overflow: hidden;
backdrop-filter: blur(10px);
animation: fadeInUp 0.6s ease backwards;
}

.services-grid a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.services-grid a .service-card {
    height: 100%;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.light-mode .service-card {
background: rgba(255, 255, 255, 0.6);
box-shadow: 0 8px 32px rgba(3, 168, 122, 0.1);
border: 1px solid rgba(3, 168, 122, 0.2);
}

.dark-mode .service-card {
background: rgba(26, 26, 26, 0.6);
box-shadow: 0 8px 32px rgba(5, 242, 175, 0.05);
border: 1px solid rgba(5, 242, 175, 0.2);
}

.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 0;
background: var(--primary);
transition: height 0.3s ease;
opacity: 0.1;
}

.service-card:hover::before {
height: 100%;
}

.service-card::after {
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 ease;
}

.service-card:hover::after {
left: 100%;
}

.service-card:hover {
transform: translateY(-10px);
}

.light-mode .service-card:hover {
box-shadow: 0 15px 40px rgba(3, 168, 122, 0.3);
border-color: rgba(3, 168, 122, 0.4);
}

.dark-mode .service-card:hover {
box-shadow: 0 15px 40px rgba(5, 242, 175, 0.2);
border-color: rgba(5, 242, 175, 0.4);
}

.service-icon {
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
backdrop-filter: blur(10px);
transition: all 0.4s ease;
}

.light-mode .service-icon {
background: linear-gradient(135deg, rgba(3, 168, 122, 0.2), rgba(3, 168, 122, 0.05));
border: 2px solid rgba(3, 168, 122, 0.3);
box-shadow: 0 8px 32px rgba(3, 168, 122, 0.2);
}

.dark-mode .service-icon {
background: linear-gradient(135deg, rgba(5, 242, 175, 0.2), rgba(5, 242, 175, 0.05));
border: 2px solid rgba(5, 242, 175, 0.3);
box-shadow: 0 8px 32px rgba(5, 242, 175, 0.1);
}

.service-card:hover .service-icon {
transform: rotateY(360deg) scale(1.1);
}

.service-icon svg {
width: 40px;
height: 40px;
stroke: var(--primary);
fill: none;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}

.service-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}

.contact {padding: 5rem 5%;
position: relative;
}

.contact-form {
max-width: 80%;
margin: 0 auto;
padding: 2rem;
border-radius: 20px;
backdrop-filter: blur(10px);
animation: fadeInUp 0.8s ease;
position: relative;
}

.light-mode .contact-form {
background: rgba(255, 255, 255, 0.6);
box-shadow: 0 8px 32px rgba(3, 168, 122, 0.1);
border: 1px solid rgba(3, 168, 122, 0.2);
}

.dark-mode .contact-form {
background: rgba(26, 26, 26, 0.6);
box-shadow: 0 8px 32px rgba(5, 242, 175, 0.05);
border: 1px solid rgba(5, 242, 175, 0.2);
}

.form-group {
margin-bottom: 1.5rem;
position: relative;
z-index: 1;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 1rem;
border-radius: 10px;
color: inherit;
font-size: 1rem;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
}

.light-mode .form-group input,
.light-mode .form-group textarea {
background: rgba(255, 255, 255, 0.5);
border: 1px solid rgba(3, 168, 122, 0.2);
}

.dark-mode .form-group input,
.dark-mode .form-group textarea {
background: rgba(5, 242, 175, 0.05);
border: 1px solid rgba(5, 242, 175, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 20px rgba(5, 242, 175, 0.2);
}

.form-group textarea {
resize: vertical;
min-height: 150px;
}

.footer {
padding: 2rem 5%;
text-align: center;
border-top: 1px solid rgba(5, 242, 175, 0.2);
}

.social-links {
display: flex;
justify-content: center;
gap: 1.5rem;
margin-bottom: 1rem;
}

.social-links a {
color: inherit;
transition: all 0.3s ease;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
backdrop-filter: blur(10px);
text-decoration: none;
}

.light-mode .social-links a {
background: rgba(255, 255, 255, 0.5);
border: 1px solid rgba(3, 168, 122, 0.2);
}

.dark-mode .social-links a {
background: rgba(26, 26, 26, 0.5);
border: 1px solid rgba(5, 242, 175, 0.2);
}

.social-links a:hover {
color: var(--primary);
transform: translateY(-5px) rotate(360deg);
}

.light-mode .social-links a:hover {
box-shadow: 0 10px 25px rgba(3, 168, 122, 0.3);
border-color: rgba(3, 168, 122, 0.5);
}

.dark-mode .social-links a:hover {
box-shadow: 0 10px 25px rgba(5, 242, 175, 0.3);
border-color: rgba(5, 242, 175, 0.5);
}

.social-links svg {
width: 24px;
height: 24px;
stroke: currentColor;
fill: none;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}

@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

@keyframes float {
0%, 100% {
    transform: translateY(0) rotate(0deg);
}
50% {
    transform: translateY(-30px) rotate(180deg);
}
}

.success-message {
display: none;
padding: 1rem;
border-radius: 10px;
background: var(--primary);
color: #0a0a0a;
text-align: center;
margin-bottom: 1rem;
font-weight: 600;
position: relative;
z-index: 2;
}

@media (max-width: 768px) {
.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.2rem;
}

.nav-links {
    display: none;
}

.section-title {
    font-size: 2rem;
}

.glass-orb {
    display: none;
}
}


/* Logo con menú desplegable */
.logo-menu {
    position: relative;
    cursor: pointer;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.logo-menu:hover .logo {
    color: var(--primary);
}

.logo-bracket {
    color: var(--primary);
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.logo-menu:hover .logo-bracket {
    transform: scale(1.1) rotate(5deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 200px;
    list-style: none;
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.light-mode .nav-dropdown {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(3, 168, 122, 0.2);
    border: 1px solid rgba(3, 168, 122, 0.2);
}

.dark-mode .nav-dropdown {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 8px 32px rgba(5, 242, 175, 0.2);
    border: 1px solid rgba(5, 242, 175, 0.2);
}

.logo-menu:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    margin: 0;
    position: relative;
}

.nav-dropdown a,
.submenu-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.light-mode .nav-dropdown a:hover,
.light-mode .submenu-trigger:hover {
    background: rgba(3, 168, 122, 0.1);
    color: var(--primary);
}

.dark-mode .nav-dropdown a:hover,
.dark-mode .submenu-trigger:hover {
    background: rgba(5, 242, 175, 0.1);
    color: var(--primary);
}

/* Submenú de Servicios */
.has-submenu {
    position: relative;
}

.submenu-arrow {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.has-submenu:hover .submenu-arrow {
    transform: rotate(90deg);
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    list-style: none;
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 0.5rem;
    margin-left: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.light-mode .submenu {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(3, 168, 122, 0.2);
    border: 1px solid rgba(3, 168, 122, 0.2);
}

.dark-mode .submenu {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 8px 32px rgba(5, 242, 175, 0.2);
    border: 1px solid rgba(5, 242, 175, 0.2);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu li {
    margin: 0;
}

.submenu a {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
}

/* Eliminar estilos del botón de navegación (ya no se usa) */
.nav-menu,
.nav-menu-btn {
    display: none;
}

/* Ocultar nav-links antiguo */
.nav-links {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-dropdown {
        left: 0;
    }
    
    .submenu {
        position: relative;
        left: 0;
        margin-left: 0;
        margin-top: 0.5rem;
        transform: none;
    }
    
    .has-submenu:hover .submenu {
        transform: none;
    }
}