
        :root {
            --primary-color: #c8102e; /* Rojo Wisconsin */
            --secondary-color: #ffd100; /* Amarillo */
            --dark-color: #0f051b; /* Azul oscuro */
            --light-color: #f5f5f5;
            --text-color: #333;
            --font-main: 'Inter', system-ui, Roboto, sans-serif;
        }
   


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family:Arial, Helvetica, sans-serif;
        }
        
        body {
            color: var(--text-color);
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
/* =========================
   HEADER
========================= */
header {
    background-color: var(--dark-color);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(2, 6, 39, 0.26);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================
   LOGO
========================= */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    filter: brightness(1) invert(0);
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.04);
}

/* =========================
   NAV DESKTOP
========================= */
nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

nav a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 560;
    font-size: 0.95rem;
    letter-spacing: 0.7px;
   font-family: var(--font-main);
    padding: 8px 14px;
    border-radius: 999px;
    transition: all 0.25s ease;
}

/* Hover moderno (pill) */
nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

/* Estado activo */
nav a.active {
    background: rgba(255, 255, 255, 0.14);
    color: var(--primary-color);
}

/* =========================
   CTA BUTTON
========================= */
.nav-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* =========================
   HAMBURGER
========================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* =========================
   MOBILE MENU
========================= */
@media (max-width: 768px) {

    .logo img {
        height: 62px;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        backdrop-filter: blur(12px);
        max-height: 0;
        opacity: 0;
        transform: translateY(-10px);
        overflow: hidden;
        transition: all 0.35s ease;
    }

    nav.active {
        max-height: 420px;
        opacity: 1;
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        padding: 24px 0;
        gap: 20px;
        text-align: center;
    }

    nav a {
        font-size: 1.1rem;
    }

    .nav-cta {
        margin-top: 10px;
    }
}

/* =========================
   HAMBURGER ANIMATION
========================= */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* =========================
   HERO CENTRADO
========================= */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;

    background:
        linear-gradient(
            rgba(29, 37, 45, 0.726),
            rgba(29, 37, 45, 0.795)
        ),
        url("../images/hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

/* =========================
   CONTENIDO
========================= */
.hero-content {
    max-width: 850px;
}

.hero h2 {
    font-size: clamp(2.8rem, 5vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 22px;
    text-transform: uppercase;
    font-weight: 800;
}

.hero h2 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 42px;
    color: #e5e7eb;
}

/* =========================
   BOTÓN
========================= */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 44px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--font-main);
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
    }

    .hero p {
        font-size: 1.15rem;
    }
}

        .cta-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 15px 40px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: 2px solid var(--primary-color);
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: var(--primary-color);
        }
        
       /* =========================
   ABOUT MODERN SECTION
========================= */
.about-modern {
    padding: 100px 0;
    background: #f5f5f5;
}

.about-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

/* =========================
   LEFT PANEL
========================= */
.about-left {
    background: #1e0838;/* azul corporativo */
    color: white;
    padding: 70px 60px;
}

.about-tag {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-left h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 20px 0 25px;
}

.about-left p {
    font-size: 1rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin-bottom: 35px;
}

.about-btn {
    display: inline-block;
   background-color: var(--primary-color);
    color: #ffffff;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.25);
}

.about-btn:hover {
    background: #a50d25; /* rojo más oscuro */
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(200, 16, 46, 0.35);
}

/* =========================
   RIGHT PANEL
========================= */
.about-right {
    background: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: 1px solid #e5e7eb;
}

.stat-box {
    padding: 50px 40px;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
}

.stat-box:nth-child(2n) {
    border-right: none;
}

.stat-box:nth-last-child(-n+2) {
    border-bottom: none;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-left {
        padding: 50px 30px;
        text-align: center;
    }

    .about-left h2 {
        font-size: 2.2rem;
    }

    .about-right {
        grid-template-columns: 1fr;
    }

    .stat-box {
        border-right: none;
    }
}
/* ===============================
   SECCIÓN MISIÓN & VISIÓN
================================ */

.about-company {
    background: #f5f5f5;
    padding: 100px 0;
    width: 100%;
}

