@font-face {
  font-family: "Aileron";
  src: url("../fonts/Aileron-Regular-webfont.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Aileron";
  src: url("../fonts/Aileron-Light-webfont.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "Aileron";
  src: url("../fonts/Aileron-SemiBold-webfont.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Aileron";
  src: url("../fonts/Aileron-Bold-webfont.woff") format("woff");
  font-weight: 700;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

body {
  background: #EFECE5;
  max-width: 1920px;
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.1em;
}

h2 {
  color: #BF533B;
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #BF533B;
}

h3 {
  color: #BF533B;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.header {
  background: #EFECE5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
}

.bookitit {
  position: fixed;
  right: -300px;
  bottom: 220px;
  z-index: 999;
  transition: right 1s ease;
}
.bookitit a.toggle-form {
  background: #EFECE5;
  color: #BF533B;
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
  transform: rotate(-90deg);
  display: block;
  width: fit-content;
  position: absolute;
  left: 2px;
  bottom: 20px;
  transform-origin: bottom left;
  border: 2px solid #BF533B;
  letter-spacing: 1px;
  transition: all 0.6s ease;
}
.bookitit a.toggle-form:hover {
  background: #222222;
}
.bookitit a.toggle-form.close {
  display: none;
}
.bookitit .form-wrapper {
  background: white;
  padding: 20px;
  width: 300px;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 2s ease;
  z-index: 1000;
}
.bookitit.open {
  right: 0;
}
.bookitit.open a.toggle-form.close {
  display: block;
}
.bookitit.open a.toggle-form.open {
  display: none;
}

.sticky-form {
  position: fixed;
  right: -300px;
  bottom: 100px;
  z-index: 999;
  transition: right 1s ease;
}
.sticky-form a.toggle-form {
  background: #BF533B;
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
  transform: rotate(-90deg);
  display: block;
  width: fit-content;
  position: absolute;
  left: 2px;
  bottom: 20px;
  transform-origin: bottom left;
  border: 2px solid #EFECE5;
  letter-spacing: 1px;
  transition: all 0.6s ease;
}
.sticky-form a.toggle-form:hover {
  background: #222222;
}
.sticky-form a.toggle-form.close {
  display: none;
}
.sticky-form .form-wrapper {
  background: white;
  padding: 20px;
  width: 300px;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 2s ease;
  z-index: 1000;
}
.sticky-form .form-wrapper input[type=text], .sticky-form .form-wrapper input[type=email], .sticky-form .form-wrapper input[type=tel], .sticky-form .form-wrapper select {
  width: 100%;
  padding: 5px 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.sticky-form .form-wrapper input[type=submit] {
  margin-top: 20px;
  background: #BF533B;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.sticky-form .form-wrapper input[type=submit]:hover {
  background: #222222;
}
.sticky-form .form-wrapper label {
  font-size: 0.75rem;
  line-height: 1.75em;
}
.sticky-form .form-wrapper .politica {
  font-size: 0.75rem;
  color: #666;
  margin-top: -3px;
}
.sticky-form.open {
  right: 0;
}
.sticky-form.open a.toggle-form.close {
  display: block;
}
.sticky-form.open a.toggle-form.open {
  display: none;
}

.footer {
  background: #BF533B;
  text-align: center;
  padding: 50px 35px;
}
.footer img {
  width: 210px;
}
.footer a {
  color: #EFECE5;
  text-decoration: none;
}
.footer .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 30px;
}
.footer .content div.contacto {
  color: #EFECE5;
  display: flex;
  flex-direction: row;
  text-align: left;
  padding-right: 10%;
  font-size: 1.5rem;
}
.footer .content div.contacto p {
  font-family: "Aileron";
  line-height: 2em;
  margin-bottom: 20px;
  font-weight: 300;
}
.footer .content div.contacto > p {
  font-weight: 500;
  margin-right: 60px;
}
.footer .content div.contacto img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.footer .bottom-bar {
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid #EFECE5;
  padding: 30px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #EFECE5;
}
.footer .bottom-bar ul li {
  list-style-type: none;
  display: inline;
  margin-right: 20px;
}
.footer .bottom-bar ul li:last-child {
  margin-right: 0;
}
.footer .bottom-bar ul li a {
  color: #EFECE5;
  text-decoration: none;
  transition: all 0.6s ease;
}
.footer .bottom-bar ul li a:hover {
  color: #222222;
}

.nav {
  display: flex;
  gap: 20px;
}
.nav button {
  display: none;
}
.nav ul li {
  display: inline;
  list-style-type: none;
  position: relative;
  margin: 0 20px;
}
.nav ul li a {
  font-weight: 500;
  font-size: 1.15rem;
  color: #BF533B;
  text-decoration: none;
  padding: 10px 0 5px 0;
  transition: all 0.6s ease;
}
.nav ul li a:last-child {
  margin-right: 0;
}
.nav ul li a:hover {
  color: #222222;
}
.nav ul li a.active {
  color: #222222;
  border-bottom: 2px solid #BF533B;
}
.nav ul li a.cita {
  border: 2px solid #BF533B;
  border-radius: 10px;
  padding: 10px 20px;
}
.nav ul.submenu {
  display: none;
  position: absolute;
  background: #EFECE5;
  padding: 10px 20px;
  border-radius: 10px;
  top: 24px;
  left: -10px;
  z-index: 999;
  width: max-content;
}
.nav ul.submenu li {
  display: block;
  margin: 10px 0;
}
.nav ul.submenu li a {
  font-weight: 300;
  padding: 0;
  font-size: 1rem;
}
.nav ul.submenu li a:hover {
  color: #BF533B;
}
.nav ul.submenu li a.active {
  color: #222222;
  border: 0;
}
.nav ul li:hover .submenu {
  display: block;
}

section.hero {
  background: #BF533B url("../images/lineas-negocio.jpg") center/cover no-repeat;
  color: #EFECE5;
  padding: 60px 20px;
  width: 100%;
  aspect-ratio: 16/6;
  position: relative;
}
section.hero .content {
  position: absolute;
  left: 0;
  bottom: 50px;
  max-width: 45%;
  font-size: 1.5rem;
  line-height: 1.2em;
  font-weight: 400;
  padding: 40px;
  background: rgba(0, 0, 0, 0.2);
}
section.hero .content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
section.hero .content p {
  margin-bottom: 10px;
}
section.hero .content .button {
  display: block;
  width: fit-content;
  margin-top: 20px;
}

.card {
  display: flex;
  flex-direction: column;
}

.button {
  font-size: 1.25rem;
  color: #BF533B;
  padding: 10px 30px;
  width: fit-content;
  border-radius: 10px;
  text-decoration: none;
  background: #BF533B;
  color: #EFECE5;
  transition: all 0.6s ease;
  font-family: "Aileron";
  font-weight: 300;
  letter-spacing: 1px;
}
.button.dark {
  background: #222222;
  color: #EFECE5;
}
.button:hover {
  background: #EFECE5;
  color: #BF533B;
}
.button.outlined {
  background: transparent;
  color: #BF533B;
  border: 1px solid #BF533B;
}
.button.outlined:hover {
  background: #BF533B;
  color: #EFECE5;
}

html {
  font-size: 14px;
}

body {
  font-family: "Aileron";
  color: #222222;
}

.promociones .hero {
  padding: 0;
  overflow: hidden;
}
.promociones .hero .slider {
  width: 100%;
  height: 100%;
}
.promociones .hero .slider .carousel-cell {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.promociones .hero .slider .carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.lineas-negocio {
  padding: 3rem 0;
}
section.lineas-negocio .lineas {
  padding: 40px 20px 20px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
section.lineas-negocio .lineas .card {
  font-size: 1.25rem;
  line-height: 1.3em;
  height: 100%;
  position: relative;
  padding-bottom: 80px;
}
section.lineas-negocio .lineas .card h3 {
  margin-bottom: 15px;
}
section.lineas-negocio .lineas .card .img-wrapper {
  width: 100%;
  aspect-ratio: 16/10;
  transition: all 0.6s ease;
  overflow: hidden;
  margin-bottom: 40px;
}
section.lineas-negocio .lineas .card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}
section.lineas-negocio .lineas .card:hover img {
  transform: scale(1.1);
}
section.lineas-negocio .lineas .card .button {
  margin-top: 40px;
  position: absolute;
  bottom: 0;
}

.lineas-negocio section.hero {
  background: #BF533B url("../images/hero_01.jpg") center/cover no-repeat;
}
.lineas-negocio section.hero h1 {
  font-size: 3rem;
}

.cooperativas section.hero {
  background: #BF533B url("../images/cooperativas.jpg") center/cover no-repeat;
}
.cooperativas section.hero h1 {
  font-size: 3rem;
}

.vivienda-protegida section.hero {
  background: #BF533B url("../images/vivienda-protegida.jpg") center/cover no-repeat;
}
.vivienda-protegida section.hero h1 {
  font-size: 3rem;
}

.promocion-propia section.hero {
  background: #BF533B url("../images/vivienda-libre.jpg") center/cover no-repeat;
}
.promocion-propia section.hero h1 {
  font-size: 3rem;
}

.contacto section.hero {
  background: #BF533B url("../images/vivienda-libre.jpg") center/cover no-repeat;
}
.contacto section.hero h1 {
  font-size: 3rem;
}

section.promociones {
  padding: 60px 0 0 0;
}
section.promociones .promo {
  padding: 25px 0 0 0;
  display: flex;
  gap: 50px;
}
section.promociones .promo .img-wrapper {
  width: 50%;
  aspect-ratio: 16/8;
  transition: all 0.6s ease;
  overflow: hidden;
  margin-bottom: 40px;
}
section.promociones .promo .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
  object-position: center top;
}
section.promociones .promo .content-wrapper {
  width: 50%;
  line-height: 1.5em;
  font-size: 1.375rem;
}
section.promociones .promo .content-wrapper p {
  margin-bottom: 1.5rem;
}

section.ventajas {
  padding: 80px 0;
}
section.ventajas .container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-gap: 75px;
}
section.ventajas .claim {
  font-size: 1.5rem;
  line-height: 1.3em;
}
section.ventajas .claim h2 {
  font-size: 3.25rem;
  color: #222222;
  font-weight: bold;
  border: 0;
  line-height: 1.1em;
}
section.ventajas .ventajas-list {
  margin-bottom: 40px;
  font-size: 1.5rem;
  line-height: 1.3em;
}
section.ventajas .ventajas-list .item {
  margin: 0 0 50px 0;
}

.cooperativas .ventajas-list ul li {
  list-style-type: none;
  margin-bottom: 1rem;
  line-height: 1.25em;
}
.cooperativas .ventajas-list ul li strong {
  color: #BF533B;
  font-family: "Aileron";
  font-weight: 700;
}
.cooperativas .ventajas-list p {
  margin-bottom: 1.5rem;
}

.about-us .ventajas {
  padding: 80px 0;
}
.about-us .ventajas .valores ul {
  margin-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.about-us .ventajas .valores ul li {
  list-style-type: none;
  border: 2px solid #BF533B;
  display: inline-block;
  padding: 20px;
  text-align: center;
  font-size: 1.5rem;
}
.about-us .ventajas .valores ul li span {
  color: #BF533B;
  display: block;
}
.about-us .ventajas .team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.about-us .ventajas .team .person {
  position: relative;
}
.about-us .ventajas .team .person .content {
  position: absolute;
  bottom: 20px;
  left: 10px;
  width: calc(100% - 20px);
  background: #EFECE5;
  padding: 10px 20px;
  border-radius: 5px;
}
.about-us .ventajas .team .person .content h4 {
  font-size: 1.25rem;
  font-weight: 500;
}
.about-us .ventajas .team .person .content p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
}
.about-us .ventajas .team .person img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 5px;
  border-radius: 5px;
}

.promociones .char-wrapper {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #BF533B;
}
.promociones .char-wrapper .item {
  color: #BF533B;
  width: 16.5%;
  text-align: center;
  flex: 1;
  font-size: 1rem;
  line-height: 1.3em;
  padding: 20px 0;
  border-right: 1px solid #BF533B;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promociones .char-wrapper .item:last-child {
  border-right: 0;
}
.promociones .char-wrapper .item img {
  margin-right: 20px;
  width: 30px;
  filter: invert(55%) sepia(9%) saturate(3486%) hue-rotate(323deg) brightness(74%) contrast(103%);
}
.promociones .char-wrapper .item:hover {
  background: #BF533B;
  color: #EFECE5;
}
.promociones .char-wrapper .item:hover img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(3%) saturate(752%) hue-rotate(322deg) brightness(99%) contrast(89%);
}
.promociones .status {
  width: 100%;
  border-top: 4px solid #BF533B;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  justify-content: space-between;
  gap: 0;
  margin: 40px 0 10px 0;
}
.promociones .status li {
  list-style-type: none;
  display: inline;
  font-size: 1.15rem;
  line-height: 1.3em;
  padding: 30px 0;
  color: #BF533B;
  text-align: center;
  position: relative;
}
.promociones .status li:before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  border: 4px solid #BF533B;
  background: #EFECE5;
  position: absolute;
  top: -25px;
  left: calc(50% - 20px);
  border-radius: 25px;
}
.promociones .status li.active:before {
  background: #BF533B;
}
.promociones .gallery {
  padding: 80px 0 0 0;
}
.promociones .gallery .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.promociones .gallery .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promociones .gallery .container img:nth-of-type(2) {
  margin-top: -30px;
}
.promociones .gallery .container img:nth-of-type(4) {
  margin-top: 30px;
}
.promociones .main-content {
  padding: 80px 0;
}
.promociones .main-content h3.promo-status {
  font-family: "Aileron";
  font-weight: 300;
  font-size: 1.25rem;
}
.promociones .main-content h2 {
  border: 0;
}
.promociones .main-content .content-wrapper {
  display: flex;
  gap: 150px;
  line-height: 1.5em;
  font-size: 1.375rem;
}
.promociones .main-content .content-wrapper p {
  margin-bottom: 1.5rem;
}
.promociones .main-content .content-wrapper .content-left {
  width: 60%;
}
.promociones .main-content .content-wrapper .content-right {
  width: 40%;
}
.promociones .main-content .content-wrapper .content-right h3 {
  margin-bottom: 30px;
}
.promociones .main-content .content-wrapper .content-right ul {
  margin-left: 2rem;
}
.promociones .main-content .content-wrapper .content-right ul li strong {
  color: #BF533B;
  font-family: "Aileron";
  font-weight: 700;
}
.promociones .main-content .content-wrapper .content-right ul li {
  margin-bottom: 1rem;
}
.promociones .downloads {
  background: #BF533B;
  margin-bottom: 5rem;
  color: #EFECE5;
}
.promociones .downloads .planos-wrapper {
  padding: 30px 0;
}
.promociones .downloads .planos-wrapper .container {
  display: flex;
  gap: 100px;
}
.promociones .downloads .planos-wrapper .container .planos-left h2 {
  font-size: 2.5rem;
  color: #EFECE5;
  font-weight: bold;
}
.promociones .downloads .planos-wrapper .container .planos-right {
  width: 70%;
  line-height: 1.5em;
}
.promociones .downloads .planos-wrapper .container .planos-right h3 {
  font-size: 1.25rem;
  color: #EFECE5;
  border-top: 1px solid #EFECE5;
  padding-top: 30px;
  margin-bottom: 40px;
}
.promociones .downloads .planos-wrapper .container .planos-right h3 a {
  float: right;
  color: #EFECE5;
  text-decoration: none;
  padding: 5px 20px;
  border: 1px solid #EFECE5;
  border-radius: 20px;
  font-size: 1rem;
  margin-top: -5px;
}
.promociones .downloads .planos-wrapper .container .planos-right table {
  border: 1px solid #222222;
  width: 100%;
}
.promociones .downloads .planos-wrapper .container .planos-right table tr.portal2 td, .promociones .downloads .planos-wrapper .container .planos-right table tr.portal3 td, .promociones .downloads .planos-wrapper .container .planos-right table tr.portal4 td {
  border-top: 6px solid #222222;
}
.promociones .downloads .planos-wrapper .container .planos-right table tr.fila-oculta {
  display: none;
}
.promociones .downloads .planos-wrapper .container .planos-right table.tabla-planos.abierta .fila-oculta {
  display: table-row;
}
.promociones .downloads .planos-wrapper .container .planos-right table th {
  padding: 3px 15px;
  background: #222222;
  text-align: left;
  text-transform: uppercase;
}
.promociones .downloads .planos-wrapper .container .planos-right table td {
  padding: 3px 15px;
  border-bottom: 1px solid #BF533B;
  text-align: left;
}
.promociones .downloads .planos-wrapper .container .planos-right table td a {
  color: #EFECE5;
  text-decoration: none;
}
.promociones .downloads .planos-wrapper .container .planos-right table tr:nth-of-type(odd) {
  background: #EFECE5;
}
.promociones .downloads .planos-wrapper .container .planos-right table tr:nth-of-type(odd) td, .promociones .downloads .planos-wrapper .container .planos-right table tr:nth-of-type(odd) a {
  color: #BF533B;
}
.promociones .downloads .planos-wrapper .container .planos-right .ver-mas-wrapper {
  text-align: center;
  margin-top: 20px;
}
.promociones .downloads .planos-wrapper .container .planos-right .link-ver-mas {
  background: none;
  border: none;
  color: #EFECE5;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s;
}
.promociones section.ventas {
  padding: 80px 0;
}
.promociones section.ventas .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
.promociones section.ventas .container .oficina-ventas {
  padding: 40px;
  background: #222222;
  color: #EFECE5;
  font-size: 1.3rem;
}
.promociones section.ventas .container .oficina-ventas h2 {
  color: #EFECE5;
  margin-bottom: 50px;
}
.promociones section.ventas .container .oficina-ventas p {
  margin-bottom: 25px;
  line-height: 1.3em;
}
.promociones section.ventas .container .oficina-ventas .button-container {
  margin-top: 50px;
}
.promociones section.ventas .container .oficina-ventas .button-container a {
  margin-right: 30px;
}
.promociones section.details {
  padding: 80px 0;
}
.promociones section.details .container {
  display: flex;
  gap: 100px;
}
.promociones section.details .container .image-wrapper {
  width: 50%;
  line-height: 1.5em;
}
.promociones section.details .container .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promociones section.details .container .content-wrapper {
  width: 50%;
  line-height: 1.5em;
}
.promociones section.details .container .content-wrapper h2 {
  line-height: 1.1em;
  margin-bottom: 30px;
  border-bottom: 0;
}
.promociones section.details .container .content-wrapper p, .promociones section.details .container .content-wrapper li {
  margin-bottom: 1.5rem;
  font-size: 1.375rem;
  line-height: 1.25em;
}
.promociones section.details .container .content-wrapper ul {
  margin-left: 1.5rem;
}
.promociones section.details .container .content-wrapper ul li strong {
  color: #BF533B;
  font-family: "Aileron";
  font-weight: 700;
}

