/* =========================================================
   ======== ESTILOS GLOBALES Y CORRECCIÓN DE ALINEACIÓN ========
   ========================================================= */

   html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
  }
  
  /* Asegura que el contenido mantenga la misma alineación que el navbar */
  .container-fluid {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  /* Corrige los márgenes laterales en dispositivos pequeños */
  @media (max-width: 991px) {
    .container-fluid.px-lg-5 {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }
  }

  /* ===== ESPACIADO GLOBAL ENTRE SECCIONES ===== */
.section-padding {
    padding-top: 8rem;   /* espacio superior */
    padding-bottom: 8rem; /* espacio inferior */
  }
  
  @media (max-width: 992px) {
    .section-padding {
      padding-top: 6rem;
      padding-bottom: 5rem;
    }
  }
  
  
 /* =========================================================
     ========================= NAVBAR =========================
     ========================================================= */
.navbar {
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  padding: 0.7rem 1.5rem !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* ===== Logo y texto de marca ===== */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.navbar-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.brand-text {
  line-height: 1.1;
}

.navbar-brand span {
  font-weight: 600;
  font-size: 1.2rem;
  color: #111;
}

.navbar-brand small {
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  color: #666;
}

/* ===== Enlaces de navegación ===== */
.nav-link {
  font-weight: 500;
  color: #333 !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #007bff !important;
}

/* ===== Redes sociales y teléfono ===== */
.d-lg-flex a {
  transition: transform 0.2s ease, color 0.3s ease;
}

.d-lg-flex a:hover {
  color: #007bff !important;
  transform: scale(1.1);
}

/* ===== Modo móvil ===== */
@media (max-width: 992px) {
  .navbar {
    padding: 0.6rem 1.2rem !important;
  }

  .navbar-logo {
    height: 32px;
  }

  .navbar-brand small {
    display: none; /* ocultamos el subtítulo para mantener espacio */
  }

  .navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0;
  }

  .navbar-toggler i {
    font-size: 1.8rem;
    color: #142536;
  }

  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.97);
    text-align: center;
    padding: 1rem 0;
  }

  .navbar-nav .nav-link {
    font-size: 1.1rem;
    margin: 10px 0;
  }

  .d-lg-flex {
    display: none !important;
  }
}

  /* =========================================================
   ========================= HERO ===========================
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
}

.hero h1 {
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

.hero p {
  max-width: 600px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  margin-top: 1.5rem;
  line-height: 1.7;
}

.overlay {
  z-index: 1;
}

.hero .container {
  z-index: 2;
}

/* ======== RESPONSIVO ======== */
@media (max-width: 992px) {
  .hero .container {
    text-align: left !important; /* 🔹 alinea el texto a la izquierda */
    left: 5%; /* 🔹 añade margen interno */
    right: auto;
    transform: translateY(-50%);
  }

  .hero h1 {
    font-size: clamp(1.6rem, 5vw, 2rem);
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
    max-width: 90%;
    margin-right: auto; /* 🔹 mantiene la alineación visual */
  }
}

@media (max-width: 576px) {
  .hero .container {
    left: 4%; /* 🔹 un poco menos margen en pantallas muy pequeñas */
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .hero p {
    font-size: 0.9rem;
  }
}
/* =========================================================
   ==================== ABOUT SECTION =======================
   ========================================================= */
   .about-section {
    background-color: #fff;
    overflow: hidden;
    padding-top: 10rem;
    padding-bottom: 10rem;
    font-family: 'Inter', sans-serif; /* 🔹 misma tipografía del hero */
  }
  
  .about-section .container-fluid {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  /* ===== Estructura general ===== */
  .about-section .row {
    align-items: flex-start;
  }
  
  /* ===== Columna de texto ===== */
  .about-section .col-lg-6:first-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 5rem;
    text-align: left; /* 🔹 fuerza alineación */
  }
  
  /* ===== Título y texto ===== */
.small-title {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 1px;
  border-top: 1px solid #ccc;
  padding-top: 1.5rem;
  color: #142536;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-section p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
  color: #555;
  text-align: left;
}

/* ===== SOLO para pantallas grandes ===== */
@media (min-width: 1200px) {
  .about-section .small-title {
    font-size: 1.rem; /* 🔹 Aumenta tamaño del título */
  }

  .about-section p {
    font-size: 1.2rem; /* 🔹 Aumenta tamaño del texto descriptivo */
  }
}

  /* ===== BOTÓN ===== */
  .btn-conocenos {
    background-color: #142536;
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.2rem;
    width: auto !important;
    display: inline-block !important;
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: left;
  }
  
  .btn-conocenos:hover {
    background-color: #1e3a59;
    transform: translateY(-2px);
  }
  
  /* ===== Imagen ===== */
  .about-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.6s ease;
  }
  
  .about-section img:hover {
    transform: scale(1.03);
  }
  
  /* ===== Responsivo ===== */
  @media (max-width: 992px) {
    .about-section {
      padding-top: 6rem;
      padding-bottom: 6rem;
    }
  
    .about-section .container-fluid {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }
  
    .about-section .row {
      flex-direction: column;
      align-items: flex-start; /* 🔹 mantiene alineación izquierda */
      text-align: left;
    }
  
    .about-section .col-lg-6:first-child {
      padding-left: 1.2rem;
      padding-right: 1.2rem;
    }
  
    .about-section h2,
    .about-section p,
    .btn-conocenos {
      text-align: left !important; /* 🔹 evita centrado automático */
    }
  
    .about-section img {
      max-height: 300px;
      margin-top: 2rem;
    }
  }
  
 /* =========================================================
   ================== STRATEGY SECTION ======================
   ========================================================= */
