   /* Estilos generales */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #41aae1; /* Azul marino en lugar de amarillo */
            --secondary-color: #41aae1;
            --accent-color: #e74c3c;
            --light-color: #f9f9f9;
            --dark-color: #333;
            --text-color: #555;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Lato', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .section-subtitle {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-secondary:hover {
            background-color: var(--primary-color);
            color: white;
        }

      /* Variables */
:root {
    --primary-color: #41aae1; /* Cambia a tu color de acento */
    --transition: all 0.3s ease;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* === HEADER === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

/* Enlaces de escritorio */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    color: white !important; /* Blanco en escritorio también */
}

.nav-links a {
    text-decoration: none;
    color: white !important; /* Blanco en escritorio también */
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover {
    color: white !important; /* Blanco en escritorio también */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    color: white !important; /* Blanco en escritorio también */
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburguesa (blanco en móvil) */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white; /* Blanco */
}

/* === MENÚ MÓVIL === */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    padding: 30px;
    transform: translateX(-100%);
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
}

.close-menu {
    font-size: 1.5rem;
    cursor: pointer;
    color: white; /* Blanco */
}



.mobile-menu .nav-links a:hover {
    color: var(--primary-color);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
    .logo img {
    height: 50px;
    width: auto;
    display: block;
}

}



        
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
            margin-top: 80px;
        }

        .hero-slides {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6); /* Overlay más oscuro */
            z-index: 1;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            z-index: 2;
        }

       .hero-content h1 {
    font-size: 4rem; /* Texto más grande */
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
    white-space: nowrap; /* 👈 Esto evita que el texto salte de línea */
}


        .hero-slide.active .hero-content h1 {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-content p {
            font-size: 1.4rem; /* Texto más grande */
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.5s;
        }

        .hero-slide.active .hero-content p {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-buttons {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.7s;
        }

        .hero-slide.active .hero-buttons {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-buttons .btn {
            margin: 0 10px;
        }

        .hero-controls {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            z-index: 10;
        }

        .hero-dots {
            display: flex;
        }

        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: var(--transition);
        }

        .hero-dot.active {
            background-color: white;
            transform: scale(1.2);
        }

        /* Botones flotantes */
        .floating-call-btn, .floating-up-btn {
            position: fixed;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 999;
            transition: var(--transition);
            text-decoration: none;
        }

        .floating-call-btn {
            bottom: 30px;
        }

        .floating-up-btn {
            bottom: 110px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .floating-up-btn.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .floating-call-btn:hover, .floating-up-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }

        /* About Section - MODIFICADA */
        #nosotros {
            padding: 100px 0;
            background-color: var(--light-color);
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            margin: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .about-image.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
            margin: 15px;
            padding: 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .about-text.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .about-text h3 {
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-values {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .about-card {
            flex: 1;
            min-width: 300px;
            margin: 15px;
            padding: 40px 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .about-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .about-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .about-card h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        /* Stats Section - MEJORADA */
        .stats {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2c42 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://media.istockphoto.com/id/1441270858/es/foto/vista-superior-de-la-reuni%C3%B3n-de-ingenieros-arquitectos-contratistas-y-capataz-en-el-sitio-de.jpg?s=612x612&w=0&k=20&c=98dB0wKj052cEDZyo7QbuOyEsH-SX6UFyMgIQgu0V48=');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }

        .stats-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            margin: 20px;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.5s ease;
            min-width: 200px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.3) 0%, rgba(44, 62, 80, 0.1) 100%);
            z-index: -1;
            transition: all 0.5s ease;
            opacity: 0;
        }

        .stat-item:hover::before {
            opacity: 1;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .stat-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-icon {
            font-size: 3rem;
            color: #fff;
            margin-bottom: 20px;
            transition: all 0.5s ease;
        }

        .stat-item:hover .stat-icon {
            transform: scale(1.2) rotate(5deg);
            color: #4a9fe3;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            transition: all 0.5s ease;
            display: block;
            position: relative;
        }

        .stat-number::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background-color: var(--primary-color);
            transition: all 0.5s ease;
        }

        .stat-item:hover .stat-number::after {
            width: 60px;
        }

        .stat-text {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.5s ease;
        }

        .stat-item:hover .stat-text {
            color: white;
        }

        /* Portfolio Section */
        #portafolio {
            padding: 100px 0;
            background-color: var(--light-color);
        }

        .portfolio-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .filter-btn {
            padding: 8px 20px;
            margin: 5px;
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }

        .filter-btn.active, .filter-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .portfolio-item {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .portfolio-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .portfolio-img {
            height: 250px;
            background-size: cover;
            background-position: center;
        }

        .portfolio-content {
            padding: 25px;
        }

        .portfolio-content h3 {
            margin-bottom: 15px;
        }

        .portfolio-tags {
            display: flex;
            flex-wrap: wrap;
            margin: 15px 0;
        }

        .portfolio-tag {
            background-color: var(--light-color);
            color: var(--text-color);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            margin-right: 8px;
            margin-bottom: 8px;
        }

        .portfolio-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .portfolio-link i {
            margin-left: 5px;
            transition: var(--transition);
        }

        .portfolio-link:hover i {
            transform: translateX(5px);
        }

        /* Projects Section */
        #proyectos {
            padding: 100px 0;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .project-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .project-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .project-img {
            height: 250px;
            background-size: cover;
            background-position: center;
        }

        .project-info {
            padding: 25px;
        }

        .project-info h3 {
            margin-bottom: 15px;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .project-link i {
            margin-left: 5px;
            transition: var(--transition);
        }

        .project-link:hover i {
            transform: translateX(5px);
        }

        /* Why Choose Us Section */
        .why-us {
            padding: 100px 0;
            background-color: var(--light-color);
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature {
            text-align: center;
            padding: 40px 25px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .feature.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .feature h3 {
            margin-bottom: 15px;
        }

        /* Contact Section */
        #cotizaciones {
            padding: 100px 0;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .contact-info, .quote-form {
            flex: 1;
            min-width: 300px;
        }

        .contact-info h3 {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            margin-bottom: 25px;
        }

        .contact-item i {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-right: 15px;
            margin-top: 5px;
        }

        .contact-item h4 {
            margin-bottom: 5px;
        }

        .quote-form {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--secondary-color);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Lato', sans-serif;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 70px 0 20px;
            position: relative;
            overflow: hidden;
        }

        /* Fondo con imagen de construcción */
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://www.shutterstock.com/image-photo/construction-technology-banner-background-site-600nw-2375505543.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.4;
            z-index: 0;
        }

        /* Sombra negra clara */
        footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .footer-content, .copyright {
            position: relative;
            z-index: 2;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .footer-column p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .footer-links i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
            color: var(--primary-color);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
            
            .footer-column {
                min-width: 100%;
            }
        }

        .social-links {
            display: flex;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .footer-links i {
            margin-right: 10px;
            color: var(--primary-color);
            width: 20px;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive */
       @media (max-width: 992px) {
    /* Ocultar el menú de escritorio */
    .nav-links {
        display: none;
    }

    /* Mostrar el botón hamburguesa */
    .hamburger {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: #ffffff;
    }

    /* Ajustes responsivos generales */
    .hero-content h1 {
        font-size: 3rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .about-card, .service-card, .portfolio-item, .project-card, .feature {
        min-width: 100%;
    }
    .about-content {
        flex-direction: column;
    }
    .about-image, .about-text {
        margin: 15px 0;
    }

      .mobile-menu .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .mobile-menu .nav-links li {
        margin: 15px 0 !important;
        list-style: none;
        width: 100%;
    }
    .mobile-menu .nav-links a {
        display: block !important;
        width: 100% !important;
        padding: 10px 0 !important;
        text-align: left !important;
        color: #ffffff !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        font-size: 1.2rem !important;
    }
}

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            
            .hero-buttons .btn {
                display: block;
                margin: 10px auto;
                width: 200px;
            }
            
            .services-grid, .portfolio-grid, .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                flex-direction: column;
            }
            
            .stat-item {
                margin: 15px 0;
            }
            
            .about-values {
                flex-direction: column;
            }
        }

        /* Animaciones para scroll */
        .scroll-animation {
            transition: all 0.8s ease;
        }

        .fade-left {
            opacity: 0;
            transform: translateX(-50px);
        }

        .fade-right {
            opacity: 0;
            transform: translateX(50px);
        }

        .fade-up {
            opacity: 0;
            transform: translateY(50px);
        }

        .fade-in {
            opacity: 0;
        }

        .animate {
            opacity: 1;
            transform: translateX(0) translateY(0);
        }

        /* Para dispositivos móviles, solo animamos fade-up */
        @media (max-width: 768px) {
            .fade-left, .fade-right {
                transform: translateY(50px);
            }
        }
         /* Estilos específicos para el módulo Próximamente */
        .coming-soon {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
            overflow: hidden;
        }
        
        .coming-soon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.2" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
            opacity: 0.5;
        }
        
        .coming-soon-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .coming-soon-icon {
            font-size: 80px;
            color: #2c3e50;
            margin-bottom: 30px;
            animation: pulse 2s infinite;
        }
        
        .coming-soon-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .coming-soon-subtitle {
            font-size: 1.2rem;
            color: #5a6c7d;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        
        .countdown-item {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 10px;
            padding: 20px 15px;
            min-width: 100px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }
        
        .countdown-item:hover {
            transform: translateY(-5px);
        }
        
        .countdown-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            display: block;
            line-height: 1;
        }
        
        .countdown-label {
            font-size: 0.9rem;
            color: #7f8c8d;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }
        
        .coming-soon-logo {
            max-width: 200px;
            margin: 0 auto 30px;
            display: block;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        
        .coming-soon-logo:hover {
            opacity: 1;
        }
        
        .notify-btn {
            background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .notify-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(44, 62, 80, 0.4);
        }
        
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 0;
        }
        
        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float 6s infinite ease-in-out;
        }
        
        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 20%;
            right: 10%;
            animation-delay: 1s;
        }
        
        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 15%;
            animation-delay: 2s;
        }
        
        .shape:nth-child(4) {
            width: 100px;
            height: 100px;
            bottom: 10%;
            right: 15%;
            animation-delay: 3s;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .coming-soon-title {
                font-size: 2.5rem;
            }
            
            .countdown {
                gap: 10px;
            }
            
            .countdown-item {
                min-width: 80px;
                padding: 15px 10px;
            }
            
            .countdown-number {
                font-size: 2rem;
            }
        }

        /* Botón flotante de WhatsApp */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

/* Animación de pulso para WhatsApp */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Botón Up */
.floating-up-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-up-btn.show {
    opacity: 1;
    visibility: visible;
}

.floating-up-btn:hover {
    background-color: #555;
}