.contacto .form-wrapper-section {
  padding: 80px 0;
}
.contacto form {
  display: flex;
}
.contacto form .left, .contacto form .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
  padding: 0 3rem;
}
.contacto form label {
  font-size: 1rem;
  font-weight: 300;
  display: block;
  line-height: 1.5rem;
}
.contacto form input[type=text], .contacto form input[type=email], .contacto form input[type=tel], .contacto form select, .contacto form textarea {
  width: 100%;
  padding: 10px 0;
  border: 0;
  background: transparent;
  border-bottom: 1px solid #222222;
  border-radius: 0px;
  font-size: 1.25rem;
  font-family: "Aileron";
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 400;
  color: #BF533B;
}
.contacto form input[type=text]:focus, .contacto form input[type=email]:focus, .contacto form input[type=tel]:focus, .contacto form select:focus, .contacto form textarea:focus {
  border-color: #BF533B;
  outline: none;
}
.contacto form textarea {
  resize: vertical;
}
.contacto form input[type=submit] {
  background: #BF533B;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
  font-size: 1.25rem;
}
.contacto form input[type=submit]:hover {
  background: #222222;
}
.contacto form input[type=submit] {
  margin-top: 20px;
}
.contacto form .politica {
  display: inline;
}
.contacto form .politica a {
  color: #BF533B;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 10px;
}
.contacto form .politica a:hover {
  color: #222222;
}

