
        :root {
            --primary-color: #1e8b4d;
            --secondary-color: #4CAF50;
            --accent-color: #8BC34A;
            --light-color: #e8f5e9;
            --dark-color: #1b5e20;
            --gray-color: #f5f5f5;
            --text-color: #333;
            --white-color: #fff;
            --gradient-primary: linear-gradient(135deg, #1e8b4d 0%, #4CAF50 50%, #8BC34A 100%);
            --gradient-overlay: linear-gradient(135deg, rgba(30, 139, 77, 0.9) 0%, rgba(76, 175, 80, 0.8) 100%);
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
            --border-radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
header {
    background: var(--gradient-primary);
    color: var(--white-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 15px;
}

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

.logo img {
    max-height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: rotate(5deg) scale(1.05);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.85rem;
    display: block;
    font-weight: 300;
    opacity: 0.9;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    z-index: 1001;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 0;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    padding: 15px 25px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    margin: 0 2px;
    text-decoration: none;
    color: inherit;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-link.has-dropdown::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: var(--transition);
}

.nav-item:hover .nav-link.has-dropdown::after {
    transform: rotate(180deg);
}

/* Dropdown Styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white-color);
    min-width: 220px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.dropdown-item:first-child {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.dropdown-item:last-child {
    border-bottom: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.dropdown-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-item i {
    font-size: 1rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.dropdown-item:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

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

.contact-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.contact-btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
    transform: translateY(-2px);
}

/* Active states para indicar página actual */
.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--white-color);
    border-radius: 3px;
}

/* Efecto de carga del header */
.header-loading {
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Animaciones adicionales */
.dropdown-item {
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        /* Hero Video Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

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

        .video-slide.active {
            opacity: 1;
        }

        .video-slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
    background: url('../fondo.jpg') center center/cover no-repeat;

            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: var(--white-color);
            max-width: 800px;
            padding: 0 20px;
text-shadow: 3px 3px 12px rgba(0, 0, 0, 1);
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 1);
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            font-weight: bold;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 1);
            margin-bottom: 30px;
            opacity: 0.95;
            line-height: 1.5;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--white-color);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
        }

        .stat-text {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 500;
                text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);

        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .btn {
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .btn:before {
            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;
        }

        .btn:hover:before {
            left: 100%;
        }

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

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .btn-outline {
            background: transparent;
            color: var(--white-color);
            border-color: var(--white-color);
        }

        .btn-outline:hover {
            background: var(--white-color);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .video-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 4;
        }

        .video-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .video-dot.active {
            background: var(--white-color);
            transform: scale(1.2);
        }

        .video-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: var(--white-color);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            z-index: 4;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .video-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .video-prev {
            left: 30px;
        }

        .video-next {
            right: 30px;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: var(--gray-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .service-card {
            background: var(--white-color);
            padding: 40px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white-color);
            margin: 0 auto 25px;
            position: relative;
        }

        .service-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-link:hover {
    text-decoration: none;
    color: inherit;
}

        .service-icon:after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid var(--accent-color);
            border-radius: 50%;
            opacity: 0;
            transition: var(--transition);
        }

        .service-card:hover .service-icon:after {
            opacity: 1;
            transform: scale(1.1);
        }

        .service-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .service-description {
            color: #666;
            line-height: 1.6;
        }

        /* About Section */
        .about {
            padding: 100px 0;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-content h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 25px;
            position: relative;
        }

        .about-content h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .about-text {
            color: #666;
            margin-bottom: 20px;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: var(--light-color);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

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

        .feature-item i {
            font-size: 1.5rem;
            color: var(--accent-color);
            transition: var(--transition);
        }

        .feature-item:hover i {
            color: var(--white-color);
        }

        .about-image {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

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

        .about-image:hover img {
            transform: scale(1.05);
        }

 /* Blog Section Styles */
        .blog {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #ff6b6b, #ffa726);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 1;
            transform: translateY(0);
        }

        .blog-card.hidden {
            display: none;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .blog-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

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

        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }

        .blog-date {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 1.2rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #e9ecef;
        }

        .blog-author {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #6c757d;
            font-size: 0.9rem;
        }

        .blog-author i {
            color: #ff6b6b;
        }

        .read-more {
            color: #ff6b6b;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .read-more:hover {
            background: #ff6b6b;
            color: white;
            border-color: #ff6b6b;
        }

        .blog-actions {
            text-align: center;
            margin-top: 2rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(45deg, #ff6b6b, #ffa726);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
        }


        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: var(--gradient-primary);
            color: var(--white-color);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .contact-info h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 25px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(5px);
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--white-color);
        }

        .contact-text {
            flex: 1;
        }

        .contact-text strong {
            display: block;
            margin-bottom: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white-color);
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--white-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        .whatsapp-cta {
            text-align: center;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: #25D366;
            color: var(--white-color);
            padding: 20px 40px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: var(--transition);
            margin-bottom: 20px;
        }

        .whatsapp-btn:hover {
            background: #20B358;
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

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

        /* Footer */
        footer {
            background: #333;
            color: #ccc;
            padding: 60px 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: var(--white-color);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        }

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

        .footer-links a {
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #555;
            font-size: 0.9rem;
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }

        .whatsapp-float-btn {
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white-color);
            font-size: 1.8rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .whatsapp-float-btn:hover {
            transform: scale(1.1);
            box-shadow: var(--shadow-hover);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
                .nav-link {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
.header-container {
        padding: 15px 20px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        justify-content: space-between;
        background: none;
        border-radius: 0;
        margin: 0;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: none;
    }

    /* Mobile Dropdown */
    .dropdown {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        min-width: 100%;
        border-radius: 0;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .nav-item.mobile-active .dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        padding: 10px 0;
    }

    .dropdown-item {
        color: var(--white-color);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 40px;
        font-size: 0.9rem;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white-color);
        padding-left: 45px;
    }

    .dropdown-item i {
        color: var(--accent-color);
    }

    .header-actions {
        display: none; /* Se oculta en móvil para simplificar */
    }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-stats {
                gap: 20px;
            }

            .video-nav {
                display: none;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

                        .section-title h2 {
                font-size: 2rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .blog-card {
                margin: 0 1rem;
            }

            .blog-image {
                height: 200px;
            }
        }

        @media (max-width: 576px) {
                .logo-text {
        font-size: 1.5rem;
    }

    .logo-tagline {
        display: none;
    }
            .hero {
                min-height: 500px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .video-controls {
                bottom: 20px;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-float-btn {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }