/* RESET BÁSICO */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: "Montserrat", sans-serif;
    background: #ffffff;
    color: #000000;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  html {
    scroll-behavior: smooth;
  }
  
  /* ============= HEADER ============= */
  
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #e6e6e6;
    backdrop-filter: blur(10px);
  }
  
  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header-logo {
    font-weight: 700;
    letter-spacing: 0.14em;
    font-size: 13px;
    max-width: 100px;
  }
  .header-logo img {
    width: 100%;
  }
  
  .header-nav {
    display: flex;
    gap: 24px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  .header-nav li {
    list-style: none;
  }
  
  .header-nav a {
    position: relative;
    padding-bottom: 2px;
  }
  
  .header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.2s ease;
  }
  
  .header-nav a:hover::after {
    width: 100%;
  }
  
  /* ============= HERO ============= */
  
  .hero {
    position: relative;              /* ocupa exactamente el alto de la pantalla */
    display: flex;
    align-items: stretch;
    padding: 160px 32px 40px;      /* incluye espacio para el header fijo */
    overflow: hidden;
  }
  
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1.6fr;
    align-items: center;
    column-gap: 32px;
  }
  
  .hero-arrow {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  
    /* sombra suave (similar a PPT si la usas) */
    box-shadow: 0 3px 6px rgba(0,0,0,0.25);
  }
  
  .hero-arrow svg {
    display: block;
  }
  
  
  /* TEXTO IZQUIERDA */
  .hero-text {
    margin-top: 40px;  /* bajito para que todo quepa sin scroll */
  }
  
  .hero-text h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  
  .hero-text p {
    font-size: 19px;
  }
  
  /* ============= LADO DERECHO (SOLO JPG) ============= */
  
  .hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .hero-main-img {
    width: 100%;
    object-fit: contain;
  }
  
  /* ============= RESPONSIVE ============= */
  
  @media (max-width: 900px) {
    .hero-inner {
      grid-template-columns: 1fr;
      row-gap: 40px;
    }
  
    .hero-right {
      justify-content: center;
    }
  
    .hero-main-img {
      max-width: 100%;
      max-height: 60vh;
    }
  
    .hero-text {
      margin-top: 24px;
    }
  
    .hero-dots {
      top: 70px;
    }
  }
  
  @media (max-width: 600px) {
    .header-nav {
      display: none;
    }
  
    .hero {
      padding-inline: 20px;
    }
  }
  
/* =============================
   SECCIÓN VIDEO
============================= */

.video-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: 80px 0;
  }
  
  /* Área útil centrada (1200px, igual hero) */
  .video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Contenedor general del video */
  .video-frame {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Contenedor que se ajusta EXACTO al tamaño del video */
  .video-box {
    position: relative;
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
  }
  
  /* VIDEO COMPLETO (sin recorte, se escala dentro de max 1200xaltura) */
  .video-player {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    background: #000;   /* por si quedan barras */
  }
  
  /* =============================
     BOTÓN AUDIO
  ============================= */
  
  .video-audio-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.15s ease;
    z-index: 10;
  }
  
  .video-audio-btn:hover {
    background: rgba(0,0,0,0.85);
    transform: scale(1.05);
  }
  
  .video-audio-btn svg {
    width: 18px;
    height: 18px;
    pointer-events: none;
  }
/* =============================
   LOGO GLOBAL FIJO
============================= */

