


/* CONTACT SECTION */
.contact-section {
  padding: 100px 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: bold;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  border-radius: 4px;
  font-size: 1rem;
  resize: vertical;
}

.contact-form textarea {
  height: 150px;
}

.contact-form button {
  background-color: #000;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
  align-self: flex-start;
}


.contact-form button:hover {
  background-color: #333;
}

/* DIVISOR DE SECCIÓN */
.section-divider {
  border: none;
  border-top: 2px solid #eee;
  margin: 80px auto 40px;
  max-width: 600px;
}

/* TÍTULO INTRODUCTORIO DE CALCULADORA */
.quote-intro-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

/* PÁRRAFO INTRODUCTORIO */
.quote-intro-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: #666;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* TÍTULO INTRODUCTORIO DE CALCULADORA */
.quote-intro-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 18px;
  font-weight: 800;
  color: #333;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  text-shadow: 1px 1px 4px rgba(255, 126, 95, 0.25);
}

/* PÁRRAFO INTRODUCTORIO */
.quote-intro-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1.2rem;
  line-height: 1.9;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.3px;
}

/* CONTENEDOR DE LA CALCULADORA */
.quote-calculator {
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow:
    0 12px 20px rgba(255, 126, 95, 0.15),
    0 6px 12px rgba(255, 126, 95, 0.1);
  padding: 40px 35px 50px;
  max-width: 480px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.quote-calculator:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 35px rgba(255, 126, 95, 0.25),
    0 8px 20px rgba(255, 126, 95, 0.15);
}

/* DECORADOR DE COLOR ARRIBA */
.quote-calculator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 8px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  box-shadow: 0 2px 8px rgba(255, 126, 95, 0.4);
}

/* TÍTULO DENTRO DE LA CALCULADORA */
.quote-calculator h2 {
  font-size: 2.2rem;
  margin-bottom: 28px;
  text-align: center;
  color: #222;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.7px;
}

/* CAMPOS DE ENTRADA */
.quote-calculator input,
.quote-calculator select,
.quote-calculator textarea {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 22px;
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  font-size: 1.1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.05);
}

.quote-calculator input:focus,
.quote-calculator select:focus,
.quote-calculator textarea:focus {
  border-color: #ff7e5f;
  box-shadow: 0 0 10px rgba(255, 126, 95, 0.4);
  outline: none;
}

/* BOTÓN */
.quote-calculator button {
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  color: #fff;
  padding: 16px 20px;
  border: none;
  border-radius: 18px;
  font-size: 1.2rem;
  cursor: pointer;
  width: 100%;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 5px 15px rgba(255, 126, 95, 0.4);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.quote-calculator button:hover {
  background: linear-gradient(90deg, #ff9068, #fdc68a);
  box-shadow: 0 8px 20px rgba(255, 144, 104, 0.6);
}



#calculator-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#calculator-form label {
  font-weight: bold;
}

#calculator-form select,
#calculator-form input {
  padding: 12px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  border-radius: 4px;
  font-size: 1rem;
}

#calculator-form button {
  background-color: #000;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
  align-self: flex-start;
}

#calculator-form button:hover {
  background-color: #333;
}

/* Efecto fade-in para los pasos */
    .step {
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transition: opacity 0.5s ease, max-height 0.5s ease;
      visibility: hidden;
    }
    .step.visible {
      opacity: 1;
      max-height: 500px; /* suficiente para mostrar el contenido */
      visibility: visible;
    }
    /* Resultado cotización */
    .quote-result {
      margin-top: 15px;
      white-space: pre-wrap;
      font-weight: bold;
    }