.mission-vision__wrapper {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* Grid base */
.grid-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* Invertir visión */
.vision-card {
    grid-template-columns: 1fr 1.1fr;
}

/* Contenido */
.mission__content,
.vision__content {
    max-width: 520px;
}

/* Títulos */
.mission-vision__title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0f051b;
    position: relative;
}
.mission-vision__wrapper {
    border: 2px solid rgba(200, 16, 46, 0.25); /* rojo SEMTA suave */
    border-radius: 16px;
    padding: 40px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
/* Línea decorativa */
.mission-vision__title::after {
    content: '';
    width: 60px;
    height: 4px;
    
    display: block;
    margin-top: 12px;
}

/* Texto */
.mission-vision__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

/* ===============================
   IMÁGENES
================================ */

.mission__image,
.vision__image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Imagen base */
.mission__image img,
.vision__image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
}

/* Overlay normal (invisible) */
.mission__image::after,
.vision__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 150, 255, 0); /* transparente */
    transition: background 0.3s ease;
    border-radius: 12px;
}

/* Overlay celeste al hover */
.mission__image:hover::after,
.vision__image:hover::after {
    background: #0f172a8c; /* celeste suave */
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .grid-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission__image img,
    .vision__image img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .mission-vision__title {
        font-size: 1.8rem;
    }

    .mission-vision__text {
        font-size: 0.95rem;
    }
}
.hero-figure {
  position: relative;
  width: 100%;
  height: 70vh; /* pantalla completa */
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* clave */
  object-position: center;
}

/* Overlay oscuro corporativo */
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15, 5, 27, 0.55),
    rgba(15, 5, 27, 0.7)
  );
}

/* Texto encima */
.hero-caption {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-caption h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  
  text-transform: uppercase;
  margin: 10px 0;
}