.floating-logo {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 160px;
    height: 160px;
    z-index: 50;
    pointer-events: none; /* no molesta al hacer scroll o clics */
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .floating-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* Oculto inicialmente (antes de llegar a Bienvenidos) */
  .floating-logo.hidden {
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
  }
  
/* =============================
   SECCIÓN BIENVENIDOS (ajustada)
============================= */

.welcome-section {
    background: #3b3b3b;
    padding: 100px 0 60px;
  }
  
  .welcome-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    color: #ffffff;
  }
  
  /* IMAGEN SUPERIOR + BANDA AMARILLA */
  
  .welcome-top {
    position: relative;
    margin-bottom: 48px;
  }
  
  .welcome-image {
    width: 100%;
    display: block;
    border-radius: 4px;
  }
  
  /* Banda amarilla más parecida a la PPT:
     - Empieza aprox desde la mitad
     - Sale hacia la derecha
     - Solo la parte inferior va levemente inclinada
  */
  .welcome-banner {
    position: absolute;
    top: -26px;
    right: -60px;
    width: 55%;
    height: 96px;
    background: #f6c51b;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 8px 0 0 8px;
  }
  
  /* CONTENIDO INFERIOR */
  
  .welcome-content {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  /* TÍTULO + ICONO AL COSTADO */
  
  .welcome-title-row {
    display: inline-flex;
    align-items: center;      /* icono alineado al centro del texto */
    gap: 18px;
  }
  
  .welcome-title {
    font-size: clamp(56px, 6.4vw, 82px);   /* más grande */
    line-height: 1.04;
    font-weight: 800;
  }
  
  /* Icono tipo “burbuja” */
  .welcome-bubble {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f6c51b;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .welcome-bubble svg {
    width: 20px;
    height: 20px;
    fill: #3b3b3b;
  }
  .welcome-left {
    display: flex;
  }
  /* TEXTO DERECHA */
  
  .welcome-right p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 430px;
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 1024px) {
    .welcome-wrapper {
      padding: 0 20px;
    }
  
    .welcome-banner {
      right: -30px;
      width: 60%;
      height: 80px;
    }
  }
  
  @media (max-width: 900px) {
    .welcome-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .welcome-title-row {
      justify-content: center;
      text-align: center;
    }
  
    .welcome-right p {
      margin: 0 auto;
      text-align: center;
    }
  }
  
  @media (max-width: 600px) {
    .welcome-section {
      padding: 80px 0 120px;
    }
  
    .welcome-title {
      font-size: 40px;
    }
  
    .welcome-banner {
      top: -20px;
      right: -20px;
      width: 70%;
      height: 70px;
    }
  }
  /* =============================
   SECCIÓN QUIÉNES SOMOS
============================= */

.about-section {
  background: #3b3b3b;
  padding: 60px 0 80px;
  color: #ffffff;
}

.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* CONTENIDO */

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TÍTULO */

.about-title {
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 34px;
}

/* TEXTO */

.about-text {
  font-size: 18px;
  line-height: 1.75;
  max-width: 500px;
  color: #e4e4e4;
}

/* IMAGEN DERECHA */

.about-right {
  display: flex;
  justify-content: flex-end;
}

.about-image {
  width: 100%;
  max-width: 480px;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .about-text {
    margin: 0 auto;
  }

  .about-right {
    justify-content: center;
  }

  .about-image {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .about-title {
    font-size: 40px;
  }
}
/* =============================
   SECCIÓN NUESTRO MÉTODO
============================= */

.method-section {
  position: relative;
  background: #f6c51b;               /* amarillo de marca */
  padding: 90px 0;
  overflow: hidden;
}

/* líneas verticales finas a los lados (como en la PPT) */
.method-section::before,
.method-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #2d2d2d;
}

.method-section::before {
  left: 0;
}

.method-section::after {
  right: 0;
}

/* wrapper centrado a 1200px */

.method-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* TÍTULO GRANDE */

.method-title {
  font-size: clamp(60px, 7vw, 96px);
  font-weight: 800;
  color: #3b3b3b;
  margin-bottom: 40px;
}

/* TARJETA BLANCA CON LOS 4 PASOS */

.method-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 56px 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 80px;
  row-gap: 40px;
}

/* COLUMNAS */

.method-col {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

/* PASO INDIVIDUAL */

.method-step {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  align-items: flex-start;
}

/* ÍCONO REDONDO CON NÚMERO */

.method-step-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-step-icon span {
  color: #f6c51b;
  font-weight: 700;
  font-size: 18px;
}

/* TEXTOS */

.method-step-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #000000;
}

.method-step-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .method-wrapper {
    padding: 0 20px;
  }

  .method-card {
    padding: 40px 32px;
    column-gap: 40px;
  }
}

