        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		
		@font-face {
				font-family: 'Gotham-Bold';
				src: url('webfonts/Gotham-Bold.eot');
				src: url('webfonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
						 url('webfonts/Gotham-Bold.woff') format('woff'),
						 url('webfonts/Gotham-Bold.ttf') format('truetype'),
						 url('webfonts/Gotham-Bold.svg#gothambold') format('svg');
				font-weight: normal;
				font-style: normal;
		}
@font-face {
				font-family: 'Roboto-Regular';
				src: url('webfonts/Roboto-Regular.eot');
				src: url('webfonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
						 url('webfonts/Roboto-Regular.woff') format('woff'),
						 url('webfonts/Roboto-Regular.ttf') format('truetype'),
						 url('webfonts/Roboto-Regular.svg#gothambold') format('svg');
				font-weight: normal;
				font-style: normal;
		}
        body {
            font-family: 'Roboto-Regular','Arial', 'Helvetica', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #e0eefb;
            overflow-x: hidden;
        }

        /* Header */
        header {
            background-color: #d9eaf9;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #0d579b;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo-icon {
            margin-right: 10px;
            font-size: 28px;
        }


        nav ul {
            display: flex;
            list-style: none;
        }

        nav li {
            margin-left: 35px;
        }

        nav a {
            text-decoration: none;
            color: #0063be;
            font-weight: 600;
            font-size: 16px;
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }

        nav a:hover {
            color: #0d579b;
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: #c7573b;
            left: 0;
            bottom: 0;
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 90vh;
            background: linear-gradient(rgb(0 40 85 / 0%), rgb(0 40 85 / 55%)),
                        url(../images/portada.jpg);
            background-size: cover;
            background-position: 0 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding-top: 100px;
            margin-bottom: 50px;
        }

        .hero-content {
            max-width: 900px;
            padding: 40px;
            /* background: rgba(0, 0, 0, 0.6); */
            border-radius: 15px;
            /* backdrop-filter: blur(5px); */
        }

        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
            font-weight: 500;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s both;
            line-height: 1.8;
        }

        .hero-highlight {
            color: #4da6ff;
            font-weight: bold;
        }

        /* Secciones */
        .section-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 30px;
        }

        .section-title {
            font-size: 2.8rem;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
            color: #0d579b;
            font-weight: 700;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 4px;
            background: #c7573b;
            left: 50%;
            transform: translateX(-50%);
            bottom: -15px;
            border-radius: 2px;
        }

        /* Empresa Info */
        .empresa-info {
            background: white;
            border-radius: 15px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 60px;
        }

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

        .info-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            border-left: 5px solid #c7573b;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 86, 179, 0.15);
        }

        .info-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #0d579b;
            display: flex;
            align-items: center;
        }

        .info-card h3 i {
            margin-right: 10px;
        }

        /* Servicios */
        .servicios {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 20px;
            margin: 60px auto;
            width: 100% !important;
        }

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

        .servicio-card {
            background: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            border-top: 4px solid #c7573b;
        }

        .servicio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 86, 179, 0.2);
        }

        .servicio-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #0d579b;
            display: flex;
            align-items: center;
        }

        .servicio-icon {
            background: #e6f2ff;
            width: 50px !important;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #0d579b;
            font-size: 24px;
        }

        .estadisticas {
            background: linear-gradient(135deg, #0d579b 0%, #003d82 100%);
            color: white;
            border-radius: 20px;
            padding: 70px 40px;
            margin: 80px 0;
            text-align: center;
        }

        .estadisticas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .estadistica-item {
            padding: 20px;
        }

        .estadistica-numero {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: #4da6ff;
        }

        .estadistica-texto {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Clientes y Proyectos */
        .clientes-section {
            background: white;
            border-radius: 15px;
            padding: 60px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 60px;
        }

        .clientes-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 40px;
            align-items: center;
        }

        .cliente-logo {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            transition: transform 0.3s;
        }

        .cliente-logo:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .cliente-logo i {
            font-size: 40px;
            color: #0d579b;
        }

        /* Mapa de Proyectos */
        .proyectos-map {
            background: #daeaf9;
            border-radius: 15px;
            padding: 70px 70px 145px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 60px;
            height: 640px;
        }

        .map-container {
            width: 100%;
            /* height: 600px; */
            /* background: #e9ecef; */
            border-radius: 10px;
            margin-top: 30px;
            position: relative;
            overflow: hidden;
        }

        .map-point {
            position: absolute;
            width: 20px;
            height: 20px;
            background: #0d579b;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 0 10px rgba(0, 86, 179, 0.5);
            cursor: pointer;
            transition: transform 0.3s;
        }

        .map-point:hover {
            transform: scale(1.5);
            background: #ff6b6b;
        }

        .map-tooltip {
            position: absolute;
            background: white;
            padding: 10px 15px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: none;
            z-index: 100;
            min-width: 150px;
        }

        /* Certificaciones */
        .certificaciones {
            background: linear-gradient(135deg, #e6f2ff 0%, #cce5ff 100%);
            border-radius: 15px;
            padding: 60px;
            text-align: center;
            margin-bottom: 60px;
        }

        .iso-badge {
            font-size: 4rem;
            color: #0d579b;
            margin: 20px 0;
        }

        /* Contacto */
        .contacto-section {
            background: white;
            border-radius: 15px;
            padding: 60px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 60px;
        }

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

        .contacto-info {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
        }

        .contacto-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contacto-icon {
            background: #0d579b;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 20px;
        }

        /* Formulario */
        .contact-form {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #0d579b;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: #c7573b;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
        }

        /* Footer */
        footer {
            background: #00264d;
            color: white;
            padding: 70px 30px 30px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: #4da6ff;
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: #b3d9ff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b3d9ff;
        }

        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
            background: none;
            border: none;
            color: #0d579b;
        }

        @media (max-width: 992px) {
			
			.header-container span {font-size: 15px !important;line-height: 20px !important;}
            .menu-toggle {
                display: block;
            }

            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: transform 0.3s, opacity 0.3s;
                pointer-events: none;
                z-index: 999;
            }

            nav.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            nav ul {
                flex-direction: column;
                padding: 30px;
            }

            nav li {
                margin: 15px 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-container {
                padding: 50px 20px;
            }

            .empresa-info,
            .clientes-section,
            .contacto-section {
                padding: 30px;
            }

            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                height: 70vh;
                padding-top: 80px;
            }

            .hero-content {
                padding: 25px;
            }

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

            .hero p {
                font-size: 1.1rem;
            }

            .estadisticas-grid {
                /* grid-template-columns: repeat(2, 1fr); */
                gap: 0px;
            }

            .estadistica-numero {
                font-size: 2.2rem;
            }
        }

   
        .active-section {
            background-color: rgba(0, 123, 255, 0.05);
            transition: background-color 0.5s ease;
            border-radius: 10px;
        }

        /* Iconos */
        .icon {
            font-style: normal;
            display: inline-block;
        }

        /* Lista de servicios */
        .servicios-lista {
            list-style: none;
            margin: 20px 0;
        }

        .servicios-lista li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 35px;
        }

        .servicios-lista li:before {
            content: "*";
            position: absolute;
            left: 0;
            color: #0d579b;
            font-weight: bold;
            font-size: 18px;
        }

      
        .whatsapp-float {
            
			position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            color: white;
        }


