/*new image*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
body {
      font-family: 'Montserrat', sans-serif;
      background-color: #0e0e0e;
      color: #ffffff;
      scroll-behavior: smooth;
    }

    .navbar {
      background-color: #0e0e0e;
      border-bottom: 1px solid #1a1a1a;
    }

    .navbar-brand, .nav-link {
      color: #fff !important;
    }

    .nav-link:hover {
      color: #0ef !important;
    }

    header {
      padding: 6rem 0 4rem;
      text-align: center;
    }

    .branding-title {
      font-size: 4rem;
      font-weight: 700;
    }

    @media (max-width: 576px) {
      .branding-title {
        font-size: 2.5rem;
      }
    }

    .section-title {
      font-size: 2rem;
      margin-bottom: 2rem;
      font-weight: 600;
    }

    .project-thumb {
      height: 180px;
      background-size: cover;
      background-position: center;
      border-top-left-radius: 0.5rem;
      border-top-right-radius: 0.5rem;
    }

    .cliente-icon {
      width: 60px;
      height: 60px;
      object-fit: cover;
    }

    .badge {
      font-size: 0.7rem;
      padding: 0.3em 0.6em;
      border-radius: 20px;
      display: inline-block;
      text-transform: uppercase;
    }

    .btn-primary {
      background-color: #0ef;
      border: none;
      color: #000;
    }

    .btn-primary:hover {
      background-color: #0cc;
      color: #000;
    }

    footer {
      background-color: #151515;
      padding: 3rem 0;
      text-align: center;
    }

    .social-icons a {
      color: #0ef;
      margin: 0 10px;
      font-size: 1.5rem;
      text-decoration: none;
    }

    .social-icons a:hover {
      color: #fff;
    }

    .modal-content {
      background-color: #1a1a1a;
      color: #fff;
      border: none;
    }

    .modal-header, .modal-footer {
      border: none;
    }

    /* Efecto en los cards de proyectos */
    .project-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0, 238, 255, 0.25);
    }


/*services styles*/
.containerServices {
        max-width: 1100px;
        margin: auto;
        padding: 20px 20px;
}

.titleServices{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
}

.service {
            background: gray;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service:hover {
            transform: translateY(-5px);
            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
        }

.iconService{
    font-size: 4rem;
            color: white;
}

.service h3 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

.service p {
            font-size: 1.3rem;
            color: #fff;
            line-height: 1.6;
        }

.servicios-section {
    padding: 80px 0;
    position: relative;
}

.inicioSeccion{
    margin-top: 30px;
}

.cardServices {
      background-color: #1a1a1a;
      border: none;
      color: #fff;
      transition: all 0.3s ease;
    }

    .cardServices:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    }

#servicios{
    margin-top: 50px;
    margin-bottom: 20px;
}

#inicio{
    margin-top: 130px;
}

/* Ajustes generales para el carrusel */
#carouselProyecto .carousel-inner {
    max-height: 500px; /* Altura máxima para pantallas más grandes */
    overflow: hidden;
}

#carouselProyecto .carousel-item {
    height: 100%;
}

#carouselProyecto .carousel-item img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 0.5rem;
}

/* Media Queries para pantallas pequeñas */
@media (max-width: 576px) {
    #carouselProyecto .carousel-inner {
        max-height: 300px; /* Menor altura en pantallas pequeñas */
    }

    #carouselProyecto .carousel-item img {
        object-fit: cover; /* Ajusta las imágenes al contenedor sin distorsión */
        height: 250px; /* Menor altura en pantallas pequeñas */
        width: 100%;
    }
}

/* Media Queries para pantallas medianas (entre 576px y 768px) */
@media (max-width: 768px) {
    #carouselProyecto .carousel-inner {
        max-height: 400px; /* Ajusta la altura del carrusel para pantallas medianas */
    }
}

/* Ajuste para asegurar que el modal no sea demasiado grande en pantallas pequeñas */
.modal-dialog {
    max-width: 90%; /* Asegura que el modal no ocupe toda la pantalla en dispositivos móviles */
}

/* Ajuste para el modal en pantallas más pequeñas */
@media (max-width: 576px) {
    .modal-dialog {
        max-width: 95%; /* El modal ocupa más espacio en pantallas muy pequeñas */
    }
}

/*logo*/
.logoG {
  border-radius: 80px 80px 80px 80px;
}