.strategy-section {
  background-color: #fff;
  overflow: hidden;
  padding-top: 8rem;  /* solo aire arriba */
  padding-bottom: 8rem; /* solo aire abajo */
  padding-left: 0;
  padding-right: 0; /* 🔹 sin aire lateral */
}

.strategy-section .container-fluid {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 !important; /* 🔹 elimina padding lateral */
}

.strategy-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; /* 🔹 imagen y texto comienzan arriba */
  justify-content: space-between;
  margin: 0;
}

/* ===== Imagen ===== */
.strategy-section img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.6s ease;
  display: block;
}

.strategy-section img:hover {
  transform: scale(1.03);
}

/* ===== Texto ===== */
.strategy-section .text-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding: 0 2rem; /* 🔹 un pequeño respiro interno, opcional */
}

.strategy-title {
  color: #142536;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  line-height: 1.25;
  max-width: 600px;
  font-size: clamp(2rem, 3vw, 3.4rem);
  margin-top: 0;
}

.strategy-title span {
  color: transparent;
  -webkit-text-stroke: 1px #142536;
  text-stroke: 1px #142536;
  font-weight: 400;
}

/* =========================================================
   ==================== RESPONSIVIDAD ======================
   ========================================================= */

/* 🖥️ Pantallas grandes */
@media (min-width: 1200px) {
  .strategy-section {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .strategy-title {
    font-size: clamp(2.4rem, 2.5vw + 1rem, 3.8rem);
  }

  .strategy-section img {
    max-height: 750px;
  }
}

/* 💻 Tablets y medianas */
@media (max-width: 992px) {
  .strategy-section {
    padding: 7rem 0;
  }

  .strategy-section .row {
    flex-direction: column; /* imagen arriba, texto abajo */
    align-items: flex-start;
    gap: 3rem;
  }

  .strategy-section img {
    width: 100%;
    height: auto;
    max-height: 400px;
  }

  .strategy-section .text-col {
    padding: 0 1.5rem;
  }

  .strategy-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    text-align: left;
  }
}

