/* HOJA DE ESTILOS UDN 
 RESET DE CSS -------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*{
    box-sizing: border-box;
}


/* ESTILOS GENERALES ---------------------------------------------------------------------------- */

body {
    background: #ECE9E6;
    background: -webkit-linear-gradient(to right, #FFFFFF, #ECE9E6); 
    background: linear-gradient(to right, #FFFFFF, #ECE9E6);
    }

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    padding: 5px 20px;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.5;
    padding: 15px 30px;
}

li h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.5;
    padding: 15px 30px;
}

p {
    font-family: 'Montserrat', sans-serif;
    color: rgba(23, 32, 42, 1);
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
    line-height: 1.5;
    margin: 20px opx;
    padding: 15px 30px
}

img {
    margin: 20px;
}


/* ESTILOS PARTICULARES ---------------------------------------------------------- */

.contenedor{
    align-content: center;
    background-color: white;
    max-width: 1000px;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 12px rgba(204, 209, 209, 1);
    }

.alerta-exterior {
    color: orangered;
    width: 100%;
    background-color: rgba(247, 220, 111, 1);
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    }

.alerta {
    width: 90%;
    background-color: bisque;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 4px dotted #D35400;
    padding: 20px 20px;
    border-radius: 10px;
    }

.destacado {
    width: 90%;
    background-color: rgba(235, 237, 239, .1);
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 4px dotted #00BFBF;
    padding: 20px 20px;
    border-radius: 10px;
    }

.area-bullets{
    background-color: rgba(235, 245, 251, 1);
    margin: 30px 0px;
}

.recurrente {
    margin-top: 10px;
    margin-bottom: 10px;
    }

.delimitador{
    width:800px;
    margin:auto;
    }

.vimeo{
    height:0px;
    width:100%;
    max-width:800px; /* Así establecemos el ancho máximo (si lo queremos) */
    padding-top:56.25%; /* Relación: 16/9 = 56.25% */
    position:relative;
    }

/*
iframe{
    position:absolute;
    height:100%;
    width:100%;
    top:0px;
    left:0px;
    }
*/

.boton_rojo{
    color: white;
    width: 80%;
    font-family: 'Montserrat', sans-serif;
    font-size: 23px;
    font-weight: 600;
    background-color: rgba(255, 0, 0, 1);
    border: 1px solid #fff;
    border-radius: 7px;
    padding: 20px 20px;
    text-align: center;
    text-decoration: none;
    margin: 4px;
    cursor: pointer;
}

.boton_rojo:hover{
    background-color: rgba(255, 0, 0, 0.6);
  }

.barra{
    color: white;
    width: 100%;
    background-color: dimgray;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    }

.contenedor-dos-columnas{
	width: 100%;
	margin-left:auto;
	margin-right:auto;
    overflow: hidden;
    height: 100%;
}

.columna-izquierda{
	float: left;
	width: 50%; 
    height: 100%;
    display: flex;
    align-items: center;
}

.columna-derecha{
	float: right;
	width: 50%; 
    height: 100%;
    display: flex;
    align-items: center;
}

.red{
    color: red;
    }

.negrita{
    font-weight: 600;
}

.ul-principal {
  list-style-image: url("imagenes/check-azul-30px.png");
  padding: 50px;
}

.marcatextos {
    background-color: yellow;
    }

.gris{
    color: dimgray;
    }

.naranja{
    color: #D35400;
}