.hero-caption .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--secondary-color);
}
.hero-button {
  display: inline-block;
  padding: 12px 30px;
  background: #00aaff;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background: #0088cc;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* =========================
   SERVICIOS – ESTILO SEMTA
========================= */
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* TÍTULO DE SECCIÓN */
    .section-title {
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-title h2 {
      font-size: 2rem;
      font-weight: 800;
      color: var(--dark-color);
      text-transform: uppercase;
      position: relative;
      display: inline-block;
      margin-bottom: 20px;
    }

    .section-title h2::after {
      content: "";
      position: absolute;
      width: 90px;
      height: 4px;
      background: var(--primary-red);
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .section-title p {
      margin-top: 30px;
      font-size: 1.1rem;
      color: #555;
      line-height: 1.6;
    }

    /* SERVICIOS */
    .services-section {
      padding: 90px 5%;
      background: #ffffff;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 320px;
      gap: 18px;
    }

    .service-card {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      background: #000;
      cursor: pointer;
    }

    .service-card.wide {
      grid-column: span 2;
    }

    .service-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .service-card .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
      transition: all 0.4s ease;
    }

    .service-card h3 {
      color: #ffffff;
      font-size: 1.2rem;
      font-weight: 800;
      line-height: 1.3;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-left: 4px solid var(--primary-red);
      padding-left: 14px;
      margin-bottom: 12px;
      transition: all 0.3s ease;
    }

    .service-card p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.9rem;
      line-height: 1.5;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.4s ease;
      max-height: 0;
      overflow: hidden;
    }

    /* HOVER EFFECTS */
    .service-card:hover img {
      transform: scale(1.08);
    }

    .service-card:hover .overlay {
      background: linear-gradient(to top, rgba(200, 16, 46, 0.9), rgba(0,0,0,0.6));
    }

    .service-card:hover h3 {
      border-left-color: #ffffff;
    }

    .service-card:hover p {
      opacity: 1;
      transform: translateY(0);
      max-height: 200px;
    }

    /* RESPONSIVE */
    @media (max-width: 1200px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 300px;
      }

      .service-card.wide {
        grid-column: span 3;
      }
    }

    @media (max-width: 768px) {
      .section-title h2 {
        font-size: 2rem;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
        gap: 15px;
      }

      .service-card.wide {
        grid-column: span 2;
      }

      .service-card h3 {
        font-size: 1.05rem;
      }

      .service-card p {
        font-size: 0.85rem;
      }
    }

    @media (max-width: 480px) {
      .services-section {
        padding: 60px 5%;
      }

      .section-title h2 {
        font-size: 1.6rem;
      }

      .services-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
      }

      .service-card.wide {
        grid-column: span 1;
      }

      .service-card h3 {
        font-size: 1rem;
      }

      .service-card .overlay {
        padding: 20px;
      }
    }
  .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* TÍTULO DE SECCIÓN */
    .section-title {
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-title h2 {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--dark-color);
      text-transform: uppercase;
      position: relative;
      display: inline-block;
      margin-bottom: 20px;
    }

    .section-title h2::after {
      content: "";
      position: absolute;
      width: 90px;
      height: 4px;
      background: var(--primary-red);
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .section-title p {
      margin-top: 30px;
      font-size: 1.1rem;
      color: #555;
      line-height: 1.6;
    }

    /* PROYECTOS */
    .projects-section {
      padding: 90px 5%;
      background: #ffffff;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 320px;
      gap: 18px;
    }

    .project-card {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      background: #000;
      cursor: pointer;
    }

    .project-card.wide {
      grid-column: span 1;
    }

    .project-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .project-card .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
      transition: all 0.4s ease;
    }

    .project-card h3 {
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 800;
      line-height: 1.3;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-left: 4px solid var(--primary-red);
      padding-left: 14px;
      margin-bottom: 12px;
      transition: all 0.3s ease;
    }

    .project-info {
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.4s ease;
      max-height: 0;
      overflow: hidden;
    }

    .project-info-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 8px;
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.85rem;
    }

    .project-info-item strong {
      color: var(--primary-red);
      min-width: 80px;
      font-weight: 700;
    }

    .project-info-item span {
      flex: 1;
      line-height: 1.4;
    }

    /* HOVER EFFECTS */
    .project-card:hover img {
      transform: scale(1.08);
    }

    .project-card:hover .overlay {
      background: linear-gradient(to top, rgba(200, 16, 46, 0.95), rgba(0,0,0,0.6));
    }

    .project-card:hover h3 {
      border-left-color: #ffffff;
    }

    .project-card:hover .project-info {
      opacity: 1;
      transform: translateY(0);
      max-height: 300px;
    }

    /* RESPONSIVE */
    @media (max-width: 1200px) {
      .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 300px;
      }

      .project-card.wide {
        grid-column: span 1;
      }
    }

    @media (max-width: 768px) {
      .section-title h2 {
        font-size: 2rem;
      }

      .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
        gap: 15px;
      }

      .project-card.wide {
        grid-column: span 2;
      }

      .project-card h3 {
        font-size: 1rem;
      }

      .project-info-item {
        font-size: 0.8rem;
      }

      .project-info-item strong {
        min-width: 70px;
      }
    }

    @media (max-width: 480px) {
      .projects-section {
        padding: 60px 5%;
      }

      .section-title h2 {
        font-size: 1.6rem;
      }

      .projects-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
      }

      .project-card.wide {
        grid-column: span 1;
      }

      .project-card h3 {
        font-size: 0.95rem;
      }

      .project-card .overlay {
        padding: 20px;
      }

      .project-info-item {
        font-size: 0.75rem;
        margin-bottom: 6px;
      }

      .project-info-item strong {
        min-width: 65px;
      }
    }
        
/* ===== Sección Certificaciones ===== */
.certificaciones-section {
    padding: 100px 20px;
    background: #ffffff; /* fondo blanco */
    color: var(--dark-color);
    text-align: center;
}

/* ===== Título ===== */
.cert-title {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 30px;
    color:var(--dark-color); /* azul elegante */
    text-transform: uppercase;
}

/* ===== Introducción ===== */
.cert-intro {
    max-width: 800px;
    margin: 0 auto 80px auto;
    font-size: 1.2rem;
   
    color: #555;
}

/* ===== Logos ===== */
.cert-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px; /* separación amplia */
}

.cert-logo-card {
    position: relative;
    background: #ffffff;
    border-radius: 25px;
    padding: 50px 40px;
    width: 260px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(13, 59, 102, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    overflow: hidden;
    border: 2px solid rgba(13, 59, 102, 0.1);
}

.cert-logo-card:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 15px 40px rgba(13, 59, 102, 0.3);
    border-color: #0d3b66;
}

/* Línea futurista debajo de cada tarjeta */

