/* Importar Playfair Display desde Google Fonts solo para hero-content h2 */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap");

/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.btn:hover {
  background-color: #555;
  transform: translateY(-2px);
}

.btn-small {
  padding: 8px 20px;
  font-size: 12px;
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: #333;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  color: #777;
  font-size: 18px;
}

/* Utilidades */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

/* Asegurar que los inputs y textareas también usen la fuente */
input,
textarea,
select,
button {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}


/* Process Steps Styling */
/* Process Steps Styling - Horizontal Layout */
/* Process Steps Styling - Horizontal Layout */
.process-steps {
    margin: 80px auto;
    padding: 0 20px;
    max-width: 1200px;
}

.process-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 32px;
    font-weight: 600;
    color: #333;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.step-column {
    flex: 1;
    text-align: left;
}

.step-heading {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .step-box {
        text-align: center;
    }
    
    .process-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* FAQ Styling - Mantenemos igual ya que ya es responsive */
.faq-section {
    margin: 60px 0;
    padding: 0 20px;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background-color: #f9f9f9;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 500px;
}

/*hola*/


/* Estilos forzados para el proceso de reserva */
.booking-process-section {
    margin: 80px auto !important;
    padding: 0 20px !important;
    max-width: 1200px !important;
    clear: both !important;
}

.booking-process-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
}

.booking-steps-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 40px !important;
    width: 100% !important;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.booking-step-column {
    flex: 1 1 33.333% !important;
    max-width: 33.333% !important;
    text-align: left !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
     font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.booking-step-heading {
    font-size: 22px !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
    color: #333 !important;
    text-align: left !important;
     font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.booking-step-description {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #555 !important;
    text-align: left !important;
     font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Responsive adjustments - solo cambia a vertical en pantallas muy pequeñas */
@media (max-width: 767px) {
    .booking-steps-row {
        flex-direction: column !important;
        gap: 40px !important;
    }
    
    .booking-step-column {
        max-width: 100% !important;
        flex: 1 1 100% !important;
        text-align: center !important;
    }
    
    .booking-step-heading {
        text-align: center !important;
    }
    
    .booking-step-description {
        text-align: center !important;
    }
}


/*que tal? */
