:root {
	--primario: #1a5472;
	--gris-claro: #5a5959;
	--sombra: 0 0 13px 0 rgba(185,185,185, .25);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background: #f8fafb;
	font-family: 'Roboto', sans-serif;
}

main {
	max-width: 1000px;
	width: 90%;
	margin: 40px auto;
}


.titulo {
	color: #3a3a3a;
	font-weight: 700;
	text-align: center;
	margin: 60px 0;
}

a{
	font-size: 18px;
	color: #2ea3f2;
	text-decoration: none;
}

.margin-t {
	margin-top: 15vh;
}

.color-black {
	background-color: #000;
}

#seccion-link {
	padding-top: 13.5vh;
}

nav a:hover {
	color: #e27911 !important;
}

nav *{
	font-size: medium;
}

nav li{
	margin-left: 40px;
}

/*! =================================================*/
/*! ============= Categorias ============= */
/*! =================================================*/
.categorias {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.categoria {
	cursor: pointer;
	text-align: center;
	padding: 20px;
	border-radius: 10px;
	background: #fff;
	font-weight: 700;
	color: var(--gris-claro);
	border: 2px solid transparent;
	transition: .3s ease all;
}

.categoria:hover {
	box-shadow: var(--sombra);
	color: #000;
}

.categoria:hover path {
	fill: var(--primario);
}

.categoria svg {
	width: 64px;
	margin-bottom: 10px;
}

.categoria path {
	fill: var(--gris-claro);
	transition: .3s ease all;
}

.categoria.activa {
	border: 2px solid var(--primario);
	color: #000;
}

.categoria.activa path {
	fill: var(--primario);
}
#manual{
	display: none;
}
.invalid-tooltip{
	border-radius: 25px;
	font-size: 12px;
	margin-left: 10px;
}

/*! =================================================*/
/*! ============= Contenedor Preguntas ============= */
/*! =================================================*/
.contenedor-preguntas {
	display: none;
	grid-template-columns: 1fr;
	gap: 40px;
}

.contenedor-preguntas.activo {
	display: grid;
}

.contenedor-pregunta {
	background: #fff;
	padding: 40px;
	border: 2px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	transition: .3s ease all;
	cursor: pointer;
}

.contenedor-pregunta:hover {
	box-shadow: var(--sombra);
}

.contenedor-pregunta.activa {
	border: 2px solid var(--primario);
}

/*! =================================================*/
/*! ============= Preguntas ============= */
/*! =================================================*/
.pregunta {
	font-weight: 700;
	font-size: 20px;
	line-height: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pregunta img {
	width: 14px;
}

.respuesta {
	color: #808080;
	line-height: 30px;
	max-height: 0;
	opacity: 0;
	transition: .3s ease all;
}

.contenedor-pregunta.activa .respuesta {
	opacity: 1;
	margin-top: 20px;
}

.contenedor-pregunta.activa img {
	transform: rotate(45deg);
}

.contenedor-manual{
	border: 3px solid #1a5472;
	border-radius: 25px;
}

.contenedor-manual ul{
	color: #4e4f50;
	font-size: 16px;
	font-weight: 450;
	padding: 25px;
	text-align: left;  
}

.tit-manuales{
	color: black;
	font-size: 18px;
	font-weight: 500;
	text-align: center;  
}

/*! =================================================*/
/*! ============= formulario ============= */
/*! =================================================*/
.contact-form{
	background: #fff;
	margin-top: 10%;
	margin-bottom: 5%;
	width: 100%;
}

.contact-form .form-control{
    border-radius:1rem;
	margin: 10px;
}
.contact-image{
	
    text-align: center;
}
.contact-image img{
    border-radius: 6rem;
    width: 11%;
    margin-top: -3%;
}
.contact-form form{
    padding: 14%;
}
.contact-form form .row{
    margin-bottom: -7%;
}
.contact-form h3{
    margin-bottom: 8%;
    margin-top: -10%;
    text-align: center;
    color: #3f4953;
}
.contact-form label{
    color: #3f4953;
	text-align: left;
	margin-right: 25%;
	margin-top: 5px;
}
.contact-form .btnContact {
    width: 50%;
    border: none;
	margin-top: 25px;
    border-radius: 1rem;
    padding: 1.5%;
	text-align: center;
	margin-left: 25%;
    background: #8ec63f;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}
.btnContactSubmit
{
    width: 50%;
    border-radius: 1rem;
	margin-top: 25px;
    padding: 1.5%;
    color: #fff;
	justify-content: center;
	margin-left: 15%;
	text-align: center;
    background-color: #8ec63f;
    border: none;
    cursor: pointer;
}

.btn{
	color: #8ec63f;
	font-weight: bold;
	background: transparent;
	border: 2px solid #8ec63f;
	border-radius: 25px;
	border: none;
      color: rgb(126, 204, 82);
      padding: 16px 32px;
      text-align: center;
      display: inline-block;
      font-size: 16px;
      margin: 4px 2px;
      -webkit-transition-duration: 0.4s; /* Safari */
      transition-duration: 0.4s;
      cursor: pointer;
      text-decoration: none;
      text-transform: uppercase;
}
.bt1 {
	background-color: white; 
	color: #565a4f; 
	border: 2px solid #8ec63f;
}
.bt1:hover {
	background-color: #8ec63f;
	color: white;
}

/*! =================================================*/
/*! ============= Responsive Design ============= */
/*! =================================================*/
@media screen and (max-width: 820px){
	.categorias {
		grid-template-columns: 1fr 1fr;
	}

	.categoria {
		padding: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 5px;
	}

	.categoria svg {
		width: 30px;
		margin-right: 10px;
		margin-bottom: 0;
	}
}

@media screen and (max-width: 500px){
	.categorias {
		grid-template-columns: 1fr;
	}
}

