@import "https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap";

/* src/styles.css */
:root {
  --color-primario: #0C2A6C;
  --color-secundario: #1B8FD6;
  --blanco: #FFFFFF;
  --gris-claro: #F8F9FA;
  --gris: #6C757D;
  --azul-claro: #E8F4F8;
  --azul-desactivado: #A1B0D0;
  --azul-texto: #0C2A6C;
  --blanco-opaco: #D9D9D9;
  --color-footer: #5074C5;
  --color-fondo: #C4C4C4;
}
@font-face {
  font-family: "Lexend";
  src: url("./media/Lexend-VariableFont_wght.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Pink Sunset";
  src: url("./media/PinkSunset-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
}
body {
  font-family:
    "Lexend",
    "Arial",
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--gris-claro);
  width: 100%;
  max-width: 100%;
}
.contenedor {
  width: 100%;
  max-width: 150rem;
  margin: 0 auto;
}
.seccion-mas-proyectos {
  padding: 4rem 0;
  text-align: center;
}
.grid-mas-proyectos {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 95.75rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.tarjeta-obra-mini {
  background-color: var(--blanco-opaco);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px var(--sombra);
  position: relative;
  width: 38.75rem;
  height: 19.75rem;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.tarjeta-obra-mini h3 {
  color: var(--color-primario);
  font-family:
    "Lexend",
    Arial,
    sans-serif;
  font-size: clamp(0.8rem, 3.2vw, 2rem);
  font-weight: 600;
  line-height: 2.8125rem;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 32.25rem;
  padding: 0 1rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (max-width: 768px) {
  .grid-mas-proyectos {
    grid-template-columns: 1fr;
  }
  .tarjeta-obra-mini {
    width: 100%;
    height: auto;
    padding: 1.5rem 1rem;
  }
  .tarjeta-obra-mini h3 {
    font-size: clamp(1rem, 4vw, 1.25rem);
    line-height: 1.4;
    max-width: 100%;
    margin-bottom: 0.75rem;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
