    .seccion1 {
    position: relative;
    height: 100vh;
    overflow: hidden;
    }

    .seccion1-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
    }

    .seccion1-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    }

    .seccion1-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    }

    .seccion1-subtitle {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 300;
    }

    .seccion1-phone {
    font-size: 1.2rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    }

    .seccion1-phone:hover {
    background-color: rgba(0, 0, 0, 0.7);
    }

/* Estilos para sección de empresa */
.company-section {
  padding: 80px 0;
  background-color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #113dcc;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: #113dcc;
  margin: 0 auto 40px;
  border-radius: 2px;
}

.company-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.company-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.company-text p {
  margin-bottom: 20px;
}

.company-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.company-image:hover img {
  transform: scale(1.05);
}

.company-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #eef2ff;
  color: #113dcc;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.95rem;
}

.highlight-item i {
  font-size: 1.2rem;
}

/* Estilos para servicios */
.services-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #113dcc;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: #113dcc;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2rem;
  color: #113dcc;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}



/* Estilos para sección de compromiso */
.commitment-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.commitment-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
}

.commitment-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.commitment-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .company-content, .why-content {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .company-highlights {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .commitment-box {
        padding: 20px;
    }
}