:root {
    --primary-blue:  rgba(9,97,46,255);
    --yellow: #ffc107;
    --hover-green: rgba(9,97,46,255);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    background-color: #d4d3c7;

}
 ul {
    list-style: none;
    margin: 20px;
    padding: 0;
}

h4{
    list-style: none;
 
    padding: 18px;
}
.image-logo {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}
.texto-logo {
    /*width: 20%;*/
    height: 35px;
    object-fit: cover;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.logo p {
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.5px;
}
.logo-text {
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    backdrop-filter: blur(100px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    color: white;
    transition: all 0.3s ease;
    background:rgba(31, 31, 31, 0.863);
    animation: fadeInDown 0.8s ease-out;
}

.navbar-scrolled {
    background-color: var(--hover-green);
    backdrop-filter: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.3s ease-out;
}

.navbar-scrolled .nav-links a {
    color: white;
}

.navbar-scrolled .nav-links a:hover {
    background-color: #008540;
}

.navbar-scrolled .phone-btn {
   
    color: var(--hover-green);
}

.navbar-scrolled .btn-l {
 
    color: var(--hover-green);
}



.nav-links a {
    text-decoration: none;
    color: white;
    margin: 0 1rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInDown 0.5s ease-out forwards;
    z-index: 1000;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--hover-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--hover-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before {
    width: 80%;
}

.phone-btn {
    background: var(--yellow);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.7s forwards;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
    position: relative;
    overflow: hidden;
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    background: #ffd43b;
    color: #1a1a1a;
}

.phone-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

/* Efecto de brillo al hover */
.phone-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.phone-btn:hover::after {
    opacity: 1;
    transform: rotate(45deg) translateX(50%);
}

.hero {
    position: relative;
    z-index: 2;
    margin-top: 89px;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Overlay oscuro para mejor legibilidad */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    color: rgb(255, 255, 255);
}

/* Flechas de navegación */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Indicadores */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.btn-l {
    background: var(--yellow);
    margin-top: 2px;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.2rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    position: relative;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: pulseButton 2s infinite;
}
.btn-l1 {
    display: none;
}
@media (max-width: 768px) {
    .btn-l {
        display: none;
    }
    .btn-l1 {
        background: var(--yellow);
        margin-top: 2px;
        font-size: 1.6rem;
        font-weight: 600;
        padding: 1.2rem 0.4rem;
        border-radius: 8px;
        text-decoration: none;
        color: #000;
        position: relative;
        overflow: hidden;
        display: inline-block;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        animation: pulseButton 2s infinite;
        margin: 40px;
    }
    .btn-l12 {
        background: var(--yellow);
        margin-top: 2px;
        font-size: 1rem;
        font-weight: 600;
        padding: 0.2rem 0.4rem;
        border-radius: 8px;
        text-decoration: none;
        color: #000 !important;
        position: relative;
        overflow: hidden;
        display: inline-block;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        animation: pulseButton 2s infinite;
        margin: 40px;
      
    }
}

/* Animación principal del botón */
@keyframes pulseButton {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
}

/* Efecto de brillo */
.btn-l::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    animation: shineEffect 3s infinite;
}

@keyframes shineEffect {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Efecto hover */
.btn-l:hover {
    animation: hoverEffect 0.3s forwards;
}

@keyframes hoverEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
}

/* Efecto click */
.btn-l:active {
    animation: clickEffect 0.2s forwards;
}

@keyframes clickEffect {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
}



.hero-content .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    margin-right: 1rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
    animation: fadeInLeft 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.hero-content .btn:hover {
    background: white;
    color: var(--primary-blue);
}

.highlight {
    background: var(--primary-blue);
    padding: 0.2rem 1rem;
    font-size: 3rem;
}

.highlight2 {
    background: var(--primary-blue);
    padding: 0.2rem 1rem;
    font-size: 4rem;
}

.highlight3 {
    background: var(--primary-blue);
    padding: 0.2rem 1rem;
    font-size: 3rem;
    color: white;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    margin-right: 1rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background: white;
    color: var(--primary-blue);
}

.flags {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.hero-2 {
    background: white;
    padding: 4rem 0;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.services-container h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.subtitle {
    color: #666;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 10px;
    /* Centrar el carrusel inicialmente */
    transform: translateX(calc(-33.333% - 20px)); /* Para 3 items en desktop */
}

.carousel-item {
    flex: 0 0 calc(33.333% - 20px); /* Por defecto 3 items en desktop */
    min-width: 280px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Responsive para tablet */
@media (max-width: 992px) {
    .carousel-item {
        flex: 0 0 calc(50% - 20px); /* 2 items en tablet */
    }
    .carousel-track {
        transform: translateX(calc(-50% - 20px)); /* Para 2 items en tablet */
    }
}

/* Responsive para mobile */
@media (max-width: 768px) {
    .carousel-track {
        transform: translateX(0); /* En mobile no necesita desplazamiento */
    }
    
    .carousel-item {
        flex: 0 0 100%;
        width: 100%;
        margin: 0;
    }

    /* Ocultar botones de navegación en mobile */
    .carousel-button {
        display: none;
    }
}

/* Estilos para los elementos dentro del carousel-item */
.carousel-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.carousel-item h3 {
    color: #333;
    margin: 15px 0;
    font-size: 1.4rem;
}

.carousel-item p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.saber-mas {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.saber-mas:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Botones de navegación */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 2;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columnas para las 5 secciones */
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #4CAF50;
}
.imagen-r1 {
    margin-top: 40px;
    width: 25%;
    height: 5%;
    transition: all 0.3s ease;
    border-radius: 8px;          /* Bordes redondeados */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);  /* Sombra sutil */
    cursor: pointer;
    filter: grayscale(20%);      /* Ligero efecto gris */
    opacity: 0.9;                /* Ligeramente transparente */
}

.imagen-r1:hover {
    transform: translateY(-5px) scale(1.02);  /* Se eleva y crece ligeramente */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15); /* Sombra más pronunciada */
    filter: grayscale(0%);       /* Recupera todo el color */
    opacity: 1;                  /* Totalmente opaco */
}

/* Opcional: Añadir efecto de brillo */
.imagen-r1::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}

.imagen-r1:hover::after {
    left: 100%;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

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

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

/* Responsive */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    background: #333;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(360deg);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
}

.contact-info li i {
    color: var(--hover-green);
}

.footer-bottom {
    background-color: #111;
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    margin-bottom: 0.5rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--hover-green);
}

/* Efecto hover en los items */
.carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Añade estas animaciones al inicio de tu archivo CSS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animación para el navbar al hacer scroll */
.navbar-scrolled {
    animation: fadeInDown 0.3s ease-out;
}

/* Animación para los enlaces del navbar */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--hover-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Animación para los iconos sociales */
.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(360deg);
}