.cert-logo-img {
    width: 120px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.5s ease, filter 0.5s ease;
}


.cert-logo-card span {
    font-weight: 700;
    color: #0d3b66;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}



/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .cert-logo-card {
        width: 220px;
        padding: 40px 25px;
    }
    .cert-logo-img {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .cert-logos {
        gap: 40px;
    }
    .cert-logo-card {
        width: 180px;
        padding: 30px 20px;
    }
    .cert-logo-img {
        width: 90px;
        height: 90px;
    }
}

/* ===== Sección Clientes ===== */
/* ===== SECCIÓN CLIENTES ===== */
.clientes-section {
    padding: 3.5rem 0;
    background: #f8f8f8d5;
    overflow: hidden;
}

/* TÍTULO */
.clientes-title {
    max-width: 1400px; /* más ancho que antes */
    margin: 0 auto 2rem;
    padding: 0 2rem;

    display: flex;
    align-items: center;
    gap: 1rem;
        font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    position: relative;
}

/* Línea decorativa derecha */
.clientes-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #1f2937, transparent);
    opacity: 0.35;
}

/* Carrusel */
.clientes-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;

    /* Corte suave en los lados */
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

/* Pista */
.carousel-track {
    display: flex;
    align-items: center;
    gap: 4rem; /* logos más espaciados */
    width: max-content;
    animation: scroll-left 30s linear infinite; /* un poco más rápido */
    padding-left: 2rem;
}

