/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Helvetica+Neue:wght@300;400;600&display=swap');

:root {
  --light-beige: #f9f5f0;
  --soft-beige: #c7b29e;
  --mid-beige: #b4987e;
  --dark-beige: #8e7a5f;
  --deep-beige: #6b5a45;
  --light-blue: #dde9f2;
  --light: #f5f4f4;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
  color: var(--text-dark);
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

section.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  background-color: var(--light);
}

/* Remove default section padding to align carousel */
section.main-content>.carousel-container {
  margin-top: 0;
}

.main-content .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 3rem 15px;
}

a {
  text-decoration: none;
}


h1,
h2 {
  margin-bottom: 1rem;
  color: var(--deep-blue);
}

/* Estructura Header */
.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.header-content .logo {
  position: absolute;
  left: 2rem;
  height: 132px;
}

.header-content nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, var(--soft-beige), var(--mid-beige), var(--dark-beige));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

/* Destello */
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg,
      transparent 0%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 100%);
  animation: shineFadeOut 2s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
}


@keyframes shineFadeOut {
  0% {
    left: -50%;
    opacity: 1;
  }

  80% {
    left: 50%;
    opacity: 1;
  }

  100% {
    left: 50%;
    opacity: 0;
  }
}

header img.logo {
  height: 96px;
  margin-bottom: 0.5rem;
}

nav {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
}

nav li {
  transition: transform 0.3s ease;
}

nav li:hover {
  transform: scale(1.10);
}

nav a {
  color: #f8f9fa;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.2rem;
  font-family: 'poppins', sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

nav a:hover {
  color: #ffffff;
  /* dorado más brillante al pasar el mouse */
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);

}

/* Footer */

.footer {
  background: linear-gradient(90deg, var(--deep-beige), var(--dark-beige));
  color: #fff;
  text-align: center;
  padding: 1rem;
  position: relative;
}

.footer::before {
  opacity: 0.1;
  font-size: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer p {
  position: relative;
  z-index: 1;
}

.footer-custom {
  background: linear-gradient(90deg, var(--deep-beige), var(--dark-beige));
  color: #fff;
  font-size: 0.95rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.footer-col {
  flex: 1 1 200px;
}

.logo-col {
  max-width: 250px;
}

.footer-logo {
  height: 65%;
  margin-bottom: 0.2rem;
}

.tagline {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.socials a {
  margin-right: 0.5rem;
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.socials a:hover {
  color: var(--soft-beige);
}

.footer-col h4 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--light-beige);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-mid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 1.5rem 0;
}

.footer-mid h5 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--light-beige);
}

.partner-logo {
  max-height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.partner-logo:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding: 0.75rem 0;
  background: rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Utility */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--dark-beige);
  border: 1px solid var(--dark-beige);
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, border-color 0.3s;
}

.btn:hover {
  background-color: var(--deep-beige);
  border-color: var(--deep-beige);
}


/* components*/

/* Carousel overrides */

/* Acelera la animación de slide */
#carouselExampleIndicators .carousel-item {
  transition: transform 0.5s ease-in-out;
}

/* Indicadores personalizados dentro del área del carousel */
.carousel-indicators.custom-indicators {
  position: absolute;
  bottom: 30px;
  /* espacio debajo del botón */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Asegúrate que los botones estén bien visibles */
.carousel-indicators.custom-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  margin: 0 6px;
}

.carousel-indicators.custom-indicators .active {
  background-color: #ffffff;
}


.carousel-item {
  height: 60vh;
  /* valor base */
  min-height: 300px;
  /* garantiza algo legible incluso en móviles muy pequeños */
  max-height: 90vh;
  /* no ocupe toda la pantalla en pantallas gigantes */
}

.carousel-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.carousel-item img {
  width: 100vw;
  /* ocupa todo el ancho de la pantalla */
  height: 100vh;
  /* ocupa todo el alto visible */
  object-fit: cover;
  /* se recorta manteniendo proporción */
  object-position: center;
  /* centra la imagen */
}

.carousel-container {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #000;
  /* opcional: para fondo negro en imágenes que no llenen todo */
  margin-top: 0;
  padding: 0;
}

.carousel {
  width: 100%;
  height: 600px;
  overflow: hidden;
  justify-content: center;
}

.object-fit-cover {
  object-fit: cover;
}


/* reservar */

.btn-wrapper {
  position: absolute;
  bottom: 90px;
  /* Ajustado: 30px encima de los indicadores (que están a bottom: 0 por defecto) */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}


.anim-btn i {
  font-size: 1.2rem;
  margin-left: 0.5rem;
  color: inherit;
  /* Hereda el color del texto */
  transition: transform 0.3s ease;
}

.anim-btn:hover i {
  transform: translateX(4px);
}



/* Pricing */

body {
  margin-top: 20px;
}

.pricing-box {
  -webkit-box-shadow: 0px 5px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 30px -10px rgba(0, 0, 0, 0.1);
  padding: 35px 50px;
  border-radius: 20px;
  position: relative;
}

.pricing-box .plan {
  font-size: 34px;
}

.pricing-badge {
  position: absolute;
  top: 0;
  z-index: 999;
  right: 0;
  width: 100%;
  display: block;
  font-size: 15px;
  padding: 0;
  overflow: hidden;
  height: 100px;
}

.pricing-badge .badge {
  float: right;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: -67px;
  top: 17px;
  position: relative;
  text-align: center;
  width: 200px;
  font-size: 13px;
  margin: 0;
  padding: 7px 10px;
  font-weight: 500;
  color: #ffffff;
  background: #fb7179;
}

