@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #f9f6f2;
  color: #081c15;
  line-height: 1.6;
  /* Evita scroll horizontal en móvil */
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

header {
  background: #ffffff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Alineación vertical perfecta */
  position: relative;
}
header .logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1b4332;
  z-index: 1002; /* El logo siempre visible */
}
header .logo span {
  color: #c5a059;
}
header ul.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
  /* Botón de presupuesto en escritorio */
}
header ul.nav-menu li a {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1b4332;
  text-transform: uppercase;
}
header ul.nav-menu li a:hover {
  color: #c5a059;
}
header ul.nav-menu .btn-nav {
  background: #1b4332;
  color: white !important;
  padding: 10px 22px;
  border-radius: 5px;
}
header ul.nav-menu .btn-nav:hover {
  background: #c5a059;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001; /* Encima del menú desplegable */
  padding: 5px;
}
.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #1b4332;
  transition: 0.3s ease-in-out;
  border-radius: 2px;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 998; /* Debajo del menú desplegable */
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&w=1400");
  height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  color: #f9f6f2;
}
.hero h1 span {
  color: #c5a059;
}
.hero .btn {
  margin-top: 20px;
  display: inline-block;
  padding: 16px 35px;
  background: #c5a059;
  color: white;
  border-radius: 50px;
  font-weight: 700;
}
.hero .btn:hover {
  background: white;
  color: #1b4332;
  transform: translateY(-3px);
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.section-title p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .grid-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .grid-gallery {
    grid-template-columns: 1fr;
  }
}
.grid-gallery .item {
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}
.grid-gallery .item:hover {
  transform: translateY(-10px);
}
.grid-gallery .item:hover .overlay {
  background: rgba(0, 0, 0, 0.3);
}
.grid-gallery .item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: flex-end;
  padding: 25px;
}
.grid-gallery .item .overlay span {
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.form-section {
  background: #fff;
}
.form-section .form-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
@media (max-width: 900px) {
  .form-section .form-container {
    grid-template-columns: 1fr;
  }
}

.input-group {
  margin-bottom: 25px;
}
.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1b4332;
}
.input-group input, .input-group textarea {
  width: 100%;
  padding: 14px;
  border: 1.5px solid #eee;
  border-radius: 8px;
  font-family: inherit;
}
.input-group input:focus, .input-group textarea:focus {
  border-color: #c5a059;
  outline: none;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: #1b4332;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
}
.btn-submit:hover {
  background: #c5a059;
}

.lead-magnet {
  background-color: #1b4332;
  padding: 80px 0;
  color: white;
}
.lead-magnet .magnet-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 30px;
  border: 1px solid rgba(197, 160, 89, 0.3);
}
@media (max-width: 900px) {
  .lead-magnet .magnet-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px;
  }
}
.lead-magnet .badge {
  background: #c5a059;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.lead-magnet h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin: 15px 0;
}
.lead-magnet p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}
.lead-magnet .magnet-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .lead-magnet .magnet-form {
    flex-direction: column;
  }
}
.lead-magnet .magnet-form input {
  flex: 1;
  padding: 15px 20px;
  border-radius: 10px;
  border: none;
}
.lead-magnet .magnet-form .btn-gold {
  background: #c5a059;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}
.lead-magnet .magnet-form .btn-gold:hover {
  background: white;
  color: #1b4332;
}
.lead-magnet .magnet-image img {
  width: 100%;
  border-radius: 10px;
  transform: rotateY(-15deg) rotateX(10deg);
  box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.5);
  border: 5px solid white;
  transition: 0.5s ease;
}
.lead-magnet .magnet-image img:hover {
  transform: rotateY(0deg) scale(1.05);
}

.beneficios {
  padding: 80px 0;
  background-color: #f9f6f2;
  text-align: center;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.beneficio-item {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.beneficio-item .icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}
.beneficio-item h3 {
  color: #1b4332;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}
.beneficio-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

footer {
  background: #081c15;
  color: white;
  padding: 50px 0;
  text-align: center;
}
footer .logo {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
footer .logo span {
  color: #c5a059;
}
footer .copy {
  opacity: 0.4;
  font-size: 0.8rem;
  margin-top: 30px;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  background-image: url("https://img.icons8.com/?size=100&id=16713&format=png&color=ffffff");
  background-size: 35px;
  background-repeat: no-repeat;
  background-position: center;
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #1ebe57;
}

.thanks-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh; /* Centrado vertical */
  padding: 40px 20px;
  background-color: #f9f6f2;
}

.thanks-content {
  background: white;
  max-width: 650px;
  width: 100%;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin: 0 auto;
}

.consultancy-box {
  margin: 30px 0;
  padding: 30px;
  border: 2px solid #C5A059; /* Dorado */
  border-radius: 15px;
  background: #fffcf7;
}

.icon-check {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block; /* Asegura que salte de línea */
}

.next-steps {
  text-align: left;
  background: #f9f6f2;
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0;
}
.next-steps h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #c5a059;
}
.next-steps ul {
  display: block;
  text-align: left;
  margin: 10px 0;
  padding-left: 20px; /* Un poco de sangría para la lista */
  list-style: none;
}
.next-steps ul li {
  margin-bottom: 10px;
}

.cta-llamada {
  margin-top: 40px;
  padding: 30px;
  background: #fff;
  border: 2px solid #C5A059;
  border-radius: 15px;
  text-align: center;
}

.btn-calendly {
  display: inline-block;
  background: #2D5A27; /* Verde SpainToBali */
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}
.btn-calendly:hover {
  background: #1e3d1a;
  transform: scale(1.05);
  color: white;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .nav-menu {
    display: flex !important; /* Forza visualización flexible */
    position: fixed;
    top: 0;
    right: -100%; /* Oculto a la derecha */
    width: 80%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 1000; /* Debajo de la hamburguesa (1001) */
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-menu li {
    display: block !important; /* Asegura que se vean */
    width: 100%;
    text-align: center;
    /* Preparación para animación (Delay) */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }
  .nav-menu li a {
    font-size: 1.3rem !important;
    color: #081c15;
    display: block;
    padding: 10px;
  }
  .nav-menu .btn-nav-item .btn-nav {
    background: #1b4332;
    color: white !important;
    width: 80%;
    display: inline-block;
    padding: 15px;
    font-size: 1rem;
  }
  .nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-menu.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-menu.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-menu.active li:nth-child(4) {
    transition-delay: 0.4s;
  }
}
@media (max-width: 400px) {
  .nav-menu {
    width: 100%;
  } /* Ocupa toda la pantalla */
}/*# sourceMappingURL=styles.css.map */