/* Logos */
.cliente-logo {
    height: 90px; /* un poco más grandes */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cliente-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Animación */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .clientes-title {
        font-size: 1.9rem;
    }

    .carousel-track {
        gap: 3rem;
    }

    .cliente-logo {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .clientes-title {
        font-size: 1.6rem;
    }

    .carousel-track {
        gap: 2rem;
    }

    .cliente-logo {
        height: 50px;
    }
}

/* ==========================================
  FOOTER
   ========================================== */

/* ==========================================
   FOOTER - Versión Mejorada para Móvil
   ========================================== */

/* Footer Base */
.footer {
    background: var(--dark-color);
    color: #ffffff;
    padding: 45px 20px 25px 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Logo */
.footer-brand {
    flex: 1 1 250px;
    display: flex;
    align-items: flex-start;
}

.footer-logo {
     height: 120px;
    width: auto;
    filter: brightness(1) invert(0);
    transition: transform 0.3s ease;
}

/* Secciones - Mejor alineación */
.footer-contact,
.footer-services,
.footer-sectors {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

/* Contacto con iconos */
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-contact .bi {
    color: #00aaff;
    font-size: 1rem;
    min-width: 20px;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #00aaff;
    text-decoration: underline;
}

/* Listas de servicios y sectores */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-services a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 3px 0;
}

.footer-services a:hover {
    color: #00aaff;
    padding-left: 5px;
}

.footer-sectors li {
    color: #ffffffcc;
    padding: 3px 0;
}

/* Derechos de autor */
.footer-copy {
    text-align: center;
    font-size: 0.85rem;
    color: #ffffffaa;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================
   RESPONSIVE - MÓVIL (Corrección Principal)
   ========================================== */

@media (max-width: 768px) {
    .footer {
        padding: 35px 15px 20px 15px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    
    /* Cada sección ocupa todo el ancho */
    .footer-brand,
    .footer-contact,
    .footer-services,
    .footer-sectors {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Logo centrado */
    .footer-brand {
        align-items: center;
        margin-bottom: 20px;
    }
    
    .footer-logo {
        width: 160px;
        margin: 0 auto;
    }
    
    /* Títulos centrados */
    .footer h3 {
        text-align: center;
        width: 100%;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    
    /* Contacto - alinear iconos y texto */
    .footer-contact p {
        justify-content: center;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Listas centradas pero contenido alineado naturalmente */
    .footer-services ul,
    .footer-sectors ul {
        display: inline-block;
        text-align: left;
        padding-left: 0;
    }
    
    .footer-services ul li,
    .footer-sectors ul li {
        text-align: left;
        padding-left: 0;
    }
    
    /* Links de servicios */
    .footer-services a {
        text-align: center;
        padding: 5px 0;
    }
    
    .footer-services a:hover {
        padding-left: 0;
        transform: translateX(5px);
    }
    
    /* Espaciado mejorado */
    .footer-copy {
        margin-top: 30px;
        padding-top: 15px;
        font-size: 0.8rem;
    }
}

/* Para móviles muy pequeños */
@media (max-width: 480px) {
    .footer {
        padding: 30px 12px 15px 12px;
    }
    
    .footer-logo {
        width: 140px;
    }
    
    .footer h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-contact p,
    .footer ul li {
        font-size: 0.9rem;
    }
    
    .footer-contact p {
        gap: 8px;
    }
    
    .footer-container {
        gap: 20px;
    }
    
    .footer-brand,
    .footer-contact,
    .footer-services,
    .footer-sectors {
        margin-bottom: 25px;
        max-width: 280px;
    }
}

/* Para tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .footer-contact,
    .footer-services,
    .footer-sectors {
        width: 100%;
        margin-bottom: 0;
    }
}

/* Animaciones suaves */
.footer-services a,
.footer-contact a {
    transition: all 0.3s ease;
}
/* ==========================================
 MAPA
   ========================================== */
.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.65); /* Fondo semi oscuro */
  color: #cccccc; /* Contenido medio plomo */
  padding: 25px;
  border-radius: 8px;
  max-width: 350px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.contact-info h3 {
  color: #ffffff; /* Título blanco */
  font-weight: 700; /* Negrita */
  text-transform: uppercase; /* Mayúsculas */
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.contact-info p {
  color: #cccccc; /* Contenido medio plomo */
  margin-bottom: 15px;
}

.contact-method {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-method li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #cccccc; /* Contenido medio plomo */
}

.contact-method i {
  margin-right: 10px;
  color: #c44343; /* iconos azul SEMTA */
}

.contact-method a {
  color: #cccccc;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-info {
    position: static;
    max-width: 100%;
    margin: 15px;
  }
}
.floating-btn {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 24px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 999;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* WhatsApp */
.floating-btn.whatsapp {
  background-color: #25D366;
  bottom: 90px;
  right: 20px;
}

/* Subir al top */
/* Botón subir al top */
.floating-btn.top {
  background-color: #0D3B66; /* azul SEMTA */
  bottom: 20px;
  right: 20px;
  display: flex;
  opacity: 0; /* iniciamos invisible */
  pointer-events: none; /* no interactúa mientras está invisible */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Cuando se activa */
.floating-btn.top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0); /* efecto de slide */
}

/* Hover */
.floating-btn.top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
    
        .semta-logo {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            display: inline-block;
            margin-top: 10px;
        }
        
        .semta-logo h4 {
            color: var(--dark-color);
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
        
        .semta-logo p {
            color: #666;
            font-weight: 600;
            font-style: italic;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2.8rem;
            }
            
            .nav-container {
                flex-direction: column;
                gap: 20px;
            }
            
            nav ul {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 70px 0;
            }
            
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
.page-header {
    background: url('../images/IngenieríaySupervisión.jpg') center center/cover no-repeat;
    padding: 150px 20px; /* un poco más de altura */
    position: relative;
    text-align: center;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5); /* capa semi-transparente */
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 4rem; /* más grande */
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-header .breadcrumb h6 {
     font-size: 1.3rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.page-header .breadcrumb a {
    color: #00aaff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header .breadcrumb a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-header {
        padding: 120px 20px;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .page-header .breadcrumb h6 {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 15px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header .breadcrumb h6 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 80px 10px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header .breadcrumb h6 {
        font-size: 0.8rem;
    }
}
/* ===== SECCIÓN ABOUT ===== */
/* Sección */
.about {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    color: #fff;
}

/* Video fondo */
.about-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Capa oscura */
.about-video .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55); /* no tapa demasiado */
}

/* Contenido */
.about-content {
    position: relative;
    z-index: 2;
    min-height: 90vh;
    max-width: 1200px;
    margin: auto;
    padding: 0 1.5rem;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

/* Cajas */
.about-content .box {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    padding: 2.5rem;
    border-radius: 16px;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.about-content p {
    line-height: 1.6;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ===== SECCIÓN servicios ===== */
.page-header.servicios {
    background: url('../images/maquinaria.jpg') center center/cover no-repeat; /* cambia la imagen */
    padding: 150px 20px;
    position: relative;
    text-align: center;
}

.page-header.servicios::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}

.page-header.servicios .container {
    position: relative;
    z-index: 2;
}

.page-header.servicios h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-header.servicios .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-header.servicios .breadcrumb h6 {
     font-size: 1.3rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.page-header.servicios .breadcrumb a {
    color: #00aaff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header.servicios .breadcrumb a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-header.servicios {
        padding: 120px 20px;
    }
    .page-header.servicios h1 {
        font-size: 3rem;
    }
    .page-header.servicios .breadcrumb h6 {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .page-header.servicios {
        padding: 100px 15px;
    }
    .page-header.servicios h1 {
        font-size: 2.2rem;
    }
    .page-header.servicios .breadcrumb h6 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .page-header.servicios {
        padding: 80px 10px;
    }
    .page-header.servicios h1 {
        font-size: 1.8rem;
    }
    .page-header.servicios .breadcrumb h6 {
        font-size: 0.8rem;
    }
}
/* ===== SECCIÓN proyectOS ===== */
.page-header.proyectos {
    background: url('../images/Infraestructura.jpg') center center/cover no-repeat; /* cambia la imagen */
    padding: 150px 20px;
    position: relative;
    text-align: center;
}

.page-header.proyectos::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}

.page-header.proyectos .container {
    position: relative;
    z-index: 2;
}

.page-header.proyectos h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-header.proyectos .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-header.proyectos .breadcrumb h6 {
     font-size: 1.3rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.page-header.proyectos .breadcrumb a {
    color: #00aaff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header.proyectos .breadcrumb a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-header.proyectos {
        padding: 120px 20px;
    }
    .page-header.proyectos h1 {
        font-size: 3rem;
    }
    .page-header.proyectos .breadcrumb h6 {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .page-header.proyectos {
        padding: 100px 15px;
    }
    .page-header.proyectos h1 {
        font-size: 2.2rem;
    }
    .page-header.proyectos .breadcrumb h6 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .page-header.proyectos {
        padding: 80px 10px;
    }
    .page-header.proyectos h1 {
        font-size: 1.8rem;
    }
    .page-header.proyectos .breadcrumb h6 {
        font-size: 0.8rem;
    }
}
/* ===== SECCIÓN CONTACTOS ===== */
.page-header.contacto {
    background: url('../images/IngenieríaySupervisión.jpg') center center/cover no-repeat; /* cambia la imagen */
    padding: 150px 20px;
    position: relative;
    text-align: center;
}

.page-header.contacto::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}

.page-header.contacto .container {
    position: relative;
    z-index: 2;
}

.page-header.contacto h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-header.contacto .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-header.contacto .breadcrumb h6 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.page-header.contacto .breadcrumb a {
    color: #00aaff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header.contacto .breadcrumb a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-header.contacto {
        padding: 120px 20px;
    }
    .page-header.contacto h1 {
        font-size: 3rem;
    }
    .page-header.contacto .breadcrumb h6 {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .page-header.contacto {
        padding: 100px 15px;
    }
    .page-header.contacto h1 {
        font-size: 2.2rem;
    }
    .page-header.contacto .breadcrumb h6 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .page-header.contacto {
        padding: 80px 10px;
    }
    .page-header.contacto h1 {
        font-size: 1.8rem;
    }
    .page-header.contacto .breadcrumb h6 {
        font-size: 0.8rem;
    }
}
/* ===== PREGUNTAS FRECUENTES ===== */
    /* ===== PREGUNTAS FRECUENTES ===== */
.faq-container {
    max-width: 1120px;
    margin: 0 auto;
    background: white;
    border-radius: 0;
    padding: 60px 0; /* Agregado padding arriba y abajo */
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.faq-item {
    border-right: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq-item:nth-child(2n) {
    border-right: none;
}

.faq-item:nth-child(-n+2) {
    border-top: none;
}

.faq-question {
    background: white;
    color: #333;
    padding: 35px 30px; /* Aumentado de 30px 20px */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1em;
    font-weight: 400;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.question-content {
    display: flex;
    align-items: center;
    gap: 20px; /* Aumentado de 15px */
    flex: 1;
}

.question-icon {
    width: 24px;
    height: 24px;
    border: 2px solid #00bcd4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00bcd4;
    font-weight: bold;
    font-size: 1.2em;
    flex-shrink: 0;
}

.question-text {
    color: #333;
}

.faq-icon {
    font-size: 1.2em;
    color: #666;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 35px 74px; /* Aumentado espaciado */
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95em;
}

.faq-answer ul {
    margin-top: 15px;
    margin-left: 20px;
    color: #666;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 40px 0; /* Espaciado móvil */
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .faq-item {
        border-right: none !important;
    }

    .faq-item:first-child {
        border-top: none;
    }

    .faq-question {
        padding: 20px 15px;
        font-size: 0.95em;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 20px 44px;
    }

    .question-content {
        gap: 10px;
    }

    .question-icon {
        width: 20px;
        height: 20px;
        font-size: 1em;
    }
}


    /* Estilos para la sección de proyectos SEMTA */
    .semta-projects {
        padding: 80px 0;
        background-color: #f8f9fa;
    }

    .semta-projects .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .semta-projects .section-subtitle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .semta-projects .section-subtitle .line {
        width: 40px;
        height: 2px;
        background-color: #d4af37; /* Color dorado para SEMTA */
    }

    .semta-projects .section-subtitle h6 {
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #666;
        margin: 0;
        font-weight: 600;
    }

    .semta-projects .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .semta-projects .section-description {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 40px;
        margin-bottom: 50px;
    }

    @media (max-width: 768px) {
        .projects-grid {
            grid-template-columns: 1fr;
        }
    }

    .project-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .project-card:hover {
        transform: translateY(-10px);
    }

    .project-image {
        position: relative;
        height: 300px;
        overflow: hidden;
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .project-card:hover .project-image img {
        transform: scale(1.05);
    }

    .project-number {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(212, 175, 55, 0.9);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: bold;
    }

    .project-category {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: white;
        padding: 8px 20px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-radius: 4px;
    }

    .project-content {
        padding: 30px;
    }

    .project-title {
        font-size: 24px;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .project-description {
        font-size: 16px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 25px;
        letter-spacing: 0.5px;
    }

    .project-view-btn {
        display: inline-block;
        background: #d4af37;
        color: white;
        padding: 12px 30px;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-radius: 4px;
        transition: all 0.3s ease;
        border: 2px solid #d4af37;
    }

    .project-view-btn:hover {
        background: white;
        color: #d4af37;
    }

    .view-all-projects {
        text-align: center;
        margin-top: 30px;
    }

    .all-projects-btn {
        display: inline-block;
        background: transparent;
        color: #333;
        padding: 14px 40px;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-radius: 4px;
        transition: all 0.3s ease;
        border: 2px solid #333;
    }

    .all-projects-btn:hover {
        background: #333;
        color: white;
    }
.contacto-blanco {
  background: #ffffff;
  padding: 6rem 1rem;
  font-family: 'Poppins', sans-serif;
}

.contacto-contenedor {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* LADO IZQUIERDO */
.contacto-info h2 {
  font-size: 2.6rem;
  color: #0f051b;
  margin-bottom: 1rem;
}

.contacto-info p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contacto-beneficios {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.contacto-beneficios li {
  margin-bottom: 0.6rem;
  color: #333;
  font-weight: 500;
}

.contacto-info img {
  width: 100%;
  border-radius: 18px;
  margin-top: 1.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* LADO DERECHO */
.contacto-formulario {
  background: #f9f9f9;
  padding: 3rem;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.contacto-formulario h3 {
  margin-bottom: 1.5rem;
  color: #0f051b;
  font-size: 1.6rem;
}

.contacto-formulario form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.fila {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contacto-formulario input,
.contacto-formulario textarea {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  outline: none;
}

.contacto-formulario textarea {
  min-height: 130px;
  resize: none;
}

.contacto-formulario input:focus,
.contacto-formulario textarea:focus {
  border-color: #0f051b;
}

.contacto-formulario button {
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 14px;
  border: none;
  background: #0f051b;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contacto-formulario button:hover {
  background: #1a0b33;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contacto-contenedor {
    grid-template-columns: 1fr;
  }

  .fila {
    grid-template-columns: 1fr;
  }
}