.pricing-info li {
  padding: 12px 0;
}

.mb-2,
.my-2 {
  margin-bottom: .5rem !important;
}

p {
  line-height: 1.7;
}


/* WhatsApp Button */

.fab {
  padding: 20px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}

.fab:hover {
  opacity: 0.7;
}

.fa-whatsapp {
  background: #45bbff;
  color: white;
}

.btn-whatsapp {
  display: inline-block;
  padding: 0.1rem 1rem;
  background-color: #25D366;
  border: 1px solid #25D366;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, border-color 0.3s;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  border-color: #1ebe5d;
}

.chat-fixed {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

#ht-ctc-chat {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  /* para animación de entrada */
  transition: all 0.3s ease-in-out;
}



/* Contact Form */
.section-title {
  color: var(--dark-beige);
  font-weight: 600;
}

.contact-form .form-label {
  font-weight: 500;
  color: var(--deep-beige);
}

.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea {
  border-radius: 4px;
  border: 1px solid var(--mid-beige);
  background-color: #fff;
  transition: border-color 0.3s;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.contact-form textarea:focus {
  border-color: var(--soft-beige);
  box-shadow: none;
}

.custom-file-upload-wrapper {
  position: relative;
}

.custom-file-label {
  display: block;
  background-color: var(--light-beige, #f8f5f0);
  border: 2px dashed var(--mid-beige, #d3bfa8);
  padding: 1rem;
  text-align: center;
  color: #6c757d;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.custom-file-label:hover {
  background-color: var(--mid-beige, #e3d2bc);
  color: #000;
}

.custom-file-input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.btn-animation {
  background-color: var(--dark-beige);
  border-color: var(--dark-beige);
  transition: background-color 0.3s, border-color 0.3s;
}

.btn-animation:hover {
  background-color: var(--deep-beige);
  border-color: var(--deep-beige);
}





/* Responsive */


/* Móviles */
@media (max-width: 767px) {

  /* Header */

  .header-content {
    flex-direction: column;
    align-items: center;
  }

  .header-content .logo {
    position: static;
    /* elimina el posicionamiento absoluto */
    height: 130px;

  }

  header img-logo {
    margin-bottom: 0rem;
  }

  .header-content nav {
    width: 100%;
    justify-content: center;
    padding: 0rem 0;
  }

  nav {
    padding: 0rem 0rem;
  }

  nav ul {
    flex-wrap: nowrap;
    /* permite desplazamiento horizontal si no cabe */
    justify-content: center;
    padding: 0 1rem;
    gap: 1.2rem;
  }

  nav ul li {
    white-space: nowrap;
  }

  nav ul li a strong {
    font-size: 9px;
  }

  header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, var(--soft-beige), var(--mid-beige), var(--dark-beige));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0rem 0 0rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}




  /* Footer */

  .footer-col:nth-child(4) {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Inicio */

  /* Carousel */
  .btn-wrapper {
    position: absolute;
    bottom: 140px;
    /* Ajustado: 30px encima de los indicadores */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
  }

  /* Servicios */

  /* Contacto */

  /* Formulario */

  /* Equipo */

  /* Trabaja con Nosotros */

  /* Galería */





}

/* Tabletas */
@media (min-width: 768px) and (max-width: 1023px) {

  /* Header */

  nav ul {
    list-style: none;
    display: flex;
    gap: 1.30rem;
  }

  nav ul li a strong {
    font-size: 15.5px;
  }

  .header-content .logo {
    position: absolute;
    left: 0.4rem;
    height: 100px;
  }


  /* Footer */

  .footer-col:nth-child(4) {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Inicio */

  /* Carousel */
  .btn-wrapper {
    position: absolute;
    bottom: 140px;
    /* Ajustado: 30px encima de los indicadores */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
  }

  /* Servicios */

  /* Contacto */

  /* Formulario */

  /* Equipo */

  /* Trabaja con Nosotros */

  /* Galería */

}

/* Laptops */
@media (min-width: 1024px) and (max-width: 1279px) {

  /* Header */

  nav ul {
    list-style: none;
    display: flex;
    gap: 1.40rem;
  }

  nav ul li a strong {
    font-size: 17.5px;
  }

  .header-content .logo {
    position: absolute;
    left: 0.4rem;
    height: 130px;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(90deg, var(--soft-beige), var(--mid-beige), var(--dark-beige));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  }


  /* Footer */

  /* Inicio */

  /* Carousel */
  .btn-wrapper {
    position: absolute;
    bottom: 50px;
    /* Ajustado: 30px encima de los indicadores */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
  }

  /* Servicios */

  /* Contacto */

  /* Formulario */

  /* Equipo */

  /* Trabaja con Nosotros */

  /* Galería */

}

/* Escritorio estándar */
@media (min-width: 1280px) and (max-width: 1919px) {

  /* Header */

  /* Footer */

  /* Inicio */

  /* Carousel */

  /* Servicios */

  /* Contacto */

  /* Formulario */

  /* Equipo */

  /* Trabaja con Nosotros */

  /* Galería */

}

/* Pantallas grandes */
@media (min-width: 1920px) {

  /* Header */

  /* Footer */

  /* Inicio */

  /* Carousel */

  /* Servicios */

  /* Contacto */

  /* Formulario */

  /* Equipo */

  /* Trabaja con Nosotros */

  /* Galería */

}