/* 📱 Móviles pequeños */
@media (max-width: 576px) {
  .strategy-section {
    padding: 6rem 0;
  }

  .strategy-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
    line-height: 1.4;
    text-align: left;
  }

  .strategy-section img {
    max-height: 300px;
  }

  .strategy-section .text-col {
    padding: 0 1rem;
  }
}

  
  /* =========================================================
     =========== PURPOSE & ADVANTAGE SECTION =================
     ========================================================= */
  .bg-light-custom {
    background-color: #f4f1eb; /* beige claro */
  }
  
  .text-orange {
    color: #f48024; /* tono naranja */
  }
  
  .bg-light-custom h2 {
    color: #142536;
    letter-spacing: 0.5px;
  }
  
  .bg-light-custom h6 {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .bg-light-custom ul li {
    line-height: 1.6;
  }
  
  .bg-light-custom img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  .bg-light-custom img:hover {
    transform: scale(1.03);
  }
  
  /* Responsivo */
  @media (max-width: 992px) {
    .bg-light-custom h2 {
      font-size: 1.4rem;
    }
  
    .bg-light-custom ul {
      padding-left: 0;
    }
  
    .bg-light-custom img {
      max-height: 300px;
    }
  
    .bg-light-custom .row {
      text-align: center;
    }
  }

  

  /*ULTIMA PARTE*/

/* ===== SERVICES SECTION ===== */
.services-section {
    background-color: #f7f7f7;
    overflow: hidden;
    transition: all 0.6s ease;
    padding-top: 8rem;   /* más aire arriba */
    padding-bottom: 4rem;
  }
  
  /* Contenedor interno con mismo padding que about-section */
  .services-section .container-fluid {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    padding-top: 4rem;  /* agrega aire interno adicional (sube ambos lados) */
    padding-bottom: 2rem;
  }
  
  /* En pantallas grandes (desktop amplio) */
  @media (min-width: 1200px) {
    .services-section .container-fluid {
      padding-left: 5rem !important;
      padding-right: 5rem !important;
      padding-top: 5rem;
    }
  }
  
  /* Textos */
  .services-section h2 {
    color: #142536;
    letter-spacing: 0.5px;
  }
  
  .services-section h6 {
    font-size: 0.85rem;
    color: #555;
    letter-spacing: 1px;
  }
  
  .services-section p {
    line-height: 1.7;
  }
  
  /* ===== Acordeones ===== */
  .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #999;
  }
  
  .accordion-button {
    background-color: transparent !important;
    box-shadow: none !important;
    font-weight: 600;
    font-size: 0.95rem;
    color: #142536;
    justify-content: space-between;
    padding: 1rem 0;
    transition: all 0.3s ease;
  }
  
  .accordion-button::after {
    display: none;
  }
  
  .accordion-button i {
    transition: transform 0.3s ease;
  }
  
  .accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
  }
  
  /* Efecto suave al abrir/cerrar */
  .accordion-collapse {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .accordion-body {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding-left: 0.25rem;
  }
  
  .accordion-collapse.show .accordion-body {
    opacity: 1;
    transform: translateY(0);
  }
  
  .accordion-body p,
  .accordion-body li {
    color: #666;
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 992px) {
    .services-section {
      text-align: center;
      padding-top: 6rem;  /* mantiene proporción en móviles */
      padding-bottom: 3rem;
    }
  
    .services-section .container-fluid {
      padding-left: 1.5rem !important;
      padding-right: 1.5rem !important;
      padding-top: 3rem;
    }
  
    .accordion-button {
      font-size: 1rem;
    }
  }
  

/* ===== CLIENTES SECTION ===== */
.clients-section {
    background-color: #ffffff;
    overflow: hidden;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  
  /* Texto alineado como "Nuestros Servicios" */
  .clients-section h2 {
    color: #111;
    letter-spacing: 0.5px;
    text-align: left;
    margin-left: 0;
  }
  
  .clients-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
  }
  
  /* ===== Logos ===== */
  .client-logo {
    max-width: 120px;
    height: auto;
    opacity: 0.7;
    filter: grayscale(100%) brightness(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  }
  
  .client-logo:hover {
    opacity: 1;
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1);
  }
  
  /* ===== Responsivo ===== */
  @media (max-width: 992px) {
    .clients-section {
      padding-top: 6rem;
      padding-bottom: 5rem;
      text-align: center;
    }
  
    .clients-section h2,
    .clients-section p {
      text-align: center;
    }
  
    .client-logo {
      max-width: 100px;
    }
  }
  
  @media (max-width: 576px) {
    .client-logo {
      max-width: 80px;
    }
  }
  
  /* ===== Ajuste de alineación lateral del texto de CLIENTES ===== */
.clients-section .col-lg-6 {
    padding-left: 3rem; /* Mueve el texto a la derecha */
  }
  
  @media (min-width: 1200px) {
    .clients-section .col-lg-6 {
      padding-left: 5rem; /* Un poco más en pantallas grandes */
    }
  }
  
  @media (max-width: 992px) {
    .clients-section .col-lg-6 {
      padding-left: 0; /* Vuelve a centrar en móviles */
    }
  }

  

  /* ===== FOOTER ===== */
.footer {
    background-color: #f4f4f4;
    color: #444;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid #ddd;
  }
  
  .footer-logo {
    font-size: 1.3rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
  }
  
  .footer small {
    font-size: 0.75rem;
    color: #666;
  }
  
  .footer-link {
    color: #555;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover {
    color: #142536;
  }
  
  .social-icons a {
    color: #222;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .social-icons a:hover {
    opacity: 0.7;
    transform: scale(1.1);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .footer {
      text-align: center;
    }
  
    .social-icons {
      justify-content: center !important;
    }
  
    .footer .col-md-3,
    .footer .col-md-2 {
      margin-bottom: 1.5rem;
    }
  }
  




  /* ===== SECCIÓN PROYECTOS ===== */
.projects-section {
  background-color: #fff;
  color: #222;
}

/* Texto superior */
.projects-section h1 {
  color: #1e2a36;
  letter-spacing: 1px;
}

.projects-section p {
  max-width: 700px;
  text-align: left;
  color: #555;
}

/* Galería */
.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: #f8f9fa;
  transition: transform 0.3s ease;
}

