    body {
       font-family: 'Open Sans', sans-serif;
      scroll-behavior: smooth;
    }
    h1, h2, h3, h4  {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
    

    /* NAVBAR */
    .navbar {
      background-color: #f0f0f0;
      padding: 1rem 0;
    }
    .navbar-brand img {
      height: 60px;
    }
    .navbar-nav {
      margin: 0 auto;
    }
    .navbar-nav .nav-link {
      color: #032540;;
      font-weight: 500;
      margin: 0 10px;
      transition: color 0.3s;
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border:2px solid transparent;
    }
    .navbar-nav .nav-link:hover {
      background-color: cyan;
      border:2px solid #032540;
    }

    .btn-primary {
      background-color: #032540;
      color: #f0f8ff;
      border-color: #f0f8ff;
      transition: all 0.3s ease;
    }
    .btn-primary:hover,
    .btn-primary:focus {
      background-color: #f0f8ff;
      color: #032540;
      border-color: #032540;
    }
    .btn-cta {
      background-color: cyan;
      color: #032540;
      border: 2px solid #032540;
      border-radius: 0px;
    }
    .btn-cta:hover {
      background-color: #032540;
      color: cyan;
      border: 2px solid cyan;
      border-radius: 0px;
    }

    /* HEADER CON VIDEO DE FONDO */
#hero-header {
  position: relative;
  margin-top:102px;
  height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Imagen de fondo */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/edw_about.webp') center/cover no-repeat;
  z-index: 0;
}

/* Video de fondo */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Overlay oscuro */
#hero-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* Contenido principal */
.header-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}
.header-content p {
  font-size: 1.2rem;
  margin: 1.5rem 0 2rem;
  color: #e0e0e0;
}


    /* SECCIONES */
    section {
      padding: 80px 0;
    }

/* ===============================
   CATALOGO DE PRODUCTOS
================================= */
#catalogo {
  background-color: #f8f9fa;
}

#catalogo h2 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

#catalogo .nav-pills .nav-link {
  border: 2px solid #032540;
  color: #032540;
  background: transparent;
  font-weight: 500;
  margin: 0 6px;
  border-radius: 0;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}

#catalogo .nav-pills .nav-link.active,
#catalogo .nav-pills .nav-link:hover {
  background: cyan;
  color: #032540;
  font-weight: 700;
}

/* ---------- Cards ---------- */
.catalog-card {
  border: none;
  border-radius: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.25);
}

/* Contenedor fijo de imagen */
.catalog-imgbox {
  height: 250px;           /* altura uniforme */
  padding: 20px;           /* espacio interno equilibrado */
  background-color: #fff;
  border-bottom: 3px solid cyan;
  overflow: hidden;
}

/* Imagen fluida, mantiene proporción */
.catalog-imgbox img {
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;     /* no recorta, mantiene proporciones */
}

/* Card body */
.catalog-card .card-body {
  padding: 1.25rem;
}

.catalog-card .card-title {
  font-family: 'Oswald', sans-serif;
  color: #032540;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.catalog-card .card-text {
  font-family: 'Open Sans', sans-serif;
  color: #2b2a2a;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .catalog-imgbox {
    height: 200px;
    padding: 15px;
  }
}


    /* ===============================
       SECCIÓN NOSOTROS CON PARALLAX
    ================================ */
    #nosotros {
      background-image: url('/assets/images/edw_about.webp');
      background-size: cover;
      background-position: center;
      background-attachment: fixed; /* efecto parallax */
      background-repeat: no-repeat;
      min-height: 100vh; /* ocupa toda la altura de pantalla */
      overflow: hidden;
      display: flex;
      align-items: center; /* centra verticalmente el contenido */
    }

    #nosotros .content-box {
      background-color: rgba(255, 255, 255, 0.85);
      padding: 3rem;
      border-radius: 0.5rem;
      max-width: 700px;
    }

    /* Parallax en móviles (fallback) */
    @media (max-width: 991.98px) {
      #nosotros {
        background-attachment: scroll;
        min-height: 70vh;
      }
      #nosotros .content-box {
        margin: 2rem auto;
        text-align: center;
      }
    }

    /* SECCIÓN CONTACTO EDITORIAL */
#contacto {
  background-color: #032540;
  color: #fff;
  padding: 100px 0;
}

#contacto h2 {
  font-size: 2.5rem;
  color: cyan;
}

#contacto label {
      color:cyan;
}
  

#contacto p {
  color: #dce3ea;
  font-size: 1.05rem;
  line-height: 1.7;
}

#contacto .lead {
  font-size: 1.15rem;
  color: #ffffff;
}

.contact-form .form-control {
  background-color: transparent;
    border-radius: 0;
    border: 2px solid cyan;
    color:#f0f0f0;
}

.contact-form .form-control:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 0 0.25rem rgba(0, 180, 216, 0.25);
}
.contact-form .btn-submit {
    width: 100%;
    background-color: transparent;
    border: 2px solid cyan;
    padding: 1rem;
}
.contact-form .btn-submit:hover {
    background-color: cyan;
    border: 2px solid #032540;
    color: #032540;
}
.contact-form label,
.contact-form .btn-submit
{
    color: cyan;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px
}


/* Responsive */
@media (max-width: 767.98px) {
  #contacto {
    text-align: center;
  }
  #contacto .contact-form {
    margin-top: 2rem;
  }
}


    footer {
      min-height: 20vh;
    background-color: #737373;
    color: #ffffff;
    text-align: center;
    padding: 2rem 0 1rem 0;
    }
    .footer-links a {
      color: #f0f0f0;
      text-decoration: none;
      font-weight: 400;
      transition: color 0.3s ease, font-weight 0.3s ease;
    }

    .footer-links a:hover {
      color: cyan;
      font-weight: 700;
    }