/* Animación para el navbar */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animaciones para los elementos del navbar */
.navbar {
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    animation: fadeInLeft 1s ease-out;
}

/* Retraso escalonado para cada enlace */
.nav-links a:nth-child(1) { animation-delay: 0.2s; }
.nav-links a:nth-child(2) { animation-delay: 0.3s; }
.nav-links a:nth-child(3) { animation-delay: 0.4s; }
.nav-links a:nth-child(4) { animation-delay: 0.5s; }
.nav-links a:nth-child(5) { animation-delay: 0.6s; }

.phone-btn {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.7s forwards;
}

/* Mejorar la interactividad del navbar */
.nav-links a {
    position: relative;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    color: white;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 0.3rem;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--hover-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before {
    width: 80%;
}

/* Animación al hacer scroll */
.navbar-scrolled {
    animation: fadeInDown 0.3s ease-out;
}

.navbar-scrolled .nav-links a::before {
    background-color: white;
}

/* Clases para activar las animaciones */
.hero-2.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.services-container h1.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.subtitle.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.carousel-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animación adicional para el hover de los items */
.carousel-item.animate-in:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Asegurar que las animaciones solo ocurran una vez */
.hero-2 {
    will-change: transform, opacity;
}

/* Mejorar la animación del título */
.services-container h1 {
    position: relative;
    overflow: hidden;
}

.services-container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
    transform: translateX(-100%);
    transition: transform 0.8s ease-out 0.6s;
}

.services-container h1.animate-in::after {
    transform: translateX(0);
}