@media (max-width: 800px) {
  .method-card {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

@media (max-width: 600px) {
  .method-section {
    padding: 90px 0 110px;
  }

  .method-title {
    font-size: 42px;
  }

  .method-card {
    padding: 32px 24px;
  }

  .method-step {
    column-gap: 16px;
  }

  .method-step-icon {
    width: 52px;
    height: 52px;
  }
}
/* =============================
   SECCIÓN SERVICIOS – VERSIÓN FINAL
============================= */

.services-section {
  background: #f7f7f7;
  padding: 110px 0 120px;
  border-left: 1px solid #1f1f1f;
  border-right: 1px solid #1f1f1f;
}

.services-wrapper {
  max-width: 1200px; /* área útil */
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* TÍTULO DE FONDO "¿Qué hacemos?" */
.services-bg-title {
  font-size: clamp(64px, 8vw, 80px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.06);
  margin: 0 0 40px;   /* separa título de la grilla */
}


/* LAYOUT: TEXTOS IZQUIERDA + IMAGEN DERECHA */
.services-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 3;
}

/* ===========================================
   IZQUIERDA: LISTA DE SERVICIOS
=========================================== */

.services-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 60px;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: flex-start;
}

/* Círculos */
.service-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-badge--yellow {
  background: #f6c51b;
  color: #000;
}

.service-badge--black {
  background: #000;
  color: #f6c51b;
}

/* Textos servicio */
.service-text h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.service-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 10px;
}

/* Línea fina */
.service-line {
  display: block;
  width: 70%;
  height: 1px;
  background: #d0d0d0;
}

/* Barra negra inferior */
.services-footer-bar {
  margin-top: 12px;
  background: #000;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 14px;
  text-transform: uppercase;
}

.services-footer-bar .highlight {
  color: #f6c51b;
}

/* ===========================================
   DERECHA: IMAGEN + TEXTO VERTICAL “SERVICIOS”
=========================================== */

.services-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.services-image-wrapper {
  position: relative;
  width: 270px; /* ancho de la imagen */
}

/* Imagen */
.services-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* TEXTO VERTICAL PEGADO A LA IMAGEN */
.services-vertical-word {
  position: absolute;
  left: -50px;
  top: 100%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-size: 108px;
  font-weight: 800;
  color: #333333;
  white-space: nowrap;
  pointer-events: none; /* no molesta al hacer hover/click */
}

/* ===========================================
   RESPONSIVE
=========================================== */

@media (max-width: 1024px) {
  .services-wrapper {
    padding: 0 20px;
  }

  .services-vertical-word {
    font-size: 86px;
    left: -10px;
  }

  .services-image-wrapper {
    width: 240px;
  }
}

@media (max-width: 900px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-right {
    justify-content: center;
    margin-top: 40px;
  }

  .services-vertical-word {
    position: absolute;
    left: -20px;
    font-size: 72px;
  }
}

@media (max-width: 600px) {
  .services-bg-title {
    font-size: 42px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-line {
    width: 100%;
  }

  .services-vertical-word {
    display: none; /* lo escondemos para mobile */
  }
  .services-footer-bar {
    display: none;
  }
}
/* =============================
   HERO – BOTONES
============================= */

.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Base botón */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px; /* totalmente redondo */
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

/* Botón principal */
.btn-primary {
  background: #f6c51b;
  color: #000;
  border: 2px solid #f6c51b;
}

.btn-primary:hover {
  background: #000;
  color: #f6c51b;
  border-color: #000;
  transform: translateY(-2px);
}

/* Botón secundario */
.btn-outline {
  background: transparent;
  color: #000;
  border: 2px solid #000;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .hero-buttons {
    justify-content: center;
  }
}
.hero-bullets {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-bullets .bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.hero-bullets .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00b3b3; /* turquesa como referencia */
  flex-shrink: 0;
}
/* =========================================
   UTILIDAD: CONTAINER 1200
========================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================================
   ÚLTIMA SECCIÓN (CTA + CONTACTO)
========================================= */
.cta-contact {
  background: #242424;
  color: #fff;
  padding: 110px 0 120px;
}

.cta-title {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.cta-lead {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 46px;
}

.cta-subtitle {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 14px;
}

.cta-text {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 34px;
}

.cta-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Botones estilo DE2 */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  transition: 0.25s ease;
  border: 2px solid transparent;
}

.cta-btn--primary {
  background: #f6c51b;
  color: #000;
  border-color: #f6c51b;
}

.cta-btn--primary:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: #fff;
}

.cta-btn--outline {
  background: transparent;
  color: #f6c51b;
  border-color: #f6c51b;
}

.cta-btn--outline:hover {
  transform: translateY(-2px);
  background: #f6c51b;
  color: #000;
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
  background: #181818;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0;
}

