/* 📌 ESTILOS GENERALES DEL FORMULARIO */
.mil-form {
    background-image: url('../img/suprads/Suprads_1028\ x\ 997\ Fondo\ Blanco.jpg'); /* Cambia la URL según tu imagen */
    background-size: cover; /* Ajusta la imagen al tamaño del formulario */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    margin: 20px 0px 100px 0px;
}


/* 📝 TÍTULOS DEL FORMULARIO */
.mil-form-title {
    
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* 📌 FILAS DEL FORMULARIO */
.mil-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

/* 📌 INPUTS GENERALES */
.mil-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mil-input-group label {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

/* 📌 ESTILOS DE INPUT */
.mil-input-group input {
    font-family: 'IBMPlex-Bold';
    padding: 10px;
    
    backdrop-filter: blur(10px); /* Aplica desenfoque */
    border: 2px solid #ccc;
    color: #7f7cfd;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    
    /* 🔹 Evita las mayúsculas automáticas */
    text-transform: none; 
   
}

/* 📌 EFECTO CUANDO EL INPUT ESTÁ LLENO */
.mil-input-group input:valid {
    border-color: #7f7cfd; /* Borde violeta */
    background: rgba(127, 124, 253, 0.1); /* Fondo con tono violeta */
}


/* 📌 TEXTAREA */
.mil-textarea-group {
    margin-bottom: 15px;
}

.mil-textarea-group label {
    font-family: 'IBMPlex-Bold';
    font-size: 14px;
    font-weight: bold;
    color: #555;
    display: block;
    margin-bottom: 5px;
}

/* 📌 ESTILO DEL TEXTAREA */
.mil-textarea-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #ccc;
    font-size: 14px;
    font-family: 'IBMPlex-Bold';
    
 
        /* 🔹 Evita las mayúsculas automáticas */
        text-transform: none; 
    
    backdrop-filter: blur(10px); /* Aplica desenfoque */
    color: #7f7cfd; /* Color del texto */
}

/* 📌 EFECTO CUANDO EL TEXTAREA ESTÁ LLENO */
.mil-textarea-group textarea:valid {
    border-color: #7f7cfd; /* Borde violeta */
    background: rgba(127, 124, 253, 0.1); /* Fondo con tono violeta */
}

/* 📌 OPCIONES DE PRESUPUESTO - BOTONES */
.mil-budget-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
   
}

/* 📌 ESTILO GENERAL DE LOS BOTONES */
.mil-budget-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    
    color: white;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

/* 📌 OCULTAR EL INPUT RADIO */
.mil-budget-btn input {
    display: none;
}

/* 📌 CUANDO SE SELECCIONA UNA OPCIÓN */
.mil-budget-btn input:checked + span {
    background-color: #7f7cfd !important; /* Color igual al botón de enviar */
    color: white;
}

