body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-top: 80px;
}
/* HERO */
.main-icon {
  width: 150px;
  display: block;
  margin: auto;
  margin-bottom: 5vh;

  position: relative;
  top: 36%; /* ajusta 50% → 52% aprox */
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 150px;
  width: 150px;

  padding: 12px;
  margin-right: 15px;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-shrink: 0;
}
h1,
h2,
h3 {
  letter-spacing: 1px;
}

section {
  scroll-margin-top: 80px;
}

.text-shadow {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/*  FONTS    */
.mansalva-regular {
  font-family: "Mansalva", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.navbar-brand svg {
  height: 40px;
  width: auto;
  display: block;
}

/* .custom-navbar {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: all 0.3s ease;
} */
.custom-navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.custom-navbar.hide {
  transform: translateY(-100%);
}

/* cuando haces scroll */
.custom-navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-card {
  transition: all 0.3s ease;
  background: white;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* PROJECTS */

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.project-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* Gallery */

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition:
    transform 0.4s ease,
    filter 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.gallery-item img {
  height: auto;
}

/* WEBFLOW */
/* GALERÍA */
.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

/* hover elegante */
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.92);
}

/* SCROLL ANIMATION BASE */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* ABOUT */
.last-section {
  position: relative;
  overflow: hidden;
}

.last-section::before {
  content: "";

  position: absolute;
  width: 800px;
  height: 800px;

  left: 20px;
  bottom: -160px;

  background: url("../img/logos/cls-transparent.png") no-repeat center;
  background-size: contain;

  opacity: 1;

  /* filter: blur(2px); */
  filter: none;

  pointer-events: none;

  z-index: 0;

  mask-image: radial-gradient(circle, black 35%, transparent 90%);

  -webkit-mask-image: radial-gradient(circle, black 35%, transparent 90%);

  transform: translateY(var(--logo-offset, 0px));
}

.last-section > .container {
  position: relative;
  z-index: 2;
}
/* CONTACT */

.contact-form {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #ddd;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.15);
}

.bg-cls {
  background-color: rgba(119, 138, 111, 1);
  /*
  yellow #b3873a
  46, 85, 66
  119, 138, 111 */
}
.bg-cls-y {
  background-color: #b3873a;
  /*
  yellow #b3873a
  46, 85, 66
  119, 138, 111 */
}
.button-y {
  background-color: #b3873a;
  border: #b3873a;
  color: white;
  transition: all 0.3s ease;
}

.button-y:hover {
  background-color: #a57c34;
  transform: translateY(-2px);
  color: white;
}
.text-y {
  color: #b3873a;
}

.btn-cls {
  background-color: #778a6f; /* tu color */
  color: white;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-cls:hover {
  background-color: #667a5f; /* un poco más oscuro */
  color: white;
}

.btn-cls:active {
  background-color: #56664f;
}

.btn-cls:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.4);
}

.btn-cls {
  border-radius: 8px;
  transition: all 0.25s ease;
}

.btn-cls:hover {
  transform: translateY(-2px);
}

.icon {
  width: 35px;
  height: 35px;
  margin: 30px 10px;
  color: #b3873a; /* #b3873a amarillo  , #778a6f verde. tu color */
}

.mini-icon {
  height: 26px;
  display: inline-block;
  margin-right: 5px;
}
.bullets-wrapper {
  display: flex;
}

.icon:hover {
  color: #5f7f63;
  transform: scale(1.1);
  transition: 0.2s;
}

@media (max-width: 768px) {
  .hero-statement-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-icon-wrapper {
    height: 100px;
    width: 100px;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