.footer-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #111;
  padding: 6px;
}

.footer-desc {
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(246, 197, 27, 0.12);
  color: #f6c51b;
  border: 1px solid rgba(246, 197, 27, 0.25);
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 7px 0;
  transition: 0.2s ease;
}


.footer-small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
}

/* =========================
   FOOTER · REDES SOCIALES
========================= */

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

/* Botón circular */
.social-pill {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;

  transition: background 0.25s ease,
              color 0.25s ease,
              border-color 0.25s ease,
              transform 0.25s ease;
}

/* SVG */
.social-pill svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

/* Hover */
.social-pill:hover {
  background: #f6c51b;
  color: #000;
  border-color: #f6c51b;
  transform: translateY(-2px);
}



/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.footer-made {
  color: rgba(255, 255, 255, 0.55);
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 46px 0;
  }
}
.social-pill svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ===== Carrusel de Logos (marquee infinito) ===== */
/* ===== Fondo especial para sección clientes ===== */
.clients{
  position: relative;
  isolation: isolate;
  background: var(--black);
  overflow: hidden;
}

/* capa de luz central + halo */
.clients::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(65% 80% at 50% 0%, rgba(255,212,0,.12) 0%, rgba(255,212,0,0) 70%),
    radial-gradient(60% 90% at 50% 100%, rgba(0,240,255,.14) 0%, rgba(0,240,255,0) 70%);
  opacity: 1;
  pointer-events: none;
  z-index: -1;
}

/* halo lateral sutil */
.clients::after{
  content:"";
  position:absolute;
  top:-10%; left:-10%; right:-10%; bottom:-10%;
  background: radial-gradient(circle at 0% 100%, rgba(255,212,0,.15), transparent 60%),
              radial-gradient(circle at 100% 0%, rgba(0,240,255,.15), transparent 60%);
  filter: blur(80px);
  opacity:.6;
  z-index:-2;
}


.logos-marquee{
  --speed: 28s;                /* más chico = más rápido */
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  padding-block: 8px;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.logos-track{
  display: flex;
  gap: 34px;
  align-items: center;
  width: max-content;          /* se adapta al contenido */
  animation: logos-scroll var(--speed) linear infinite;
}

@keyframes logos-scroll{
  from{ transform: translateX(0) }
  to{   transform: translateX(-50%) }  /* como duplicamos, -50% hace loop perfecto */
}

/* Pausa el scroll al hover (desktop) */
.logos-marquee:hover .logos-track{ animation-play-state: paused }

/* Logo base */
.logo{
  display: grid; place-items: center;
  height: 70px; min-width: 160px;    /* caja consistente */
  padding: 10px 18px;
  
}

.logo img{
  height: 50px; width: auto;
  transition: transform .2s ease, filter .2s ease;
}

/* Fallback textual (si no hay imágenes) */
.logo--text{
  font-weight: 600; color: #ddd; letter-spacing:.3px;
  padding-inline: 28px; min-width: 180px;
}

/* Responsive */
@media (max-width: 992px){
  .logo{ height: 62px; min-width: 140px }
  .logo img{ height: 30px }
}
@media (max-width: 680px){
  .logo{ height: 56px; min-width: 130px }
  .logo img{ height: 26px }
  .logos-marquee{ --speed: 22s }     /* un poquito más rápido en móvil */
}
/* =========================================
   DE2 PROYECTOS
   Agregar al final del style.css
========================================= */

.projects-page-main,
.project-detail-main {
  background: #ffffff;
}

/* ===== HERO LISTADO PROYECTOS ===== */

.de2-projects-hero {
  padding: 150px 0 80px;
  background: #ffffff;
}

.de2-projects-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 42px;
  align-items: center;
}

.de2-projects-arrow {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.25);
}

.de2-projects-title {
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.98;
  font-weight: 800;
  margin-bottom: 18px;
}

.de2-projects-lead {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.8;
  color: #4d4d4d;
}

.de2-projects-tags {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.de2-projects-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.de2-projects-tags span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00b3b3;
  flex-shrink: 0;
}

.de2-projects-hero-right {
  position: relative;
}

.de2-projects-hero-right img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 360px;
}

