/* ====== Hero Section ====== */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  background-color: #f4f9fa;
  text-align: center;
  color: white;
  padding: 3rem 0;
}

.hero-content h1 {
  color: #00558d;
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-content .lead {
  color: #00558d;
  font-size: 1.5rem;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-content .btn {
  padding: 12px 24px;
  font-size: 1.1rem;
  border: none;
  color: #ffffff;
  transition: background-color 0.3s ease-in-out;
  margin-top: 1rem;
}

.hero-content .btn-warning {
  background-color: #80c542;
}

.hero-content .btn-warning:hover {
  background-color: #447525;
}

.hero-content .btn-primary {
  background-color: #007bff;
  margin-left: 0.75rem;
}

.hero-content .btn-primary:hover {
  background-color: #0051a8;
}

/* ====== Sección Quiénes Somos ====== */
.about-section {
  padding: 3rem 0;
  text-align: center;
}

.about-section h2 {
  margin-bottom: 1.5rem;
}

/* ====== Sección Servicios ====== */
.services-section {
  padding: 3rem 0;
  background-color: #f8f9fa;
  text-align: center;
}

.services-section h2 {
  margin-bottom: 1.5rem;
}

.services-section .row {
  margin-top: 2rem;
}

.services-section .col-md-4 {
  margin-bottom: 1.5rem;
}

.services-section i {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 1rem;
}

/* ====== Por qué elegirnos ====== */
.porque-elegirnos {
  padding: 3rem 0;
}

.porque-elegirnos h2 {
  margin-bottom: 2rem;
}

.porque-elegirnos img {
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.porque-elegirnos h6 {
  font-weight: 600;
  color: #003366;
}

.porque-elegirnos p {
  color: #555;
  font-size: 0.9rem;
}

.imagen-combinada {
  position: relative;
  overflow: hidden;
}

.img-fondo {
  width: 95%;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.img-superpuesta {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 100%;
  max-width: 550px;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  z-index: 2;
}

/* ====== Testimonios ====== */
.testimonials-section {
  padding: 3rem 0;
}

.testimonials-section h2 {
  margin-bottom: 3rem;
  color: #343a40;
  font-weight: bold;
}

.testimonial-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-name {
  color: #007bff;
  font-weight: bold;
}

.testimonial-role {
  color: #6c757d;
  font-size: 0.875rem;
}

.testimonial-body blockquote {
  position: relative;
  padding: 0 1.5rem;
}

.testimonial-body .fa-quote-left,
.testimonial-body .fa-quote-right {
  color: #007bff;
  font-size: 1.5rem;
}

.testimonial-body .fa-quote-left {
  position: absolute;
  left: 0;
  top: 0;
}

.testimonial-body .fa-quote-right {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* ====== Clientes ====== */
.clients-section {
  padding: 3rem 0;
  background-color: #f8f9fa;
  text-align: center;
}

.clients-section h2 {
  margin-bottom: 1rem;
}

.carousel-logo {
  max-height: 100px;
  margin: 0 auto;
}

.carousel-control-prev img,
.carousel-control-next img {
  width: 30px; 
  height: 30px;
}

/* ====== Llamado a la acción ====== */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, #003366 0%, #002244 100%);
  color: white;
}

.cta-section h2 {
  margin-bottom: 2rem;
}

.btn-contacto {
  background-color: #000000;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-contacto:hover {
  background-color: #6db137;
  transform: translateY(-3px);
}

/* ====== Preguntas frecuentes ====== */
.faq-section {
  padding: 3rem 0;
}

.faq-section h2 {
  margin-bottom: 2rem;
  text-align: center;
}

/* ====== Ubicación ====== */
.location-section {
  padding: 3rem 0;
  background-color: #f8f9fa;
}

.location-section h2 {
  margin-bottom: 2rem;
  text-align: center;
}

/* ====== Media Queries ====== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .lead {
    font-size: 1.25rem;
  }

  .img-superpuesta {
    position: relative;
    right: auto;
    margin-top: 1rem;
  }

  .porque-elegirnos .row {
    text-align: center;
  }

  .porque-elegirnos .col-sm-6 {
    justify-content: center;
  }

  .hero-content .btn-primary {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
