
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f6f8;
  color: #333;
}

.header {
  background-color: #0f3d57;
  color: white;
  text-align: center;
  padding: 50px 20px 30px;
}

.header h1 {
  font-size: 2em;
  margin-bottom: 10px;
}





/* Moderniza la sección de cotización */
.cotizar-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  align-items: stretch;
  margin: 50px auto 0 auto;
  max-width: 1100px;
}

.cotizar-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(3,181,224,0.09);
  padding: 38px 30px 30px 30px;
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 420px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.8s cubic-bezier(.23,1.01,.32,1) both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}

.cotizar-card h2 {
  font-size: 1.4em;
  margin-bottom: 14px;
  color: #0c1f2c;
  text-align: center;
}

.cotizar-card p {
  color: #444;
  margin-bottom: 18px;
  text-align: center;
}

.cotizar-form .formulario {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.cotizar-form input {
  border: 1px solid #d0d0d0;
  border-radius: 7px;
  padding: 12px 14px;
  font-size: 1em;
  background: #f9f9f9;
  transition: border 0.2s;
}

.cotizar-form input:focus {
  border-color: #03B5E0;
  outline: none;
}

.cotizar-form button {
  background: #03B5E0;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 12px 0;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.cotizar-form button:hover {
  background: #0c1f2c;
  transform: scale(1.04);
}

.whatsapp-boton {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #fff !important;
  border: none;
  border-radius: 7px;
  padding: 14px 24px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  transition: background-color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(3,181,224,0.10);
}

.whatsapp-boton:hover {
  background: #03B5E0;
  color: #fff;
  transform: scale(1.04);
}

.img-form, .img-directo {
  margin-top: 24px;
  max-width: 180px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(3,181,224,0.08);
  animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) both;
}

@media (max-width: 900px) {
  .cotizar-flex {
    flex-direction: column;
    align-items: center;
  }
}







.footer {
  background-color: #0f3d57;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}