.de2-projects-hero-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: rgba(0,0,0,0.82);
  color: #fff;
  padding: 12px 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

/* ===== INTRO OSCURA ===== */

.de2-projects-intro {
  background: #3b3b3b;
  color: #fff;
  padding: 90px 0;
}

.de2-projects-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.de2-projects-intro-left h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
  font-weight: 800;
  max-width: 560px;
}

.de2-projects-intro-right p {
  max-width: 500px;
  font-size: 18px;
  line-height: 1.8;
  color: #e2e2e2;
}

/* ===== FILTROS ===== */

.de2-projects-filter-section {
  background: #f7f7f7;
  padding: 150px 0 80px;
  border-left: 1px solid #1f1f1f;
  border-right: 1px solid #1f1f1f;
}

.de2-projects-filter-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.de2-projects-filter-head h2 {
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 0, 0, 0.08);
}

.de2-projects-filter-head p {
  font-size: 16px;
  color: #4d4d4d;
}

.de2-projects-filters {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.de2-filter-btn {
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid #000;
  background: transparent;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.de2-filter-btn:hover,
.de2-filter-btn.active {
  background: #f6c51b;
  border-color: #f6c51b;
}

/* ===== GRID DE PROYECTOS ===== */

.de2-projects-list-section {
  background: #f7f7f7;
  padding: 20px 0 120px;
  border-left: 1px solid #1f1f1f;
  border-right: 1px solid #1f1f1f;
}

.de2-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.de2-project-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.de2-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.de2-project-card-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 4.2;
  overflow: hidden;
  background: #111;
}

.de2-project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.de2-project-card:hover .de2-project-card-image img {
  transform: scale(1.06);
}

.de2-project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.58), rgba(0,0,0,0.1));
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.de2-project-card:hover .de2-project-card-overlay {
  opacity: 1;
}

.de2-project-card-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.de2-project-card-body {
  padding: 26px 22px 24px;
}

.de2-project-card-top h3 {
  font-size: 25px;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 12px;
}

.de2-project-card-top p {
  font-size: 14px;
  line-height: 1.75;
  color: #4d4d4d;
  margin-bottom: 24px;
}

.de2-project-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  padding-top: 20px;
  border-top: 1px solid #e7e7e7;
}

.de2-project-meta small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7b7b7b;
  margin-bottom: 4px;
  font-weight: 700;
}

.de2-project-meta strong {
  font-size: 14px;
  color: #000;
}

.de2-project-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.de2-project-link::after {
  content: "↗";
  font-size: 15px;
}

/* ===== DETALLE HERO ===== */

.de2-project-detail-hero {
  padding: 150px 0 90px;
  background: #ffffff;
}

.de2-project-detail-top {
  margin-bottom: 26px;
}

.de2-project-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #333;
}

.de2-project-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.de2-project-detail-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  background: #f6c51b;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.de2-project-detail-left h1 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
  font-weight: 800;
  margin-bottom: 18px;
}

.de2-project-detail-lead {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.8;
  color: #4d4d4d;
  margin-bottom: 28px;
}

.de2-project-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  max-width: 520px;
}

.de2-project-detail-meta small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7b7b7b;
  margin-bottom: 5px;
  font-weight: 700;
}

.de2-project-detail-meta strong {
  font-size: 15px;
  color: #000;
}

.de2-project-detail-right img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 420px;
}

/* ===== HISTORIA ===== */

.de2-project-story {
  background: #3b3b3b;
  color: #fff;
  padding: 90px 0;
}

.de2-project-story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
}

.de2-project-story-title h2 {
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.02;
  font-weight: 800;
}

.de2-project-story-text p {
  font-size: 18px;
  line-height: 1.85;
  color: #e2e2e2;
  margin-bottom: 18px;
}

/* ===== GALERÍA ===== */

.de2-project-gallery {
  background: #f7f7f7;
  padding: 100px 0;
  border-left: 1px solid #1f1f1f;
  border-right: 1px solid #1f1f1f;
}

.de2-project-gallery-head {
  margin-bottom: 34px;
}

.de2-project-gallery-head h2 {
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 0, 0, 0.08);
}

.de2-project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.de2-gallery-item {
  overflow: hidden;
  background: #ddd;
}

.de2-gallery-item-large {
  grid-column: span 2;
}

.de2-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

/* ===== RESULTADOS ===== */

