/* ============================================================
   LAYOUT — Grid principal
   ============================================================ */

body {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: 150px auto;
    height: fit-content;
    column-gap: 1rem;
}

main {
    grid-row: 2 / 3;
    grid-column: 2;
    padding-bottom: 5rem;
}


/* ============================================================
   HEADER DE LA POLÍTICA
   ============================================================ */

.privace-policy-header {
    padding: 0rem 3rem 1rem 3rem;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    color: white;
    font-family: Archivo, sans-serif;
    padding-bottom: 1rem;
}

.last-updated {
    font-size: 1rem;
    font-weight: 500;
    color: #9c9c9c;
    font-family: "Google Sans", sans-serif;
}

.intro {
    font-family: "Google Sans", sans-serif;
    font-size: 1rem;
    color: #9c9c9c;
    font-weight: 400;
    line-height: 1.6;
    padding-top: 1.5rem;
}


/* ============================================================
   SECCIONES — Contenido general
   ============================================================ */

section {
    padding: 2rem 3rem;
    font-family: "Google Sans", sans-serif;
    line-height: 1.5;
}

h2 {
    font-family: Archivo, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    padding-bottom: 1rem;
}

section p {
    font-family: "Google Sans", sans-serif;
    font-size: 1rem;
    color: #9c9c9c;
    line-height: 1.6;
    padding-bottom: .5rem;
}

section p a {
    color: #EDF060;
    font-weight: 500;
}

section p strong {
    color: white;
    font-weight: 600;
}

section ul {
    list-style: none;
    padding: 0;
    margin: .5rem 0 1rem 0;
}

section ul li {
    font-family: "Google Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #9c9c9c;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: .4rem;
}

section ul li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #EDF060;
}

section ul li strong {
    color: white;
    font-weight: 600;
}


/* ============================================================
   BLOQUES ESPECIALES
   ============================================================ */

.first-section,
.twelve-section {
    background-color: #EDF060;
    border-radius: .5rem;
    margin: 0 3rem;
    padding: 2rem;
   box-shadow: -3px -3px 200px -31px rgba(237,240,96,0.5);
   -webkit-box-shadow: -3px -3px 200px -31px rgba(237,240,96,0.5);
   -moz-box-shadow: -3px -3px 200px -31px rgba(237,240,96,0.5);
}

.first-section h2,
.twelve-section h2 {
    color: #100b00;
}

.first-section p,
.first-section p a,
.first-section strong,
.twelve-section p,
.twelve-section a,
.twelve-section strong {
    color: #100b00;
    font-family: "Google Sans", sans-serif;
}

.contact-name {
    font-size: 1.25rem;
    font-weight: 600;
    padding-bottom: .5rem;
}

.highlight-box {
    border-left: 3px solid #EDF060;
    padding: 0 1.5rem;
    margin-top: 1.5rem;
    border-radius: .5rem;
}

.highlight-box p {
    color: #9c9c9c;
}

.twelve-section {
    margin-top: 2rem;
}

.twelve-section .contact-block {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.eight-section a {
    color: #EDF060;
    font-weight: 500;
}


/* ============================================================
   RESPONSIVE — max-width: 768px
   ============================================================ */

@media screen and (max-width: 768px) {

    body {
        display: flex;
        flex-direction: column;
    }

    section {
        padding: 1.5rem 2rem;
    }

    .privace-policy-header {
        padding: 1.5rem 2rem 2rem;
    }

    .first-section,
    .twelve-section {
        margin: 0 2rem;
    }

    .twelve-section {
        margin-bottom: 8rem;
    }

}
