:root {
    --pijama: #f3f4f6;
    --lightBlue: #024D64;
    --backgroundFooter: #1D1D1D;

    --mainWhite: #fff;

    --mainBlack: #000;
    --mainDarkBlue: #2D558C;

    --secondaryDarkBlue: #284B7D;
    --secondaryRed: #D83B2E;
    --secondaryLigthRed: #F35047;
    --secondaryDarkRed: #D73A33;
    --secondaryDark: #374050;
    --secondaryLigthGreen: #00B2A9;
    --secondaryDarkGreen: #13908A;
    --secondaryLigthBlue: #18A0FB;
}

* {
    font-family: "Source Sans 3" !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--mainBlack);
    margin: 0;
    padding: 0;
}


h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 43px;
}

h2 {
    font-size: 34px;
    font-weight: 300;
    line-height: 36px;
}

h3 {
    font-size: 29px;
    font-weight: 200;
    line-height: 32px;
}

h4 {
    font-size: 24px;
    font-weight: 200;
    line-height: 27px;
}

h5 {
    font-size: 20px;
    font-weight: 200;
    line-height: 27px;
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
}

span {
    font-size: 14px;
    font-weight: 200;
    line-height: 16px;
}

a {
    font-size: 15px;
    font-weight: 200;
    line-height: 16px;
    text-decoration: none;
    color: #000;
}

a:hover {
    color: #000;
}

h1,
h2,
h3,
h4,
h5,
p,
span {
    margin: 0;
}













/* Para contenido inyectado  */


.html-rendered-content {
    line-height: 1.6;
    font-size: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.html-rendered-content h1,
.html-rendered-content h2,
.html-rendered-content h3,
.html-rendered-content h4,
.html-rendered-content h5,
.html-rendered-content h6 {
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.html-rendered-content h1 {
    font-size: 2.25rem;
}

.html-rendered-content h2 {
    font-size: 2rem;
}

.html-rendered-content h3 {
    font-size: 1.75rem;
}

.html-rendered-content h4 {
    font-size: 1.5rem;
}

.html-rendered-content h5 {
    font-size: 1.25rem;
}

.html-rendered-content h6 {
    font-size: 1rem;
}


.html-rendered-content p {
    margin-bottom: 0.5rem;
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: justify;
}

.html-rendered-content a {
    color: var(--secondaryLigthBlue);
    text-decoration: none;
}

.html-rendered-content a:hover {
    text-decoration: underline;
}

.html-rendered-content ul,
.html-rendered-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.html-rendered-content li {
    margin-bottom: 0.5rem;
}

.html-rendered-content img {
    width: 100% !important;
    height: auto !important;
    display: block;
    margin: 2rem auto;
    border-radius: 8px;
    max-width: 720px; 
}

.html-rendered-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    overflow-x: auto;
    display: block;
}

.html-rendered-content th,
.html-rendered-content td {
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    text-align: left;
}

.html-rendered-content th {
    background-color: var(--pijama);
    font-weight: bold;
}

.html-rendered-content hr {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 3rem 0;
}

.html-rendered-content ul {
    list-style-type: disc;
}

.html-rendered-content ul ul {
    list-style-type: circle;
}

.html-rendered-content ul ul ul {
    list-style-type: square;
}

.html-rendered-content li {
    list-style-type: disc;
}

.html-rendered-content ol {
    list-style-type: decimal;
}

.html-rendered-content ol ol {
    list-style-type: lower-alpha;
}

.html-rendered-content ol ol ol {
    list-style-type: lower-roman;
}

.html-rendered-content strong,
.html-rendered-content b {
    font-weight: normal;
}

.html-rendered-content iframe {
    max-width: 100%;
    border: none;
    margin: 1rem 0;
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 8px;
}

.html-rendered-content pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto;
    background-color: var(--pijama);
    padding: 1rem;
    border-radius: 4px;
}

.html-rendered-content figure {
    margin: 2rem auto;
    max-width: 720px;
}

.html-rendered-content figure img {
    margin-top: 0;
    margin-bottom: 0;
}

.html-rendered-content figcaption {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
}