.de2-project-results {
  background: #ffffff;
  padding: 100px 0 120px;
}

.de2-project-results-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.de2-project-results-left h2 {
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 16px;
}

.de2-project-results-left p {
  max-width: 460px;
  font-size: 18px;
  line-height: 1.8;
  color: #4d4d4d;
}

.de2-project-results-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.de2-result-box {
  border: 1px solid #e7e7e7;
  padding: 28px 24px;
  background: #fff;
}

.de2-result-box span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000;
  color: #f6c51b;
  font-weight: 700;
  margin-bottom: 16px;
}

.de2-result-box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.de2-result-box p {
  font-size: 15px;
  line-height: 1.75;
  color: #4d4d4d;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .de2-projects-hero-grid,
  .de2-projects-intro-grid,
  .de2-project-detail-grid,
  .de2-project-story-grid,
  .de2-project-results-grid {
    grid-template-columns: 1fr;
  }

  .de2-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .de2-projects-grid,
  .de2-project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .de2-gallery-item-large {
    grid-column: span 1;
  }

  .de2-project-meta,
  .de2-project-detail-meta {
    grid-template-columns: 1fr;
  }

  .de2-projects-hero,
  .de2-project-detail-hero {
    padding: 130px 0 70px;
  }

  .de2-projects-intro,
  .de2-project-story,
  .de2-project-gallery,
  .de2-project-results {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .de2-projects-hero-label {
    left: 18px;
    bottom: 18px;
    font-size: 11px;
    padding: 10px 14px;
  }

  .de2-filter-btn {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   DE2 CONTACTO
   Agregar al final del style.css
========================================= */

.de2-contact-page-main {
  background: #ffffff;
}

/* HERO */
.de2-contact-hero {
  padding: 150px 0 80px;
  background: #ffffff;
}

.de2-contact-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 42px;
  align-items: center;
}

.de2-contact-arrow {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.de2-contact-title {
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.98;
  font-weight: 800;
  margin-bottom: 18px;
}

.de2-contact-lead {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.8;
  color: #4d4d4d;
}

.de2-contact-tags {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.de2-contact-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.de2-contact-tags span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00b3b3;
  flex-shrink: 0;
}

.de2-contact-hero-right {
  position: relative;
}

.de2-contact-hero-right img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 360px;
}

.de2-contact-hero-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  padding: 12px 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

/* BLOQUE OSCURO */
.de2-contact-info-block {
  background: #3b3b3b;
  color: #fff;
  padding: 90px 0;
}

.de2-contact-info-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.de2-contact-info-left h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
  font-weight: 800;
  max-width: 580px;
}

.de2-contact-info-right p {
  max-width: 500px;
  font-size: 18px;
  line-height: 1.8;
  color: #e2e2e2;
}

/* FORMULARIO */
.de2-contact-form-section {
  background: #f7f7f7;
  padding: 180px 0 80px;
  border-left: 1px solid #1f1f1f;
  border-right: 1px solid #1f1f1f;
}

.de2-contact-form-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.de2-contact-section-head {
  margin-bottom: 30px;
}

.de2-contact-section-head h2 {
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}

.de2-contact-section-head p {
  font-size: 16px;
  color: #4d4d4d;
}

.de2-contact-form {
  background: #fff;
  border: 1px solid #e7e7e7;
  padding: 34px;
}

.de2-contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.de2-contact-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.de2-contact-field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6f6f6f;
  font-weight: 700;
  margin-bottom: 8px;
}

.de2-contact-field input,
.de2-contact-field select,
.de2-contact-field textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 15px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
  outline: none;
  transition: 0.25s ease;
}

.de2-contact-field input:focus,
.de2-contact-field select:focus,
.de2-contact-field textarea:focus {
  border-color: #f6c51b;
}

.de2-contact-field textarea {
  resize: vertical;
  min-height: 160px;
}

.de2-contact-actions {
  margin-top: 10px;
}

.de2-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: none;
  background: #f6c51b;
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.de2-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* SIDEBAR CONTACTO */
.de2-contact-form-right {
  display: grid;
  gap: 18px;
}

.de2-contact-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  padding: 24px 22px;
}

.de2-contact-card small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7b7b7b;
  margin-bottom: 8px;
  font-weight: 700;
}

