@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,900;1,100;1,300;1,400;1,500;1,900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
    font-family: roboto;
    font-weight: 400;
    color: #888;
}
.material-symbols-outlined {
    font-variation-settings:
        'FILL'0, 'wght'400, 'GRAD'0, 'opsz'24;
    margin: 5px 0px;
    color: #00b39f;
    font-size: 4rem !important;
}
.icon__contenedor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.icon__contenedor p {
    margin-bottom: 0px !important;
}
.hero__inicio {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 175, 160, 0.3), rgba(14, 113, 182, 0.3)), url('../images/Imagen4.jpg'); /* Imagen de fondo */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
iframe {
	width: 100%;
	height: 100vh;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.7);
	transition: background 0.3s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10%;
    z-index: 10;
}
header.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 1px 1px 15px 5px rgba(0, 0, 0, 0.4);
}
header img {
    max-height: 70px;
}
.logo-corto {
	display: none;
}
header h3 {
    color: #00b39f;
    font-size: 2rem;
    font-weight: 400;
    text-align: right;
}
h3 strong {
    font-size: 2.2rem;
}
h1 {
    margin: 5px;
    font-size: 2.5rem;
}
.titulo {
	color: #00b39f;
}
.header-der {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.header-der a {
    text-decoration: none;
    color: #00b39f;
}
.header-der a:hover {
    text-shadow: 0px 0px 2px rgba(0, 175, 160, 0.4);
}

.hero__contenedor {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "slider contenido__form";
    justify-content: initial;
    align-items: initial;
    padding: 0 10%;
}
.slider {
    grid-area: slider;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
	padding: 5%;
}
.slider img {
	width: 100%;
}
.contenedor__form {
    grid-area: contenido__form;
    display: flex;
    flex-direction: column;
	gap:30px;
    justify-content: center;
    align-items: center;
	margin-top: 100px;
}
.mas__informacion{
    background: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    max-width: 1000px;
	width: 100%;
    box-shadow: 1px 1px 15px 5px rgba(0, 0, 0, 0.4);
    padding: 30px;
	margin-bottom: 20px;
}
.mas__informacion p {
    text-align: justify;
    font-size: 1.7rem;
    margin-bottom: 10px;
	line-height: 2.5rem;
}
.contenido__form {
    background: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    box-shadow: 1px 1px 15px 5px rgba(0, 0, 0, 0.4);
    padding: 30px;
}
.contenido__form p {
    text-align: justify;
    font-size: 1.7rem;
    margin-bottom: 10px;
}
.contenido__form p strong {
    font-size: 1.7rem;
}
/* BOTONES SITIO WEB */
button {
    padding: 12px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: bold;
}
.boton__primario {
    background: #00b39f;
    color: white;
	width: 100%;
}
.boton__volver {
	display: flex;
	justify-content: center;
	align-items: center;
    border-radius: 15px;
    font-size: 16px;
    font-weight: bold;
	gap: 5px;
	padding: 6px;
	text-decoration: none;

}
.boton__volver img {
	max-width: 25px;
}
.boton__secundario {
    border: 2px solid #00b39f;
    background: rgba(255, 255, 255, 0);
    padding: 9px;
    color: #00b39f;
	width: 100%;
}
.boton__secundario:hover {
    background: #00b39f;
    color: white;
	width: 100%;
    box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.15);
}
.boton__blanco {
    border: 2px solid white;
    background: white;
    padding: 9px;
    color: rgba(14, 113, 182, 1);
	width: 100%;
}
.boton__blanco__secundario {
    border: 2px solid white;
    background: rgba(255, 255, 255, 0);
    padding: 9px;
    color: white;
	width: 100%;
}
#submitBtn {
    /* Estilo predeterminado del botón */
    background-color: #ccc;
    color: #fff;
    cursor: not-allowed;
    transition: background-color 0.3s, transform 0.3s;
}
#submitBtn.active {
    /* Estilo cuando el botón está habilitado */
    background-color: #00b39f; /* Verde */
    cursor: pointer;
    transform: scale(1.05); /* Efecto de agrandamiento */
}
#submitBtn.inactive {
    /* Estilo cuando el botón está deshabilitado */
    background-color: #ccc; /* Gris claro */
    cursor: not-allowed;
}
/* FIN BOTONES SITIO WEB */
/* */
/* */
/* */
.form-section {
    display: none;
}
.form-section.active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.form-group {
    position: relative;
    width: 100%;
    margin-top: 20px;
}
.cajaHorizontal {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}
.obraSocialDetalles {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.formulario__completo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.inicio__formulario .form-navigation {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px 0px 0px;
}
.form-navigation {
    display: flex;
    justify-content: end;
    gap: 20px;
}
.menu__usuario {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}
.botones__menu__usuarios {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    margin-top: 20px;
}
.inicio__formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.hidden {
    display: none;
}
label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #00b39f;
    background: #fff;
}
label a {
    text-decoration: none;
    font-size: 16px;
}
.labelSup {
    position: absolute;
    top: -10px;
    left: 15px;
    padding: 0 5px;
}
input, select {
    width: 100%;
	height: 40px !important;
    padding: 10px 15px;
    font-size: 14px;
    border: 2px solid #00b39f;
    border-radius: 10px;
    outline: none;
    color: #555;
}
input:focus, select:focus {
    border-color: #00b39f;
    box-shadow: 0 0 5px rgba(0, 179, 159, 0.5);
}
/* Estilo para campos deshabilitados */
input:disabled, select:disabled {
    background-color: #fff;
    color: #c1c1c1;
    border: 1px solid #c1c1c1;
    cursor: not-allowed;
}