.legal {
  padding: 40px 0;
}
.legal p {
  font-size: 1.25rem;
  line-height: 1.4em;
}
.legal h2 {
  border: 0;
  margin-top: 30px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
    padding-bottom: 5px;
    border-width: 1px;
  }
  h3 {
    font-size: 1.75rem;
  }
  .container {
    padding: 0;
  }
  .button {
    font-size: 1.25rem;
    padding: 5px 15px;
  }
  .header {
    padding: 20px 20px 17px 20px;
  }
  .header .logo {
    max-width: 70%;
  }
  .header .nav .nav-toggle {
    display: block;
    background: url("../images/menu.svg") center/contain no-repeat;
    width: 30px;
    height: 30px;
    border: 0;
  }
  .header .nav ul {
    display: none;
  }
  .header .nav.open .nav-toggle {
    background: url("../images/close.svg") center/contain no-repeat;
    width: 30px;
    height: 30px;
    padding: 5px;
  }
  .header .nav.open > ul {
    display: block;
    position: absolute;
    right: 20px;
    top: 50px;
    background: #EFECE5;
    z-index: 999999;
    padding: 20px;
  }
  .header .nav.open > ul li {
    display: block;
    margin: 10px 20px;
    text-align: right;
  }
  .header .nav.open > ul li a {
    font-size: 1.25rem;
    padding-bottom: 0;
  }
  .header .nav.open > ul li a.cita {
    padding: 0;
    border: 0;
  }
  .header .nav.open > ul li .submenu {
    position: relative;
    display: block;
    top: initial;
    left: initial;
    background: none;
    padding: 5px 0 0 0;
    width: initial;
  }
  .header .nav.open > ul li .submenu li {
    margin: 0;
    margin-bottom: 4px;
  }
  .header .nav.open > ul li .submenu li a {
    font-size: 1.15rem;
  }
  section.hero {
    aspect-ratio: 16/20;
  }
  section.hero .content {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  section.hero .content h1 {
    font-size: 2rem;
  }
  .home section.lineas-negocio {
    padding: 40px 0 0 0;
  }
  .home section.lineas-negocio .lineas {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }
  .home section.lineas-negocio .lineas .card {
    font-size: 1.25rem;
    padding-bottom: 30px;
  }
  .home section.lineas-negocio .lineas .card .img-wrapper {
    margin-bottom: 20px;
  }
  .home section.lineas-negocio .lineas .card .button {
    margin-top: 20px;
    position: relative;
  }
  .home section.lineas-negocio .lineas .card h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
  section.promociones .promo {
    flex-direction: column;
    gap: 15px;
  }
  section.promociones .promo .img-wrapper {
    width: 100%;
    margin-bottom: 0;
  }
  section.promociones .promo .content-wrapper {
    width: 100%;
  }
  .about-us section.ventajas {
    padding: 40px 0;
  }
  .about-us section.ventajas .container {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .about-us section.ventajas .claim h2 {
    font-size: 2rem;
  }
  .about-us section.ventajas .team {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  .about-us section.ventajas .team img {
    width: 100%;
  }
  section.lineas-negocio .lineas {
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  section.lineas-negocio .lineas .card .img-wrapper {
    margin-bottom: 15px;
  }
  section.lineas-negocio .lineas .card h3 {
    margin-bottom: 10px;
    font-size: 1.75rem;
  }
  section.lineas-negocio .lineas .card .button {
    position: relative;
    margin-top: 20px;
  }
  .cooperativas section.ventajas, .vivienda-protegida section.ventajas, .promocion-propia section.ventajas {
    padding: 40px 0;
  }
  .cooperativas section.ventajas .container, .vivienda-protegida section.ventajas .container, .promocion-propia section.ventajas .container {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .cooperativas section.ventajas .claim h2, .vivienda-protegida section.ventajas .claim h2, .promocion-propia section.ventajas .claim h2 {
    font-size: 2rem;
  }
  .cooperativas section.ventajas .ventajas-list, .vivienda-protegida section.ventajas .ventajas-list, .promocion-propia section.ventajas .ventajas-list {
    margin-bottom: 20px;
    font-size: 1.25rem;
  }
  .cooperativas section.ventajas .ventajas-list h3, .vivienda-protegida section.ventajas .ventajas-list h3, .promocion-propia section.ventajas .ventajas-list h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }
  .promociones .char-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .promociones .char-wrapper .item {
    width: 100%;
    padding: 20px;
    border: none;
    border-bottom: 1px solid #BF533B;
    font-size: 1rem;
  }
  .promociones .char-wrapper .item:nth-child(odd) {
    border-right: 1px solid #BF533B;
  }
  .promociones .char-wrapper .item img {
    margin-bottom: 10px;
    width: 60px;
  }
  .promociones .char-wrapper .item:hover {
    background: #BF533B;
    color: #EFECE5;
  }
  .promociones .char-wrapper .item:hover img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(3%) saturate(752%) hue-rotate(322deg) brightness(99%) contrast(89%);
  }
  .promociones .gallery .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .promociones .gallery .container img {
    margin-top: 0 !important;
  }
  .promociones .status {
    grid-template-columns: repeat(8, 12.5%);
    margin: 50px 0 40px 0;
    padding-top: 10px;
  }
  .promociones .status li {
    padding: 5px 0;
    font-size: 0.75rem;
  }
  .promociones .status li::before {
    width: 20px;
    height: 20px;
    border: 2px solid #BF533B;
    top: -25px;
    left: calc(50% - 10px);
    border-radius: 20px;
  }
  .promociones .status li:nth-of-type(odd) {
    padding-top: 25px;
  }
  .promociones .main-content {
    padding: 40px 0;
  }
  .promociones .main-content .content-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .promociones .main-content .content-wrapper .content-left, .promociones .main-content .content-wrapper .content-right {
    width: 100%;
  }
  .promociones .downloads {
    margin-bottom: 2rem;
  }
  .promociones .downloads .planos-wrapper .container {
    flex-direction: column;
    gap: 20px;
  }
  .promociones .downloads .planos-wrapper .container .planos-left {
    width: 100%;
    font-size: 1.35rem;
    line-height: 1.3em;
  }
  .promociones .downloads .planos-wrapper .container .planos-right {
    width: 100%;
  }
  .promociones .downloads .planos-wrapper .container .planos-right ul {
    margin-left: 0;
  }
  .promociones .downloads .planos-wrapper .container .planos-right ul li {
    display: flex;
    flex-direction: column;
  }
  .promociones .downloads .planos-wrapper .container .planos-right ul li a {
    width: fit-content;
    margin-top: 5px;
    font-size: 0.85rem;
  }
  .promociones section.ventas .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .promociones section.ventas .container .oficina-ventas {
    padding: 20px;
  }
  .promociones section.ventas .container .oficina-ventas .button-container {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
  .promociones section.ventas .container .oficina-ventas .button-container a {
    margin-top: 20px;
  }
  .promociones section.details {
    padding: 40px 0;
  }
  .promociones section.details .container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .promociones section.details .container .content-wrapper, .promociones section.details .container .image-wrapper {
    width: 100%;
  }
  .contacto form {
    flex-direction: column;
  }
  .contacto form .left, .contacto form .right {
    width: 100%;
    padding: 0;
  }
  .contacto form input[type=submit] {
    align-self: center;
  }
  .footer .content {
    flex-direction: column;
  }
  .footer .content div.contacto {
    flex-direction: column;
    font-size: 1.25rem;
  }
  .footer .content div.contacto p {
    line-height: 1.75rem;
  }
  .footer img {
    max-width: 80%;
    margin-bottom: 30px;
  }
  .footer .bottom-bar {
    flex-direction: column;
  }
  .footer .bottom-bar .menu-legal li {
    display: block;
    margin-top: 10px;
  }
}
.flickity-prev-next-button.next:focus, .flickity-prev-next-button.previous:focus {
  box-shadow: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

/*# sourceMappingURL=styles.css.map */
