@charset "UTF-8";
body {
  font-family: "Barlow", Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

.navbar-custom {
  width: 100vw;
  height: 64px;
  background: #000;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  box-shadow: none;
}
.navbar-custom .container-navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  height: 100%;
}
.navbar-custom .logo-navbar {
  color: #D1A110;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;
  transition: color 0.2s;
}
.navbar-custom .logo-navbar:hover, .navbar-custom .logo-navbar:focus {
  color: #efbf2f;
}
.navbar-custom .burger-navbar {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  z-index: 2200;
}
.navbar-custom .burger-navbar .burger-bar {
  width: 28px;
  height: 4px;
  background: #D1A110;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-navbar {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 80vw;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  z-index: 2100;
  padding: 64px 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.side-navbar ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.side-navbar ul li {
  margin-bottom: 0;
  width: 100%;
}
.side-navbar ul li:last-child {
  margin-bottom: 0;
}
.side-navbar ul li a {
  display: block;
  width: 100%;
  padding: 1.3rem 0;
  text-align: center;
  color: #111;
  background: transparent;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  transition: background 0.23s cubic-bezier(0.4, 0, 0.2, 1), color 0.23s cubic-bezier(0.4, 0, 0.2, 1);
}
.side-navbar ul li a:hover, .side-navbar ul li a:focus {
  background: #000;
  color: #D1A110;
}
.side-navbar ul li:last-child a {
  color: #D1A110;
  font-weight: 600;
}
.side-navbar ul li:first-child a {
  color: #111;
  font-weight: 600;
}

.burger-navbar {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2200;
  position: relative;
}
.burger-navbar .burger-bar {
  width: 28px;
  height: 4px;
  background: #D1A110;
  margin: 3px 0;
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-custom.menu-open .burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-custom.menu-open .burger-bar:nth-child(2) {
  opacity: 0;
}
.navbar-custom.menu-open .burger-bar:nth-child(3) {
  transform: translateY(-14px) rotate(-45deg);
}
.navbar-custom.menu-open .side-navbar {
  right: 0;
}
.navbar-custom.menu-open .navbar-overlay {
  opacity: 1;
  pointer-events: all;
}

.side-navbar {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 80vw;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  z-index: 2100;
  padding: 64px 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  /* display: block; */
  overflow: hidden;
  color: #fff;
}
.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  background: url("/img/HeroSection.webp") center/cover no-repeat fixed;
  z-index: 1;
}
.hero-section .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.hero-section .hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 450px;
  padding: 0 16px;
  margin: 0 auto;
  text-align: center;
  padding-top: 10rem;
}
.hero-section .hero-content h1 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.hero-section .hero-content .hero-slider-rect {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 70%;
  min-width: 150px;
  height: 48px;
  padding: 1em 1.5em;
  background: rgba(0, 0, 0, 0.38);
  border: 2px solid #262626;
  border-radius: 12px;
  margin: 0 auto;
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-section .hero-content .slider-item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #d1a110;
  font-weight: 700;
  font-size: 1.36rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.34s cubic-bezier(0.4, 0, 0.2, 1), transform 0.48s cubic-bezier(0.6, -0.28, 0.74, 0.05);
  z-index: 1;
}
.hero-section .hero-content .slider-item.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}
.hero-section .hero-content .slider-item.out-left {
  opacity: 0;
  transform: translateX(-100%);
  z-index: 1;
}
.hero-section .hero-content .hero-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2.4rem;
  flex-wrap: wrap;
}
.hero-section .hero-content .hero-btns .btn {
  font-family: "Barlow", Arial, sans-serif;
  font-size: 1rem;
  align-content: center;
  font-weight: 500;
  border-radius: 8px;
  padding: 0.9em;
  min-width: 166px;
  transition: all 0.2s;
}
.hero-section .hero-content .hero-btns .btn.btn-outline-dark {
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  border: 2px solid #3d3d3d;
}
.hero-section .hero-content .hero-btns .btn.btn-outline-dark:hover {
  background: #000;
  border-color: #d1a110;
  color: #d1a110;
}
.hero-section .hero-content .hero-btns .btn.btn-yellow {
  background: #d1a110;
  color: #fff;
  border: 2px solid #d1a110;
}
.hero-section .hero-content .hero-btns .btn.btn-yellow:hover {
  background: #fff;
  color: #d1a110;
  border: 2px solid #d1a110;
}
.hero-section .hero-content .hero-logos-section {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section .hero-content .hero-logos-section .hero-logos-title {
  background: #24292f;
  color: #fff;
  border-radius: 18px;
  padding: 0.5em 1.2em;
  margin-bottom: -1rem;
  font-size: 1.02rem;
  font-weight: 500;
  display: inline-block;
  z-index: 2;
  position: relative;
}
.hero-section .hero-content .hero-logos-section .hero-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  width: 100%;
  max-width: 340px;
  aspect-ratio: 2/3;
  background: rgba(36, 36, 36, 0.2);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 2px 18px rgba(36, 36, 36, 0.2);
  position: relative;
  border: 2px solid #262626;
}
.hero-section .hero-content .hero-logos-section .hero-logos-grid .logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #262626;
}
.hero-section .hero-content .hero-logos-section .hero-logos-grid img {
  max-width: 90px;
  max-height: 98px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
  margin: 0;
}
@media (min-width: 900px) {
  .hero-section .hero-content .hero-logos-section .hero-logos-grid {
    max-width: 580px;
    aspect-ratio: 3/2;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .hero-section .hero-content .hero-logos-section .hero-logos-grid img {
    max-width: 120px;
    max-height: 60px;
  }
}

.hero-bg {
  background-attachment: scroll !important;
}

.servicios-section {
  background: #181818;
  color: #fff;
  padding: 32px 0 48px 0;
}
.servicios-section .servicios-header {
  position: relative;
  width: 100%;
  min-height: 160px;
  margin-bottom: 1.9rem;
  border-radius: 12px;
  overflow: hidden;
}
.servicios-section .servicios-header .servicios-bg {
  background: url("/img/bg-servicios.jpg") center/cover no-repeat;
  filter: blur(2px) brightness(0.5);
  position: absolute;
  inset: 0;
  z-index: 1;
}
.servicios-section .servicios-header .servicios-header-content {
  position: relative;
  align-content: center;
  z-index: 2;
  padding: 22px 20px;
  text-align: left;
}
.servicios-section .servicios-header .servicios-header-content h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.servicios-section .servicios-header .servicios-header-content p {
  font-size: 1.12rem;
  line-height: 1.6;
}
.servicios-section .servicios-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 12px;
}