/* 📌 TEXTO DENTRO DEL BOTÓN */
.mil-budget-btn span {
    padding: 12px 20px;
    display: block;
    background-color: #333;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* 📌 EFECTO HOVER */
.mil-budget-btn:hover span {
    background-color: #6361d3 !important; /* Hover del botón de enviar */
    transform: scale(1.05);
}

/* 📌 CONTENEDOR DEL BOTÓN DE ENVÍO */
.mil-submit-container {
    text-align: center;
    margin-top: 20px;
}

/* 📌 BOTÓN DE ENVÍO */
.mil-submit-btn {
    background-color: #000000;
    color: white;
    font-size: 16px;
    padding: 12px 220px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}
/* 📌 BOTÓN DE ENVÍO */
.mil-submit-btn2 {
    background-color: #000000;
    color: white;
    font-size: 16px;
    padding: 12px 115px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}
.mil-submit-btn:hover {
    background-color: #6361d3;
}

.mil-submit-btn2:hover {
    background-color: #6361d3;
}
/* 📌 TEXTO FINAL */
.mil-form-footer {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

/* 📌 RESPONSIVO */
@media (max-width: 768px) {
    .mil-form-row {
        flex-direction: column;
    }
    .mil-budget-options {
        flex-direction: column;
        align-items: center;
    }

    .mil-budget-btn {
        width: 100% !important;  /* Ocupar todo el ancho */
        max-width: 300px; /* Limitar el ancho */
        height: 50px !important; /* Altura fija */
    }
    .mil-submit-btn{
        padding: 12px 75px;
    }
    .mil-submit-btn2{
        padding: 12px 75px;
    }

    form input {
        height: 50px;
    }
    form textarea{
        height: 100px;
    }
}



/* 📌 Contenedor de la Sección */
.mil-form-selection-container {
    text-align: center;
    padding: 50px 20px;
    
    border-radius: 10px;
 margin-top: -50px;
    margin-bottom: 100px;
}

/* 📌 Título Principal */
.mil-form-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* 📌 Botones de Selección */
.mil-form-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.mil-form-btn {
    font-family: 'IBMPlex-Medium';
    background: linear-gradient(135deg, #7f7cfd, #6361d3);
    color: white;
    font-size: 16px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    min-width: 250px;
    text-align: center;
    box-shadow: 0px 6px 0px #4b49a1, 0px 10px 15px rgba(127, 124, 253, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    /* position: relative;  ⬅️ Prueba eliminando esto */
}

/* 📌 Efecto cuando se pasa el mouse */
.mil-form-btn:hover {
    transform: translateY(3px);
    box-shadow: 0px 3px 0px #3d3a91, 0px 6px 10px rgba(127, 124, 253, 0.5);
}

/* 📌 Efecto cuando se presiona */
.mil-form-btn:active {
    transform: translateY(6px);
    box-shadow: 0px 0px 0px #2e2c81, 0px 2px 5px rgba(127, 124, 253, 0.6);
    background: linear-gradient(135deg, #6361d3, #7f7cfd);
}



/* 📌 Responsivo */
@media (max-width: 768px) {
    .mil-form-buttons {
        flex-direction: column;
        align-items: center;
    }

    .mil-form-title{
        font-size: 18px;
    }
}

/* 📌 ESTILOS DE NUEVO FOOTER */
.custom-footer {
    font-family: 'IBMPlex-Medium';
    color: #252525;
    padding: 40px 0;
    position: relative;
    width: 100%;
  }
  
  /* 📌 Contenedor Principal */
  .custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* 📌 Fila con distribución flexible */
  .custom-row {
    display: flex;
    flex-wrap: wrap;
  }
  
  /* 📌 Alineación y Espaciado */
  .custom-space-between {
    justify-content: space-between;
  }
  
  .custom-align-center {
    align-items: center;
  }
  
  /* 📌 Logo */
  .custom-footer-logo img {
    max-width: 150px;
  }
  
  /* 📌 Menú de Navegación */
  .custom-footer-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
  }
  
  .custom-footer-menu li {
    display: inline-block;
  }
  .custom-footer-menu a {
    color: #303030;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .custom-footer-menu a:hover {
    color: #7f7cfd;
  }


  /* 📌 Menú de Navegación2 */
  .custom-footer-menu2 {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
  }
  
  .custom-footer-menu2 li {
    display: inline-block;
  }
  
 
  .custom-footer-menu2 a {
    color: #d2d2d2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  
  .custom-footer-menu2 a:hover {
    color: #7f7cfd;
  }
  
  /* 📌 Redes Sociales */
  .custom-footer-social {
    display: flex;
    gap: 15px;
  }
  
  .custom-footer-social a {
    color: #272727;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .custom-footer-social a:hover {
    color: #7f7cfd;
  }
  
  /* 📌 Copyright */
  .custom-footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.8;
  }
  
  .custom-footer-bottom a {
    color: #7f7cfd;
    text-decoration: none;
  }
  
  .custom-footer-bottom a:hover {
    text-decoration: underline;
  }
  
  .subtitulo{
    margin-top: 20px;
    font-size: 22px;
    font-family: 'IBMPlex-Regular';
}


  /* 📌 Responsive */
  @media (max-width: 768px) {
    .custom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
  
    .custom-footer-menu {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
   .custom-footer-menu2 {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    .custom-footer-social {
        margin-top: 20px;
    }

    
.subtitulo{
   
    font-size: 16px;
}
  }
  