/* Animación para el highlight en el título */
.services-container h1 .highlight {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.8s ease-out;
}

.services-container h1.animate-in .highlight {
    transform: translateY(0);
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-trigger i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: white;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(27, 27, 27, 0.767);
    backdrop-filter: blur(100px);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    padding: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    backdrop-filter: blur(10px);
}

.dropdown-item {
    display: block;
    color: white;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-align: center;
    font-weight: 400;
}

.dropdown-item:hover {
    background: var(--hover-green);
    color: white;
    transform: translateX(5px);
}

/* Animación al hover */
.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

/* Flecha indicadora */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 2px;
}

/* Ajuste para navbar scrolled */
.navbar-scrolled .dropdown-content {
    background: rgba(0, 0, 0, 0.9);
}

.navbar-scrolled .dropdown-content::before {
    background: rgba(0, 0, 0, 0.9);
}

.navbar-scrolled .dropdown-item {
    color: white;
}

.navbar-scrolled .dropdown-item:hover {
    background: var(--hover-green);
    color: white;
}

/* Actualiza las animaciones del whatsapp-sticky */
@keyframes slideInChat {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.whatsapp-sticky {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 998;
    opacity: 0;
    animation: slideInChat 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
}

.whatsapp-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 300px;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-header {
    background: var(--primary-blue);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.agent-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
}

.header-text h3 {
    font-size: 1.1rem;
    margin: 0;
}

.header-text p {
    font-size: 0.9rem;
    margin: 0.2rem 0 0;
    opacity: 0.9;
}

.whatsapp-numbers {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.whatsapp-link:hover {
    background: #e8f5e9;
    color: var(--primary-blue);
    transform: translateX(5px);
}

.whatsapp-link i {
    font-size: 1.5rem;
    color: #25D366;
}

.whatsapp-email {
    opacity: 0;
    animation: fadeIn 0.5s ease-out 1.4s forwards;
}

.whatsapp-email a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.whatsapp-email a:hover {
    color: var(--primary-blue);
}

/* Animación de entrada */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mejora del efecto hover */
.whatsapp-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-link {
    transform: translateX(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-link:hover {
    transform: translateX(5px);
    background: #e8f5e9;
    color: var(--primary-blue);
}

/* Responsive con animaciones mantenidas */
@media (max-width: 768px) {
    .whatsapp-sticky {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-content {
        width: 280px;
    }
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.servicio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.servicio-card:hover .card-image img {
    transform: scale(1.1);
}

.servicio-card h3 {
    color: #333;
    padding: 20px 20px 10px;
    margin: 0;
    font-size: 1.4rem;
}

.servicio-card p {
    padding: 0 20px;
    color: #666;
    line-height: 1.6;
}

.categoria h4 {
    color: var(--hover-green);
    margin: 0 0 0.8rem;
    font-size: 1.1rem;
}

.requisitos-list {
    list-style: none;
    padding: 0;
}

.requisitos-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.requisitos-list li:before {
    content: '✓';
    color: var(--hover-green);
    position: absolute;
    left: 0;
}

.ver-mas {
    color: var(--primary-blue);
    font-style: italic;
}

.card-actions {
    padding: 1rem;
    display: flex;
    gap: 1rem;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.btn-detalles, 
.btn-whatsapp {
    flex: 1;
    padding: 4px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    max-height: 40px;
}

.btn-detalles {
    background: var(--primary-blue);
    color: white;
    margin-top: 20px;
}

.btn-detalles:hover {
    background:#25D366;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

/* Efecto de pulso para el ícono */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.btn-whatsapp i {
    animation: whatsappPulse 2s infinite;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;  /* Altura máxima del 85% de la ventana */
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 12px 12px 0 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

.modal-content {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(85vh - 140px); /* Resta el alto del header y footer */
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    background: white;
    border-radius: 0 0 12px 12px;
    position: sticky;
    bottom: 0;
    z-index: 1;
}

/* Estilo del scroll */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;  /* Tamaño de la X */
    color: #666;
    cursor: pointer;
    padding: 5px 10px;
    margin-left: auto;
    transition: color 0.3s ease;
}

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

.modal-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 400px;
}

.modal-image {
    background: #f5f5f5;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 30px;
}

.modal-info h4 {
    color: #333;
    margin: 20px 0 15px;
}

.requisitos-list {
    list-style: none;
    padding: 0;
}

.requisitos-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.requisitos-list li:before {
    content: '✓';
    color: var(--hover-green);
    position: absolute;
    left: 0;
}

.modal-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #076329;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
}
.modal-whatsapp-btn:hover {
    background: var(--hover-green);
    transform: translateY(-2px);
}
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0d7032;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
}
.whatsapp-btn:hover {
    background: var(--hover-green);
    transform: translateY(-2px);
}



/* Responsive */
@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        height: 200px;
    }
    
    .modal {
        width: 95%;
    }
}

/* Hero Section */
.servicios-hero {
    margin-top: 76px;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--primary-blue);
    background-size: cover;
    background-position: center;
    color: white;
    margin-bottom: 2rem;
}

.servicios-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight {
    color: var(--hover-yellow);
}

.servicios-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .servicios-hero {
        padding: 3rem 1rem;
    }

    .servicios-hero h1 {
        font-size: 2rem;
    }

    .servicios-intro {
        font-size: 1.1rem;
    }
}

/* Estilos específicos para cards protocolares */
.servicios-protocolares .servicio-card .servicio-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin: 1.2rem;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

/* Estilos específicos para cards extraprotocolares */
.servicios-extraprotocolares .card-actions {
    padding: 1rem;
    display: flex;
    gap: 1rem;
    background: #f8f9fa;
}

.servicios-extraprotocolares .btn-detalles, 
.servicios-extraprotocolares .btn-whatsapp {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Botones de acción */
.servicio-btn {
    display: inline-block;
    margin: 20px;
    padding: 12px 25px;
    background: var(--hover-green);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}

.servicio-btn:hover {
    background: #075e21;
    transform: translateX(5px);
}

/* Estilos para el modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;  /* Altura máxima del 85% de la ventana */
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 12px 12px 0 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

.modal-content {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(85vh - 140px); /* Resta el alto del header y footer */
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    background: white;
    border-radius: 0 0 12px 12px;
    position: sticky;
    bottom: 0;
    z-index: 1;
}

/* Estilo del scroll */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;  /* Tamaño de la X */
    color: #666;
    cursor: pointer;
    padding: 5px 10px;
    margin-left: auto;
    transition: color 0.3s ease;
}

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

.modal-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 400px;
}