.servicio-card {
  scroll-margin-top: 70px; /* Ajusta al alto de tu navbar */
  background: #222;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.16);
  padding: 22px 18px 22px 18px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.24s;
}
.servicio-card.core {
  border: 2.3px solid #d1a110;
  background: #000000;
  box-shadow: 0 0 24px 0 rgba(209, 161, 16, 0.14);
}
.servicio-card .servicio-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}
.servicio-card .servicio-card-header .servicio-icon {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #242424;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(209, 161, 16, 0.14);
  padding: 10px;
}
.servicio-card .servicio-card-header .servicio-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.servicio-card .servicio-card-header h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0;
}
.servicio-card p {
  font-size: 1.02rem;
  margin-bottom: 1.9rem;
  text-align: justify;
}
.servicio-card .mas-info-btn {
  align-self: stretch;
  background: #444;
  color: #fff;
  font-size: 1.06rem;
  font-weight: 500;
  border-radius: 10px;
  padding: 0.85em 0;
  border: none;
  margin-top: 4px;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.servicio-card .mas-info-btn:hover {
  background: #d1a110;
  color: #181818;
}
.servicio-card.core .mas-info-btn {
  background: #d1a110;
  color: #181818;
}
.servicio-card.core .mas-info-btn:hover {
  background: #fff;
  color: #d1a110;
}
.servicio-card .servicio-mas-info {
  width: 100%;
  margin-top: 1.4rem;
  padding: 0 0.4em;
  font-size: 0.97rem;
  border-top: 1px solid #333;
  color: #f5f5f5;
  background: #1a1a1a;
  border-radius: 0 0 12px 12px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.37, 0, 0.63, 1), opacity 0.24s;
  pointer-events: none;
}
.servicio-card .servicio-mas-info.visible {
  padding: 1em 0.4em;
  opacity: 1;
  max-height: 900px; /* suficiente para el contenido más largo */
  transition: max-height 0.45s cubic-bezier(0.37, 0, 0.63, 1), opacity 0.34s;
  pointer-events: auto;
}

@media (min-width: 900px) {
  .servicios-section .servicios-header-content {
    text-align: center;
  }
  .servicios-section .servicios-header-content h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .servicios-section .servicios-header-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .servicios-section .servicios-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 36px;
    justify-content: center;
    align-items: stretch;
    padding: 0 32px;
    max-width: 1000px;
    margin: 0 auto;
  }
}
.servicio-modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.25s;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.servicio-modal-content {
  background: #222;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 64px rgba(0, 0, 0, 0.28);
  max-width: 520px;
  width: 90vw;
  padding: 2.2em 1.7em 1.7em 1.7em;
  position: relative;
  animation: modalPopIn 0.22s cubic-bezier(0.25, 0.8, 0.25, 1);
  max-height: 86vh;
  overflow-y: auto;
}

@keyframes modalPopIn {
  from {
    transform: scale(0.92);
  }
  to {
    transform: scale(1);
  }
}
.servicio-modal-close {
  position: absolute;
  right: 18px;
  top: 13px;
  font-size: 2.1rem;
  background: none;
  color: #d1a110;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: color 0.14s;
}
.servicio-modal-close:hover {
  color: #fff;
}

@media (min-width: 900px) {
  .servicio-mas-info {
    display: none !important;
  }
}
.contacto-section {
  margin: 0 auto;
  padding: 2rem 0;
  background: #1a1a1a;
  color: #fff;
  padding-bottom: 48px;
}

