/* Montserrat personalizada si tienes el archivo local */
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/monserrat1.ttf') format('truetype');
}

/* Base */
body {
  background-color: #f8f6f3;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Sección del Formulario */
.section-container {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 30px;
  gap: 40px;
  align-items: center;
  justify-content: center;
  background-color: #f8f6f3;
}

.logo-column {
  flex: 1;
  text-align: center;
}

.logo-img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.form-column {
  flex: 1;
  max-width: 500px;
  width: 100%;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.form-column h2 {
  margin-bottom: 25px;
  font-size: 26px;
  font-weight: 600;
  color: #364483;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
select,
textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  background-color: #fdfdfd;
  transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #364483;
}

button {
  padding: 14px;
  background-color: #364483;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2c376d;
}

/* Footer */
.footer {
  background-color: #364483;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 14px;
  flex-wrap: wrap;
}

.footer-left p {
  margin: 0;
}

.logo-footer {
  height: 36px;
  width: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .section-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .form-column {
    padding: 25px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-right {
    justify-content: center;
  }
}

/*animacion*/
/* Contenedor principal */
.section-container {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 30px;
  gap: 40px;
  align-items: center;
  justify-content: center;
  background-color: #f8f6f3;
}

/* Columna del logo con fade */
.fade-slider {
  position: relative;
  width: 660px; /* 50% de 1320 */
  height: 960px; /* puedes ajustar según imagen real */
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.fade-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  animation: fadeAnimation 18s infinite;
}

/* Delays por imagen */
.fade-img:nth-child(1) { animation-delay: 0s; }
.fade-img:nth-child(2) { animation-delay: 6s; }
.fade-img:nth-child(3) { animation-delay: 12s; }

/* Efecto fade lento y suave */
@keyframes fadeAnimation {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  30%  { opacity: 1; }
  35%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Formulario */
