body,
html {
  margin: 0;
  padding: 0;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
textarea {
  font-family: "Montserrat", Arial, sans-serif;
}

.full-image-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  min-height: 350px;
  max-height: 600px;
  height: 50vw;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-image-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-intro {
  position: relative;
  background: #0a4265;
  min-height: 170px;
  padding: 88px 0;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.gallery-intro-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
  text-align: center;
}

.gallery-intro-content p {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.36;
  font-weight: 400;
  margin: 0;
  padding: 0 22px;
  letter-spacing: -0.3px;
}

.manual-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f3f3;
  padding: 40px 0;
  gap: 16px;
}

.manual-gallery-viewport {
  width: 980px; /* Para 3 imágenes grandes */
  max-width: 98vw;
  overflow: hidden;
}

.manual-gallery-track {
  display: flex;
  gap: 32px;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.manual-gallery-track img {
  width: 300px;
  height: 390px;
  object-fit: cover;
  border-radius: 8px;
  background: #e2e2e2;
  flex-shrink: 0;
}

.gallery-arrow {
  background: #fff;
  color: #0a72bb;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 42px;
  height: 42px;
  cursor: pointer;
  opacity: 0.92;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.gallery-arrow:disabled {
  opacity: 0.4;
  cursor: default;
}
.testimonials-blue-section {
  background: #0a72bb;
  padding: 48px 0 46px 0;
  text-align: center;
}

.testimonials-blue-section h2 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 32px;
  color: #fff;
  letter-spacing: -1px;
}

.testimonials-blue-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.testimonial-blue-card {
  background: #f4f4f4;
  color: #222;
  border-radius: 10px;
  padding: 32px 24px;
  max-width: 320px;
  min-width: 230px;
  font-size: 1.3rem;
  line-height: 1.4;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.07);
  text-align: center;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-blue-name {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  font-size: 1.09em;
}
.cta-transform-section {
  position: relative;
  width: 100%;
  min-height: 340px;
  max-height: 400px;
  height: 32vw;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.cta-transform-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cta-transform-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.67) 32%,
    rgba(0, 0, 0, 0.04) 100%
  );
  z-index: 2;
}

.cta-transform-content {
  position: relative;
  z-index: 3;
  color: #033e66;
  max-width: 700px;
  padding: 52px 0 52px 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: left;
}

.cta-transform-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.05;
}

.cta-transform-btn {
  display: inline-block;
  background: #0060ad;
  color: #ffffff;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.09);
}

.cta-transform-btn:hover {
  background: #0a72bb;
  color: #fff;
}

@media (max-width: 700px) {
  .full-image-section {
    aspect-ratio: 16/12;
    min-height: 140px;
    max-height: 320px;
  }
  .manual-gallery-viewport {
    width: 432px; /* 2*200 + 1*32 gap */
  }
  .manual-gallery-track img {
    width: 200px;
    height: 250px;
  }
  .manual-gallery-track {
    gap: 32px;
  }
  .manual-gallery-viewport {
    width: 90vw;
    min-width: 0;
  }
  .manual-gallery-track img {
    width: 90vw;
    min-width: 0;
    height: 180px;
  }
  .manual-gallery-track {
    gap: 0;
  }
  .manual-gallery {
    padding: 16px 0;
  }
  .full-image-section {
    aspect-ratio: 16/12;
    min-height: 140px;
    max-height: 320px;
  }
  .gallery-intro-content p {
    font-size: 1rem;
    padding: 0 4vw;
  }
  .bricks-bg {
    width: 90px;
    background-size: 35px 35px;
  }
  .testimonials-blue-grid {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 0 6vw;
  }
  .testimonials-blue-section h2  {
    font-size: 2rem;
  }
  .testimonial-blue-card {
    max-width: 98vw;
  }
  .cta-transform-section {
    height: auto;
    min-height: 300px;
    max-height: unset;
  }
  .cta-transform-content {
    padding: 50px;
    max-width: 97vw;
  }
  .cta-transform-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  .cta-transform-btn {
    font-size: 1rem;
    padding: 9px 16px;
  }
}
