/* ===== FORMULARIO DE COTIZAR ===== */
.cotizar-section {
  max-width: 900px;
  margin: 60px auto;
  background: #fff;
  padding: 40px 50px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Montserrat', sans-serif;
}

.cotizar-section h2 {
  font-size: 28px;
  color: #00417c;
  margin-bottom: 10px;
  text-align: center;
}

.cotizar-section p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.cotizar-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cotizar-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cotizar-form .form-group.full-width {
  flex: 100%;
}

.cotizar-form label {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.cotizar-form input,
.cotizar-form textarea {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.cotizar-form input:focus,
.cotizar-form textarea:focus {
  border-color: #00417c;
  outline: none;
  box-shadow: 0 0 5px rgba(0,65,124,0.3);
}

.cotizar-form .checkbox {
  margin-top: 10px;
  font-size: 14px;
}

.cotizar-form .btn-enviar {
  display: block;
  width: 100%;
  background-color: #dc3e26;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 20px;
}

.cotizar-form .btn-enviar:hover {
  background-color: #b52e1b;
}

/* Responsivo */
@media (max-width: 768px) {
  .cotizar-form .form-row {
    flex-direction: column;
  }
}
