.menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
header {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0 45px;
  box-sizing: border-box;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  position: relative;
  z-index: 10;
}
header .logo {
  width: 220px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
header .logo button {
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 5px;
  border: none;
  background: none;
  cursor: pointer;
}
header .logo button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .barra-tareas {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
header .barra-tareas > button:not(.whatsapp):not(.instagram) {
  position: relative;
  padding: 10px 17px;
  border: none;
  background: transparent;
  font-size: 20px;
  font-weight: 500;
  color: #5f5b56;
  cursor: pointer;
  transition: color 0.3s ease;
}
header .barra-tareas > button:not(.whatsapp):not(.instagram):hover {
  color: #1f1e1c;
}
header .barra-tareas > button:not(.whatsapp):not(.instagram):after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 1px;
  background-color: #a68a64;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
header .barra-tareas > button:not(.whatsapp):not(.instagram):hover:after {
  width: 65%;
}
header .whatsapp,
header .instagram {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
header .whatsapp img,
header .instagram img {
  width: 100%;
  height: 100%;
  max-width: 30px;
  max-height: 30px;
  object-fit: cover;
  border-radius: 50%;
}
header .whatsapp:hover,
header .instagram:hover {
  border-color: #a68a64;
  transform: translateY(-2px);
}
header .whatsapp:hover img,
header .instagram:hover img {
  transform: scale(1.08);
}
header .instagram {
  margin-left: 8px;
}
header .menu-mobile {
  display: none;
}
@media (max-width: 900px) {
  .menu-toggle:checked ~ header .barra-tareas {
    display: flex;
  }
  .menu-toggle:checked ~ header .menu-mobile span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle:checked ~ header .menu-mobile span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle:checked ~ header .menu-mobile span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  header {
    height: 80px;
    padding: 0 20px;
  }
  header .logo {
    width: auto;
    flex: 1;
  }
  header .logo button {
    width: 150px;
    height: 70px;
  }
  header .barra-tareas {
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    z-index: 30;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    padding: 18px 20px 20px;
    border: 1px solid #f1efe9;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(24, 22, 19, 0.12);
    border-radius: 16px;
  }
  header .barra-tareas > button:not(.whatsapp):not(.instagram) {
    width: 100%;
    padding: 12px 10px;
    text-align: left;
    font-size: 18px;
    border-radius: 10px;
  }
  header .barra-tareas > button:not(.whatsapp):not(.instagram):hover {
    background: #f7f3ee;
    color: #1f1e1c;
  }
  header .barra-tareas .whatsapp,
  header .barra-tareas .instagram {
    margin-left: 0;
    align-self: flex-start;
    width: 50px;
    height: 50px;
  }
  header .menu-mobile {
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px;
    border: 1px solid #ededed;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  header .menu-mobile:hover {
    border-color: #a68a64;
    box-shadow: 0 8px 20px rgba(166, 138, 100, 0.12);
  }
  header .menu-mobile span {
    width: 24px;
    height: 2px;
    display: block;
    background: #2b2926;
    border-radius: 999px;
    transition: all 0.3s ease;
  }
}
.anuncio {
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}
.anuncio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.anuncio .slides {
  position: absolute;
  inset: 0;
}
.anuncio .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fade 12s infinite;
}
.anuncio .slide:nth-child(1) {
  animation-delay: 0s;
}
.anuncio .slide:nth-child(2) {
  animation-delay: 4s;
}
.anuncio .slide:nth-child(3) {
  animation-delay: 8s;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  41% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.anuncio:hover img {
  transform: scale(1.02);
}
.anuncio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.anuncio .anuncio-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: min(720px, 80vw);
  color: #ffffff;
  text-align: center;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.anuncio .anuncio-text h1 {
  margin: 0;
  font-size: 70px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.anuncio .anuncio-text p {
  margin: 16px auto 0;
  max-width: 650px;
  font-size: 25px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
}
.accesos {
  width: 100%;
  padding: 90px 7%;
  box-sizing: border-box;
  background: #ffffff;
}
.accesos .accesos-title {
  max-width: 650px;
  margin: 0 auto 50px;
  text-align: center;
}
.accesos .accesos-title span {
  display: block;
  margin-bottom: 12px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #a68a64;
}
.accesos .accesos-title h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  color: #2b2926;
}
.accesos .accesos-title p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #77716a;
}
.accesos .accesos-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.accesos .acceso {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
  background: #222;
}
.accesos .acceso img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.accesos .acceso::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.75) 100%);
  transition: background 0.4s ease;
}
.accesos .acceso .acceso-overlay {
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 30px;
  z-index: 2;
  color: #ffffff;
}
.accesos .acceso .acceso-overlay h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}
.accesos .acceso .acceso-overlay span {
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}
.accesos .acceso .acceso-overlay span strong {
  margin-left: 8px;
  font-size: 18px;
  font-weight: 400;
  transition: margin-left 0.3s ease;
}
.accesos .acceso:hover img {
  transform: scale(1.06);
}
.accesos .acceso:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 25%, rgba(0, 0, 0, 0.85) 100%);
}
.accesos .acceso:hover .acceso-overlay span strong {
  margin-left: 15px;
}
@media (max-width: 1100px) {
  .accesos {
    padding: 72px 40px;
  }
  .accesos .accesos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .accesos .acceso {
    height: 390px;
  }
}
@media (max-width: 900px) {
  .anuncio {
    height: 480px;
  }
  .anuncio .anuncio-text {
    width: min(86vw, 620px);
    padding: 0 18px;
  }
  .anuncio .anuncio-text h1 {
    font-size: clamp(2.6rem, 6vw, 4rem);
    line-height: 1.02;
  }
  .anuncio .anuncio-text p {
    font-size: clamp(1.02rem, 2.5vw, 1.3rem);
    line-height: 1.6;
  }
  .accesos {
    padding: 70px 26px;
  }
  .accesos .accesos-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .accesos .acceso {
    height: 360px;
  }
  .accesos .acceso .acceso-overlay {
    left: 28px;
    right: 28px;
    bottom: 24px;
  }
  .nosotros {
    gap: 22px;
    padding: 30px 20px 36px;
  }
  .nosotros .n-box1 {
    min-height: 310px;
  }
  .nosotros iframe {
    min-height: 310px;
    height: 310px;
  }
  .nosotros .n-box2 {
    padding: 24px 22px;
    width: 100%;
  }
  .nosotros .n-box2 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .nosotros .n-box2 p {
    font-size: 0.98rem;
  }
  .nosotros .n-box2 .n-box2-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .nosotros .n-box2 .n-box2-buttons button {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .anuncio {
    height: 360px;
  }
  .anuncio .anuncio-text {
    width: min(88vw, 440px);
    padding: 0 8px;
  }
  .anuncio .anuncio-text h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.05;
  }
  .anuncio .anuncio-text p {
    font-size: 0.92rem;
    line-height: 1.6;
  }
  .accesos {
    padding: 54px 18px;
  }
  .accesos .accesos-title h2 {
    font-size: 30px;
  }
  .accesos .acceso {
    height: 290px;
  }
  .accesos .acceso .acceso-overlay {
    left: 22px;
    right: 22px;
    bottom: 20px;
  }
  .accesos .acceso .acceso-overlay h3 {
    font-size: 28px;
  }
  .nosotros {
    padding: 18px 14px 28px;
  }
  .nosotros .n-box1 {
    min-height: 260px;
  }
  .nosotros iframe {
    min-height: 260px;
    height: 260px;
  }
  .nosotros .n-box2 {
    padding: 20px 16px;
  }
  .nosotros .n-box2 h2 {
    font-size: 2rem;
  }
  .nosotros .n-box2 p {
    font-size: 0.93rem;
    line-height: 1.7;
  }
}
.nosotros {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.nosotros .n-box1 {
  width: 100%;
  min-height: 420px;
  height: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 8px;
}
.nosotros .n-box1 iframe {
  width: 100%;
  height: 360px;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
  display: block;
  background: #efeae3;
  aspect-ratio: 16 / 9;
}
.nosotros .n-box2 {
  width: 100%;
  min-height: 100%;
  padding: 30px 30px 35px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  color: #222222;
}
.nosotros .n-box2 h2 {
  margin: 0 0 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #2b2926;
}
.nosotros .n-box2 h2::after {
  content: "";
  display: block;
  width: 55px;
  height: 2px;
  margin-top: 18px;
  background: #a68a64;
}
.nosotros .n-box2 p {
  width: 100%;
  max-width: 100%;
  margin: 0 0 35px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: #66615b;
}
.nosotros .n-box2 .n-box2-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.nosotros .n-box2 .n-box2-buttons button {
  padding: 13px 27px;
  border: 1px solid #2b2926;
  border-radius: 2px;
  background: transparent;
  color: #2b2926;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nosotros .n-box2 .n-box2-buttons button:hover {
  background: #2b2926;
  color: #ffffff;
}
.nosotros .n-box2 .n-box2-buttons button:last-child {
  border-color: #a68a64;
  background: #a68a64;
  color: #ffffff;
}
.nosotros .n-box2 .n-box2-buttons button:last-child:hover {
  background: #8e7554;
  border-color: #8e7554;
}
.btn-wasap {
  background-color: transparent;
  color: black;
  border-color: black;
  padding: 13px 23px;
  font-size: 17px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.btn-wasap:hover {
  background-color: black;
  color: white;
}
.colaboradores {
  width: 100%;
  padding: 80px 8%;
  box-sizing: border-box;
  background: #ffffff;
}
.colaboradores .colaboradores-title {
  max-width: 650px;
  margin: 0 auto 55px;
  text-align: center;
}
.colaboradores .colaboradores-title span {
  display: block;
  margin-bottom: 12px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #a68a64;
}
.colaboradores .colaboradores-title h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  color: #2b2926;
}
.colaboradores .colaboradores-title p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #77716a;
}
.colaboradores .colaboradores-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.colaboradores .colaborador {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  box-sizing: border-box;
  border: 1px solid #eeeae5;
  background: #ffffff;
  transition: all 0.3s ease;
}
.colaboradores .colaborador img {
  max-width: 100%;
  max-height: 75px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.3s ease;
}
.colaboradores .colaborador:hover {
  border-color: #c0a47d;
}
.colaboradores .colaborador:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .colaboradores {
    padding: 65px 30px;
  }
  .colaboradores .colaboradores-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .colaboradores {
    padding: 50px 20px;
  }
  .colaboradores .colaboradores-title {
    margin-bottom: 35px;
  }
  .colaboradores .colaboradores-title h2 {
    font-size: 32px;
  }
  .colaboradores .colaboradores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .colaboradores .colaborador {
    height: 110px;
    padding: 20px;
  }
  .colaboradores .colaborador img {
    max-height: 60px;
  }
}
.footer {
  width: 100%;
  padding: 60px 8% 25px;
  box-sizing: border-box;
  background: #252321;
  color: #ffffff;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer .footer-brand img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}
.footer .footer-brand p {
  max-width: 400px;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #bdb8b1;
}
.footer .footer-info h3 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  color: #c0a47d;
}
.footer .footer-info p {
  margin: 0 0 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #bdb8b1;
}
.footer .footer-info .footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.footer .footer-info .footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}
.footer .footer-info .footer-socials a:hover {
  transform: translateY(-2px);
  border-color: #c0a47d;
}
.footer .footer-info .footer-socials img {
  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 6px;
}
.footer .footer-bottom {
  max-width: 1200px;
  margin: 25px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer .footer-bottom p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #85817c;
}
@media (max-width: 768px) {
  .footer {
    padding: 45px 25px 20px;
  }
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 35px;
  }
  .footer .footer-socials {
    margin-top: 12px;
  }
  .footer .footer-socials a {
    width: 34px;
    height: 34px;
  }
  .footer .footer-socials img {
    width: 16px;
    height: 16px;
  }
  .footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