.modal-image {
    background: #f5f5f5;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 30px;
}

.modal-info h4 {
    color: #333;
    margin: 20px 0 15px;
}

.requisitos-list {
    list-style: none;
    padding: 0;
}

.requisitos-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.requisitos-list li:before {
    content: '✓';
    color: var(--hover-green);
    position: absolute;
    left: 0;
}

.modal-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.modal-whatsapp-btn:hover {
    background: var(--hover-green);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        height: 200px;
    }
    
    .modal {
        width: 95%;
    }
}

/* Menú hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1003;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 10px;
        z-index: 1002;
    }

    .menu-toggle span {
        width: 28px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: 0.3s;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: rgb(39, 35, 35);
        flex-direction: column;
        padding: 90px 0 2rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 1001;
        backdrop-filter: blur(10px);
    }

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

    /* Alineación consistente de todos los elementos del menú */
    .nav-links > a,
    .nav-dropdown,
    .dropdown-trigger {
        display: block;
        width: 100%;
        padding: 16px 25px !important; /* Padding consistente */
        color: white;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        margin: 0; /* Eliminar márgenes */
    }

    /* Quitar padding extra del dropdown */
    .nav-dropdown {
        padding: 0 !important;
    }

    /* Alinear items del dropdown */
    .dropdown-content {
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
    }

    .dropdown-item {
        padding: 16px 35px !important; /* Un poco más de padding para indicar jerarquía */
        color: rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    /* Efectos hover */
    .nav-links > a:active,
    .dropdown-trigger:active,
    .dropdown-item:active {
        background: rgba(255, 255, 255, 0.05);
    }

    /* Botón amarillo */
    .btn-tramite {
        margin: 25px 2rem;
        padding: 14px 20px;
        background: #ffc107;
        color: #000 !important;
        text-align: center;
        border-radius: 8px;
        font-weight: 500;
        letter-spacing: 0.5px;
        border: none !important;
    }

    .desktop-only {
        display: none;
    }
}