.contacto-intro {
  background: url("/img/bg-intro-contacto.png") center/cover no-repeat, #181818;
  max-width: 370px;
  margin: 0 auto 1.6rem auto;
  padding: 36px 18px 26px 18px;
  border-radius: 18px;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.4666666667);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contacto-intro .contacto-intro-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px auto;
  background: linear-gradient(#242424 80%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(26, 26, 26, 0.6);
}
.contacto-intro .contacto-intro-logo img {
  width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
}
.contacto-intro h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.contacto-intro p {
  font-size: 1.02rem;
  color: #ececec;
  opacity: 0.91;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.form-card {
  width: 90%;
  background: #232323;
  border-radius: 15px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.2666666667);
  padding: 1.25rem 1rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}
.form-card label,
.form-card legend {
  font-size: 1.07rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.18rem;
}
.form-card small {
  color: #bbbbbb;
  font-size: 0.97rem;
  margin-bottom: 0.5em;
  margin-top: -2px;
}
.form-card input[type=text],
.form-card input[type=email],
.form-card textarea {
  background: #191919;
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 0.8em 0.6em;
  margin-top: 4px;
  margin-bottom: 8px;
  font-size: 1rem;
  outline: none;
  border: 1px solid #282828;
  transition: border 0.2s;
}
.form-card input[type=text]:focus,
.form-card input[type=email]:focus,
.form-card textarea:focus {
  border: 1.5px solid #d1a110;
  background: #18180c;
}
.form-card textarea {
  resize: vertical;
  min-height: 58px;
}
.form-card fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.form-card fieldset legend {
  font-weight: 700;
  margin-bottom: 0.6em;
}
.form-card .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.form-card .checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1.05rem;
  color: #e0e0e0;
}
.form-card .checkbox-group label input[type=checkbox] {
  accent-color: #d1a110;
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.btn-enviar {
  width: 80%;
  background: #d1a110;
  color: #181818;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 9px;
  padding: 0.8em 0;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.btn-enviar:hover {
  background: #fff;
  color: #d1a110;
}

@media (min-width: 900px) {
  .contacto-intro {
    max-width: 1400px;
  }
  .form-card {
    width: 60%;
  }
  .btn-enviar {
    width: 50%;
  }
}
.modal-thankyou {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(24, 24, 24, 0.84);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.modal-thankyou .modal-content {
  background: #222;
  color: #fff;
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6666666667);
  text-align: center;
}
.modal-thankyou .modal-content h2 {
  color: #d1a110;
  margin-bottom: 1rem;
}
.modal-thankyou .modal-content button {
  background: #d1a110;
  color: #181818;
  font-size: 1.05rem;
  border-radius: 8px;
  padding: 0.9em 2em;
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
}
.modal-thankyou .modal-content button:hover {
  background: #fff;
  color: #d1a110;
}

.footer {
  background: #242424;
  color: #fff;
  padding: 34px 0 0 0;
}
.footer .footer-content {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.footer .footer-logo {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #d1a110;
  margin-bottom: 0.4em;
}
.footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  justify-content: center;
  font-size: 1.06rem;
}
.footer .footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.16s;
}
.footer .footer-nav a:hover {
  color: #d1a110;
}
.footer .footer-social-text {
  margin-top: 0.7em;
  font-size: 1.07rem;
  color: #fff;
  font-weight: 500;
}
.footer .footer-social {
  display: flex;
  gap: 16px;
  margin: 0.7em 0;
}
.footer .footer-social .social-btn {
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #242424;
  transition: border 0.2s, background 0.2s;
  -o-border-image: linear-gradient(to bottom, #2e2e2e 75%, rgba(46, 46, 46, 0) 100%) 1;
     border-image: linear-gradient(to bottom, #2e2e2e 75%, rgba(46, 46, 46, 0) 100%) 1;
}
.footer .footer-social .social-btn svg {
  width: 28px;
  height: 28px;
  display: block;
}
.footer .footer-social .social-btn:hover {
  background: #d1a110;
  color: #181818;
  -o-border-image: linear-gradient(to bottom, #d1a110 85%, rgba(209, 161, 16, 0) 100%) 1;
     border-image: linear-gradient(to bottom, #d1a110 85%, rgba(209, 161, 16, 0) 100%) 1;
}
.footer .footer-contact {
  width: 100%;
  margin: 0.6em 0 1em 0;
}
.footer .footer-contact .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 0.7em;
}
.footer .footer-contact .footer-contact-item .footer-icon {
  color: #d1a110;
  font-size: 1.28rem;
  min-width: 28px;
  text-align: center;
}
.footer .footer-copy {
  text-align: center;
  color: #bbb;
  font-size: 1rem;
  margin: 16px 0 0 0;
  padding-bottom: 1.1em;
  border-top: 1px solid #333;
}

@media (min-width: 700px) {
  .footer-content {
    max-width: 850px;
  }
  .footer-content .footer-nav {
    gap: 18px 46px;
    font-size: 1.09rem;
  }
  .footer-content .footer-contact {
    flex-direction: row;
    gap: 40px;
    justify-content: center;
  }
}
.footer-link {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.17s;
}
.footer-link:hover {
  color: #d1a110;
  text-decoration: underline;
}/*# sourceMappingURL=main.css.map */