.project-item img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain; /* se adapta sin recortar */
  transition: transform 0.5s ease, filter 0.5s ease;
}

.project-item:hover img {
  transform: scale(1.03);
  filter: brightness(70%);
}

/* Overlay de texto */
.project-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.65);
  color: white;
  text-align: center;
  opacity: 0;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.project-item:hover .project-info {
  opacity: 1;
}

.project-info h5 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.project-info p {
  font-size: 0.95rem;
  color: #eaeaea;
}

/* Espaciado superior e inferior */
.projects-section .container-fluid:first-child {
  padding-top: 120px;
  padding-bottom: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .project-item img {
    max-height: 380px;
  }
}

@media (max-width: 768px) {
  .projects-section h1 {
    font-size: 2rem;
  }
  .projects-section p {
    font-size: 0.95rem;
  }
  .project-item img {
    max-height: 320px;
  }
}

@media (max-width: 576px) {
  .project-item img {
    max-height: 260px;
  }
}

/* ===== HERO QUIÉNES SOMOS - estilo Paramus ===== */
.about-hero {
  background-color: #fff;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
}

.about-hero-title {
  color: #1e2a36;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

.about-hero-title .brand-name {
  color: #1e2a36;
  font-weight: 700;
}

.about-hero-title .outlined-text {
  color: transparent;
  -webkit-text-stroke: 1px #1e2a36;
  font-weight: 600;
}

/* ===== DESCRIPCIÓN ===== */
.about-description {
  background-color: #fff;
}

.about-description p {
  max-width: 720px;
  text-align: left;
  color: #5a5a5a;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ===== IMAGEN COMPLETA ===== */
.about-image-container {
  width: 100%;
  overflow: hidden;
}

.about-full-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .about-hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .about-hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .about-hero-title {
    font-size: 1.8rem;
  }
}

/* ===== HERO PRINCIPAL ===== */
.about-hero {
  background-color: #fff;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
}

.about-hero-title {
  color: #1e2a36;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

.about-hero-title .brand-name {
  color: #1e2a36;
  font-weight: 700;
}

.about-hero-title .outlined-text {
  color: transparent;
  -webkit-text-stroke: 1px #1e2a36;
  font-weight: 600;
}

/* ===== IMAGEN CON ANIMACIÓN ===== */
.about-visual {
  width: 100%;
  overflow: hidden;
}

.about-visual-image {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1s ease, filter 1s ease;
}

.about-visual:hover .about-visual-image {
  transform: scale(1.05);
  filter: brightness(90%);
}

/* ===== DESCRIPCIÓN ===== */
.about-description {
  background-color: #fff;
}

.about-description p {
  max-width: 720px;
  text-align: left;
  color: #5a5a5a;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .about-hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .about-visual-image {
    height: 60vh;
  }
}

@media (max-width: 576px) {
  .about-hero-title {
    font-size: 1.8rem;
  }
  .about-visual-image {
    height: 50vh;
  }
}
/* ===== CUARTA PARTE: EXPERIENCIA ===== */
.experience-section {
  background-color: #fff;
  color: #222;
}

.experience-box {
  background-color: #f9f9f9;
  border-radius: 8px;
  min-height: 280px;
  width: 100%;
  
  /* CENTRADO PERFECTO */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.experience-box h1 {
  color: #1e2a36;
  font-size: clamp(3rem, 7vw, 5rem);
  margin-bottom: 0.5rem;
}

.experience-box p {
  color: #000;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.experience-section h3 {
  color: #000;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.experience-section p {
  color: #555;
  font-size: 1rem;
  max-width: 650px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .experience-box {
    text-align: center;
    align-items: center;
  }

  .experience-section {
    text-align: center;
  }

  .experience-section h3 {
    margin-top: 1rem;
  }
}

/* ===== QUINTA PARTE: MISIÓN ===== */
.mission-section {
  background-color: #e6e3dd; /* tono beige claro como Paramus */
  color: #1e2a36;
}

.mission-number {
  color: #1e2a36;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.mission-title {
  font-size: 2.8rem;
  letter-spacing: 1px;
  color: #1e2a36;
}

.mission-section p {
  color: #444;
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.8;
}

/* Imagen */
.mission-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.mission-image:hover {
  transform: scale(1.02);
}

/* Espaciado */
.mission-section .container-fluid {
  padding-top: 120px;
  padding-bottom: 120px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .mission-section {
    text-align: center;
  }

  .mission-section .mission-title {
    font-size: 2.2rem;
  }

  .mission-section p {
    margin: 0 auto;
  }

  .mission-image {
    max-width: 420px;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .mission-title {
    font-size: 1.8rem;
  }
  .mission-image {
    max-width: 100%;
  }
}
/* ===== SECCIÓN UNIFICADA: MISIÓN Y VISIÓN ===== */
.mission-vision-section {
  background-color: #e6e3dd;
  color: #1e2a36;
}

.mv-number {
  color: #1e2a36;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.mv-title {
  font-size: 2.8rem;
  letter-spacing: 1px;
  color: #1e2a36;
}

.mission-vision-section p {
  color: #444;
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.8;
}

/* Imagen compartida */
.mv-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.mv-image:hover {
  transform: scale(1.02);
}

/* Espaciado entre bloques */
.mission-vision-section .container-fluid {
  padding-top: 120px;
  padding-bottom: 120px;
}

.mission-vision-section .row + .row {
  margin-top: 100px; /* separa misión y visión sin cambiar el fondo */
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .mission-vision-section {
    text-align: center;
  }

  .mv-title {
    font-size: 2.2rem;
  }

  .mission-vision-section p {
    margin: 0 auto;
  }

  .mv-image {
    max-width: 420px;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .mv-title {
    font-size: 1.8rem;
  }

  .mv-image {
    max-width: 100%;
  }
}
/* ===== SÉPTIMA PARTE: NUESTROS VALORES ===== */
.values-section {
  background-color: #f4f4f4;
  color: #1e2a36;
}

.values-section h5 {
  letter-spacing: 1px;
  font-size: 1rem;
  font-weight: 600;
}

.values-section h6 {
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-color: #000;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.values-section h6:hover {
  color: #1e2a36;
  border-color: #1e2a36;
}

.values-section p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.5rem;
  line-height: 1.8;
}

.values-section .container-fluid {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .values-section h6 {
    font-size: 1rem;
  }

  .values-section p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .values-section h5 {
    text-align: center;
  }

  .values-section h6 {
    text-align: center;
  }

  .values-section p {
    text-align: center;
  }
}

/* ===== SECCIÓN CONTACTO ===== */
.contact-section {
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.contact-info {
  background-color: #e6e3dd;
  color: #1e2a36;
}

.contact-info h5 {
  font-size: 1.4rem;
  font-weight: 400;
}

.contact-info p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
}

.contact-info .social-links a {
  color: #1e2a36;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.contact-info .social-links a:hover {
  color: #000;
}

.contact-form h2 {
  font-size: 2rem;
  color: #1e2a36;
  line-height: 1.3;
}

.text-accent {
  color: #48616e; /* tono gris-azulado similar al de Paramus */
  font-size: 1.1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #000;
  border-radius: 0;
  padding: 10px 12px;
  font-size: 0.95rem;
  color: #333;
  background-color: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1e2a36;
  box-shadow: none;
}

.contact-form button {
  background-color: #1e2a36;
  color: #fff;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #333;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .contact-info, .contact-form {
    text-align: center;
    padding: 3rem 2rem;
  }

  .contact-form h2 {
    font-size: 1.6rem;
  }

  .text-accent {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-form h2 {
    font-size: 1.4rem;
  }

  .contact-info h5 {
    font-size: 1.2rem;
  }
}

/* ======== LOADER ======== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}