/* Animación del menú hamburguesa */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Estilos base para los botones de contacto */
.contact-button.mobile-only {
    display: none; /* Oculto por defecto */
}

.contact-button.desktop-only {
    display: block; /* Visible por defecto */
}

/* Botón amarillo en desktop */
.contact-button .phone-btn {
    background: #ffd700;
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.hero-content-p {
    color: white;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Ajustes para móvil */
@media (max-width: 992px) {
    .contact-button.mobile-only {
        display: block; /* Mostrar en móvil */
        margin-top: 20px;
        padding: 0 2rem;
    }

    .contact-button.desktop-only {
        display: none; /* Ocultar en móvil */
    }

    /* Estilos específicos para el botón en móvil */
    .mobile-only .phone-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}

.contact-slide .email-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    border-top: 1px solid #eee;
}

.contact-slide .email-link i {
    color: #4285f4; /* Color azul de Gmail */
    font-size: 20px;
}

.contact-slide .email-link:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);
    color: #4285f4;
}

@media (max-width: 1000px) {
    .carousel-container {
        overflow: visible;
        width: 100%;
        max-width: 900px; /* Ancho máximo para tablet */
        margin: 0 auto;   /* Mantener centrado */
    }
    
    .carousel-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        transform: none;
        padding: 0;
    }
    
    .carousel-button {
        display: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .carousel-container {
        max-width: 500px; /* Ancho máximo para mobile */
    }
    
    .carousel-track {
        grid-template-columns: 1fr;
    }
}

/* Mejoras para Mobile */
@media (max-width: 768px) {
    .hero {
        height: 80vh; /* Altura más compacta en mobile */
        margin-top: 70px;
    }

    .hero-slider .slide {
        background-position: center 20%; /* Mejor posición de la imagen de fondo */
    }

    .slide::after {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 100%
        ); /* Gradiente más pronunciado para mejor legibilidad */
    }

    .hero-content {
        padding: 1.5rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content-p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    /* Ocultar controles del slider en mobile */
    .slider-arrow,
    .slider-indicators {
        display: none;
    }

    /* Mejorar botón CTA en mobile */
    .cta-buttons {
        display: flex;
        justify-content: center;
    }

    .btn-l {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 1rem 1.5rem;
    }
}

/* Ajustes específicos para móviles muy pequeños */
@media (max-width: 360px) {
    .hero {
        height: 90vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content-p {
        font-size: 0.9rem;
    }
}

.redirect-section {
    background-color: #d4d3c7;
    padding: 50px 0;
    margin: 60px 0 0 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.redirect-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.redirect-banner img {
    width: 100%;
    max-width: 500px;
    height: auto;
    transition: transform 0.3s ease;
}

.redirect-banner img:hover {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .redirect-section {
        padding: 30px 0;
        margin: 40px 0 0 0;
    }
    
    .redirect-banner img {
        max-width: 350px;
    }
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 993px) {
    .nav-dropdown {
        position: relative;
        display: inline-block;
    }
    /* ... resto de tus estilos desktop ... */
}

/* Estilos mobile */



/* Estilos mobile */


@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1002;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        transition: 0.3s;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #272323;
        display: flex;
        flex-direction: column;
        padding-top: 80px;
        transition: 0.3s;
        z-index: 1001;
    }

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

    /* Estilos específicos para el dropdown en mobile */
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-trigger {
        width: 100%;
        padding: 15px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .dropdown-content {
        display: none;
        position: static;
        transform: none;
        background: rgba(0,0,0,0.2);
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0;
        left: 0;
    }

    .dropdown-content.show {
        display: block;
    }

    .dropdown-item {
        padding: 15px 25px !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: block;
        width: 100%;
        transform: none !important;
    }

    /* Quitar todos los efectos hover y transformaciones */
    .nav-dropdown:hover .dropdown-content {
        transform: none;
    }

    .dropdown-item:hover {
        transform: none !important;
    }
}