.error {
    border: 2px solid #ff7516 !important;
}
/* Estilo cuando hay error */
input.error, select.error {
    border-color: #ff7516 !important;
    color: #ff7516;
}

/* Placeholder en rojo cuando hay error */
input.error::placeholder, select.error::placeholder {
    color: #ff7516;
    opacity: 1;
}

/* Cambiar color del label cuando hay error */
label.label-error {
    color: #ff7516 !important;
}

/* Si el usuario hace focus en un campo con error */
input.error:focus, select.error:focus {
    border-color: #ff7516 !important;
    box-shadow: 0 0 8px rgba(139, 0, 0, 0.1);
}


.custom-checkbox input[type="checkbox"] {
    display: none;
}
.custom-checkbox {
    display: flex;
    justify-content: start;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
    font-size: 16px;
}
.checkmark {
    min-width: 30px;
    height: 30px;
    border: 2px solid #00b39f;
    border-radius: 4px;
    background-color: #fff;
    display: inline-block;
    margin-right: 25px;
    position: relative;
    transition: all 0.3s ease;
}
.checkmark.checked {
    background-color: #00b39f;
    border-color: #00b39f;
}
.checkmark.checked::after {
    content: "✔";
    position: absolute;
    top: 1px;
    left: 6px;
    color: white;
    font-size: 16px;
    font-weight: bold;
}
/* */
/* ESTILOS FAMILIARES */
.familiares {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    border: 2px solid #00b39f;
    border-radius: 15px;
    margin-top: 5px;
}
.familiares p {
    margin-bottom: 0px;
	color: #555;
}
.botonesFamiliares {
    display: flex;
    align-items: center;
    gap: 10px;
}
.botonesFamiliares img {
    max-width: 25px;
    cursor: pointer;
}
.contenido {
    width: 100%;
}
#contenidoGrupoFamiliar {
	margin-top:20px;
}
/*  */
/* ACA VAN LOS MEDIA QUERY */
@media (max-width: 1024px) {
	.hero__inicio {
        padding: 0px 30px;
    }
	.hero__contenedor, header {
		padding: 0 5px;
	}
	.slider {
		justify-content: center;
	}
	.contenedor__form {
		padding-top: 0px;
	}
}
@media (max-width: 768px) {
    .hero__contenedor {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas: "slider" "contenido__form";
        padding: 0;
    }
    .slider {
        display: none;
    }
	header {
		padding: 0 20px;
	}
	header .logo {
		display: none;
	}
	.logo-corto {
		display: flex;
	}
}
@media (max-width: 500px) {
	.hero__inicio {
        padding: 120px 10px 0px 10px;
        padding-bottom: 50px;
    }
	.contenedor__form {
		justify-content: start;
		padding-top: 0px;
		margin-top: 0px;
	}
	.cajaHorizontal {
		flex-direction: column;
		gap:10px;
	}
	.contenido__form{
		width: 100%;
	}
	.form-group {
		margin: 10px 0px;	
	}
	select {
		height: 43px;
	}
	input {
		height: 43px;	
	}
}
@media (max-width: 430px) {
    .hero__contenedor {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas: "contenido__form";
        padding: 0;
    }
	.slider {
		display: none;
	}
}@media (max-width: 320px) {
	.hero__inicio {
        padding: 120px 0px 0px 0px;
        padding-bottom: 50px;
		align-items: start;
    }
}
/* */

/* LISTAS *//* Estilos generales para listas */

ul {
    list-style-type: none; /* Quitar los bullets predeterminados */
}

ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
}

ul li::before {
    content: "•";
    font-size: 60px;
    line-height: 2.5rem;
    color: #00b39f;
    position: absolute;
    left: 0;
    top: 0;
	margin-right: 0.5rem;
}

.listaNumerada {
	list-style-type: none; /* Oculta el marcador predeterminado */
  counter-reset: list-counter; /* Reinicia el contador */
}


.listaNumerada li {
	display: flex;
	counter-increment: list-counter;
}

.listaNumerada li::before {	
	content: counter(list-counter) "."; /* Utiliza el contador para generar nÃºmeros y un punto despuÃ©s */
  color: #00b39f; /* Cambia el color del nÃºmero */
  margin-right: 0.5em; /* Ajusta el espaciado entre el nÃºmero y el texto */
	font-size: 2rem;
	font-weight: bold;
}

/* */

/* ESTILOS LINKS */
.link {
    text-decoration: none;
    color: #00b39f;
    font-weight: bold;
}


.link:hover {
    border-bottom: 2px solid #00b39f; /* Línea de énfasis azul debajo del enlace */
}
/* */