.de2-contact-card strong {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  font-weight: 700;
}

/* BLOQUE AMARILLO */
.de2-contact-highlight {
  background: #f6c51b;
  padding: 80px 0;
}

.de2-contact-highlight-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.de2-contact-highlight-left h2 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
  max-width: 620px;
}

.de2-contact-highlight-left p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.75);
}

.de2-contact-highlight-right {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.de2-contact-highlight-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid #111;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.de2-contact-highlight-btn:hover {
  background: #111;
  color: #fff;
}

.de2-contact-highlight-btn-dark {
  background: #111;
  color: #fff;
}

.de2-contact-highlight-btn-dark:hover {
  background: transparent;
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .de2-contact-hero-grid,
  .de2-contact-info-grid,
  .de2-contact-form-grid,
  .de2-contact-highlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .de2-contact-hero,
  .de2-contact-info-block,
  .de2-contact-form-section,
  .de2-contact-highlight {
    padding: 70px 0;
  }

  .de2-contact-field-row {
    grid-template-columns: 1fr;
  }

  .de2-contact-form {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .de2-contact-hero {
    padding-top: 130px;
  }

  .de2-contact-hero-label {
    left: 18px;
    bottom: 18px;
    font-size: 11px;
    padding: 10px 14px;
  }

  .de2-contact-highlight-right {
    flex-direction: column;
    align-items: stretch;
  }

  .de2-contact-highlight-btn {
    width: 100%;
  }
}
.site-main {
	background: #f5f5f5;
}

.hero-section {
	padding: 90px 0 70px;
	background: #f5f5f5;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 60px;
	align-items: center;
}

.hero-kicker,
.section-kicker {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #c89b00;
	margin-bottom: 16px;
}

.hero-title {
	font-size: 56px;
	line-height: 1.05;
	font-weight: 700;
	color: #111;
	margin: 0 0 20px;
	max-width: 700px;
}

.hero-text {
	font-size: 18px;
	line-height: 1.7;
	color: #4a4a4a;
	max-width: 620px;
	margin-bottom: 30px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.btn-main,
.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 24px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	transition: all 0.25s ease;
}

.btn-main {
	background: #111;
	color: #fff;
	border: 1px solid #111;
}

.btn-main:hover {
	background: #c89b00;
	border-color: #c89b00;
	color: #111;
}

.btn-secondary {
	background: transparent;
	color: #111;
	border: 1px solid rgba(17, 17, 17, 0.2);
}

.btn-secondary:hover {
	border-color: #111;
}

.hero-visual {
	border-radius: 28px;
	overflow: hidden;
	background: #ddd;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-services {
	padding: 80px 0;
	background: #fff;
}

.section-heading {
	margin-bottom: 34px;
}

.section-heading h2,
.featured-project-content h2 {
	font-size: 40px;
	line-height: 1.1;
	color: #111;
	margin: 0;
}

/* .services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
} */

.service-card {
	background: #111;
	color: #fff;
	padding: 32px;
	border-radius: 24px;
	min-height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.service-card h3 {
	font-size: 24px;
	margin-bottom: 14px;
	color: #c89b00;
}

.service-card p {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.84);
}

.home-featured-project {
	padding: 90px 0;
	background: #f5f5f5;
}

.featured-project-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.featured-project-image img {
	width: 100%;
	border-radius: 28px;
	display: block;
}

.featured-project-content p:not(.section-kicker) {
	font-size: 17px;
	line-height: 1.8;
	color: #4a4a4a;
	margin: 20px 0 28px;
	max-width: 560px;
}

@media (max-width: 991px) {
	.hero-grid,
	.featured-project-grid,
	.services-grid {
		grid-template-columns: 1fr;
	}

	.hero-title {
		font-size: 42px;
	}

	.section-heading h2,
	.featured-project-content h2 {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.hero-section,
	.home-services,
	.home-featured-project {
		padding: 60px 0;
	}

	.hero-title {
		font-size: 34px;
	}

	.hero-text,
	.featured-project-content p:not(.section-kicker),
	.service-card p {
		font-size: 15px;
	}

	.service-card {
		min-height: auto;
		padding: 24px;
	}
}
.de2-project-detail-right .video-player {
	width: 100%;
	display: block;
	object-fit: cover;
	background: #000;
}