img#logo1 {
    margin-right: 30px;
    width: 70px;
    height: 53px;
}

.header-container span {
    font-weight: 500;
    line-height: 28px;
    font-family: 'Gotham-Bold';
    letter-spacing: 0px;
    font-size: 24px;
}

.servicios-lista li::before {
    opacity: 1;
}

.map-container img {
    width: 100%;
}

html {
    width: 100%;
    overflow-x: hidden;
}

.certificados img {
    width: 100%;
}

.certificados {
    width: 50%;
    float: left;
    padding: 2%;
}

 /* Estilos para el carrusel */
        .carousel-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
            margin: 60px 0;
        }
        
        .carousel-title {
            color: #0d579b;
            font-weight: 700;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .carousel-title i {
            margin-right: 15px;
            color: #0d579b;
        }
        
    
        .proyectos-carousel {
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .carousel-item {
            height: 500px;
        }
        
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-caption {
            background: rgba(13, 87, 155, 0.85);
            padding: 25px;
            border-radius: 10px;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            max-width: 800px;
        }
        
        .carousel-caption h3 {
            color: white;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .carousel-caption p {
            color: #e6f2ff;
            font-size: 1.1rem;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background: rgba(13, 87, 155, 0.8);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            transition: all 0.3s;
        }
        
        .carousel-control-prev {
            left: 20px;
        }
        
        .carousel-control-next {
            right: 20px;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: #0d579b;
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-indicators {
            bottom: 10px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            border: none;
        }
        
        .carousel-indicators button.active {
            background-color: white;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .carousel-section {
                padding: 40px 0;
            }
            
            .carousel-item {
                height: 350px;
            }
            
            .carousel-caption {
                padding: 15px;
                bottom: 20px;
                width: 90%;
            }
            
            .carousel-caption h3 {
                font-size: 1.2rem;
            }
            
            .carousel-caption p {
                font-size: 0.9rem;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 40px;
                height: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-item {
                height: 300px;
            }
            
            .carousel-caption {
                padding: 10px;
            }
            
            .carousel-caption h3 {
                font-size: 1rem;
            }
            
            .carousel-caption p {
                font-size: 0.8rem;
                display: none; 
            }
        }
        
        /* Miniaturas de proyectos (opcional) */
        .proyectos-miniaturas {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }
        
        .miniatura {
            width: 80px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            border: 3px solid transparent;
        }
        
        .miniatura:hover {
            transform: translateY(-5px);
            border-color: #0d579b;
            box-shadow: 0 5px 15px rgba(13, 87, 155, 0.3);
        }
        
        .miniatura.active {
            border-color: #0d579b;
        }
        
        .miniatura img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
		
		    .categorias-galeria {
        margin-top: 50px;
    }
    
    .categorias-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }
    
    .categoria-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: all 0.3s;
        cursor: pointer;
    }
    
    .categoria-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(13, 87, 155, 0.15);
    }
    
    .categoria-icon {
        background: #e6f2ff;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        color: #0d579b;
        font-size: 30px;
    }
    
    .categoria-card h4 {
        color: #0d579b;
        margin-bottom: 5px;
        font-weight: 600;
    }
    
    .categoria-count {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .categoria-miniaturas {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    
    .categoria-miniaturas img {
        width: 60px;
        height: 45px;
        border-radius: 5px;
        object-fit: cover;
        border: 2px solid #e6f2ff;
    }
    
  
    #galeriaCompleta img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin-bottom: 15px;
        border-radius: 8px;
        transition: transform 0.3s;
        cursor: pointer;
    }
    
    #galeriaCompleta img:hover {
        transform: scale(1.05);
    }
    
	
	    .imagen-container {
        height: 200px; /* Altura fija para todos los contenedores */
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        padding: 10px;
        overflow: hidden;
        margin-bottom: 15px;
    }

    .imagen-container img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain; /* Asegura que la imagen no se deforme */
    }


    @media (max-width: 768px) {
.estadistica-texto { font-size: 13px}
            
            .categorias-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .categoria-card {
            padding: 20px;
        }
    }
    
    @media (max-width: 576px) {
        .categorias-grid {
            grid-template-columns: 1fr;
        }
    }
	
	#btnAnterior, #btnSiguiente {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

#btnAnterior:hover, #btnSiguiente:hover {
    background: rgba(0,0,0,0.8);
}

	
	

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: 'Gotham-Bold';
}

 .video-section {
        padding: 40px 0;
    }
    #videoPlayer {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.video-section h2 {
    color: #0d579b;
}

#mainNav i.fas {
    color: #077aec;
}

.servicio-card div {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.servicio-card div div.col-6 {
    width: 21%;
    margin: 2%;
}

.servicio-card div.servicio-icon {
}

h5#modalTitulo {
    text-transform: uppercase;
    font-family: 'Roboto-Regular';
}

img#logoGrande {
    width: 100%;
    max-width: 500px;
}

 .carousel-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgb(0 0 0 / 48%);
            z-index: 1050;
            justify-content: center;
            align-items: center;
        }
        .carousel-inner img {
            max-height: 80vh;
            max-width: 80vw;
            margin: auto;
        }