@charset "UTF-8"; 
/* Fuentes */ 
@font-face { font-family: CenturyGothic; src: url(../fonts/Century%20Gothic); } 
@font-face { font-family: Helveticaneue; src: url(../fonts/HelveticaNeue-UltraLight.otf); } 
@font-face { font-family: HelveticaBold; src: url(../fonts/HelveticaNeueLTStd-XBlkCn.otf); } 
/* Body y colores */ 
  body { 
    background-color: #1A1A1A; 
    display: flex; 
    min-height: 100vh; 
    flex-direction: column; 
  } 
  main { flex: 1 0 auto; } 
/* Links de eventos */ 
  .labor { 
    display: flex; 
    margin-top: -120px; 
    margin-left: 84%; 
    color: black; 
    text-decoration: underline; 
  } 
/* Logos */ 
  .logo-container { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 100%; 
    padding: 20px 0; 
    box-sizing: border-box; 
  } 
  #logo { 
    width: 280px; 
    height: auto; 
    margin: 0 auto; 
  } 
/* Banderas y partner */ 
  #bandera { 
    width: 48px; 
    height: 48px; 
    display: flex; 
    margin-top: 10px; 
    margin-left: 72%; 
  } 
  #partner { 
    width: 128px; 
    height: 98px; 
    display: flex; 
    position: relative; 
    top: 100px; 
    margin-left: 10px; 
  } 
/* Parallax */ 
  .parallax-container { 
    width: 100%; 
    display: block; 
    height: 400px !important; 
  } 
  #imgbg, #plecas { 
    width: 100%; 
    height: auto; 
  } 
/* Tipografía */ 
  h4 { 
    font-family: CenturyGothic; 
    color: #FFF; 
  } 
  #ofrece { 
    font-family: Helveticaneue; 
    letter-spacing: 1px; 
    font-size: 40px; 
    margin-top: -2%; 
    text-align: right; 
  } 
/* ------------------ Cards con Grid uniforme ------------------ */ 
  .cards-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    padding: 20px 0; 
    align-items: stretch; 
  } 
/* Card */ 
  .fondoNegro { 
    display: flex; 
    flex-direction: column; 
    height: 450px; 
/* altura total de la card */ 
    overflow: hidden; 
    background-color: #000; 
    color: #FFF; 
    border-radius: 6px; 
    transition: transform 0.3s ease; 
  } 
  .fondoNegro:hover { 
    transform: translateY(-5px); 
  } 
/* Contenido dentro de la card (logo + texto) */ 
  .fondoNegro .card-content { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    padding: 10px; 
    box-sizing: border-box; 
    height: 200px; 
  /* más espacio para logos y textos */ 
  } 
  .fondoNegro .card-content p, .fondoNegro .card-content span.card-title { color: #FFF; } 
/* Logo */ 
  .fondoNegro .logoCard { 
    max-width: 80%; 
    max-height: 100px; 
    margin-bottom: 10px; 
    object-fit: contain; 
  } 
/* Imagen principal de la card */ 
  .orycoImgContainer { flex: 1; 
  /* ocupa el resto del espacio de la card */ 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: relative; 
  overflow: hidden; 
  } 
  .orycoImgContainer img.todo { 
    width: 100%;
    height: 100%; 
    object-fit: fill; 
/* fuerza a llenar todo el contenedor */ 
    display: block; 
    transition: all 0.5s ease; 
  } 
  .orycoImgContainer:hover img.todo { 
    filter: blur(3px); 
    opacity: 0.2; 
  } 
/* Texto sobre la imagen */ 
  .visitaWeb { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    color: #FFF; 
    font-size: 25px; 
    z-index: 2; 
    text-align: center; 
    pointer-events: none; 
    font-family: Helveticaneue; 
    font-weight: bold; 
  } 
/* Contenedores de texto extra */ 
  #espacio { 
    height: 200px; 
  } 
  #imagenF { 
    height: 300px; 
  } 
/* Historia y textos */ 
  .historia { 
    font-family: Helveticaneue; 
    letter-spacing: 1px; 
    font-size: 40px; 
    color: #FFF; 
    text-align: center; 
  } 
  .historiatxt { 
    font-family: Helveticaneue; 
    letter-spacing: 1px; 
    font-size: 20px; 
    color: #FFF; 
    text-align: center; 
  } 
  .llamanos { 
    font-family: Helveticaneue; 
    letter-spacing: 1px; 
    font-size: 25px; color: #FFF; 
    text-align: center; 
  } 
  .numero { 
    font-family: HelveticaBold; 
    letter-spacing: 1px; 
    font-size: 40px; 
    color: #FFF; 
    margin-left: 5%; 
  } 
/* Footer */ 
  footer { 
    background-color: #000 !important; 
    color: #FFF; 
    padding: 20px 0; 
    text-align: center; 
  } 
  footer a { 
    color: #FFF; 
    text-decoration: underline; 
  } 
/* Cards responsive */ @media (max-width: 992px) { 
/* tablets grandes */ 
  .cards-container { 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } 
    .fondoNegro { height: 400px; } 
    .fondoNegro .card-content { height: 170px; } } 
    @media (max-width: 600px) { 
  /* celulares */ 
  .cards-container { grid-template-columns: 1fr; } 
  .fondoNegro { height: 450px; } 
  .fondoNegro .card-content { height: 200px; } }