/* styles.css */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.header {
    background-color: #f26522;
    height: 6.5rem;
    width: 100%;
    display: flex;
}

.nav a {
    color: white;
    font-family: 'Zilla Slab', serif;
    text-decoration: none;
    font-size: 1.5rem;
    line-height: 6.5rem;
    font-weight: 600;
    transition: 300ms ease-out;
}

nav a:hover {
    color: var(--negro);
}

.contenedor-nav {
    width: 85%;
}

.nav {
    display: flex;
    flex-direction: row-reverse;
    gap: 6rem;
}

.contenedor-repensar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35%;
    height: 100%;
    text-align: center;
}

.contenedor-repensar p {
    font-size: 1.8rem;
    font-family: 'Zilla Slab', serif;
    font-weight: 900;
    text-transform: uppercase;
}

.info-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f26522;
    color: white;
    font-family: 'Zilla Slab', serif;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    padding: 10px 30px;
    width: 85%;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 650;
}

.info > div {
    flex: 1;
    padding: 0 10px;
    text-align: center;
}

.info__boton {
    flex-shrink: 0;
    margin-left: 20px;
}

.info__boton button {
    background-color: white;
    color: #5f378d;
    border: 2px solid #5f378d;
    border-radius: 40px;
    padding: 30px 50px;
    font-family: 'Zilla Slab', serif;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
    margin-right: 3vh;
}

.info__boton button:hover {
    background-color: #5f378d;
    border: 2px solid white;
    color: white;
}

.info div p {
    margin: 0;
}

.section {
    margin-bottom: 40px;
}

.section-title {
    padding-left: 60px;
    padding-top: 30px;
    color: black;
    margin-top: 20px;
    font-family: 'Zilla Slab', serif;
    font-style: italic;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.section-content {
    display: grid;
    grid-template-areas: "derecha izquierda";
    grid-template-columns: 50% 50%;
    gap: 40px;
    padding-left: 60px;
    padding-right: 60px;
    font-family: 'Roboto', sans-serif;
}

.derecha {
    grid-area: derecha;
}

.izquierda {
    grid-area: izquierda;
}

.layout__ul {
    display: grid;
    grid-template-areas: "right left";
    grid-template-columns: 50% 50%;
    gap: 40px;
    font-family: 'Roboto', sans-serif;
}

.right {
    grid-area: right;
}

.left {
    grid-area: left;
}

.section-content .column {
    padding: 0 10px;
}

.section-content p {
    text-align: justify;
}

ul {
    list-style-type: none;
    /* Eliminar los puntos predeterminados */
    padding: 0;
    margin: 0;
}

ul li {
    position: relative;
    margin: 10px 0;
    padding: 10px 10px 10px 50px;
    border-radius: 5px;
}

ul li::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 3px solid #f26522;
    border-radius: 50%;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.highlight {
    color: #5f378d;
    font-weight: bold;
    font-family: 'Zilla Slab', serif;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 20px;
    margin-left: 4vh;
}

.column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.section-verdad {
    display: grid;
    grid-template-areas: "verdad fin";
    grid-template-columns: 40% 60%;
    gap: 40px;
    padding-left: 60px;
    padding-right: 60px;
    font-family: 'Roboto', sans-serif;
    margin: 20px;
}

.verdad {
    grid-area: verdad;
}

.verdad h2 {
    margin-left: 55px;
    color: black;
    margin-top: 20px;
    font-family: 'Zilla Slab', serif;
    font-style: italic;
}

.fin {
    grid-area: fin;
}

.highlight-last {
    color: #5f378d;
    font-weight: bold;
    font-family: 'Zilla Slab', serif;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 20px;
    margin-left: 4vh;
}

.contenido {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 80%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    font-family: 'Zilla Slab', serif;
    border-top-right-radius: 90px;
    border-bottom-right-radius: 90px;
    padding: 10px 30px;
    width: 85%;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 650;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .section-content {
        grid-template-columns: 1fr;
    }

    .info-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .info {
        width: 100%;
        border-radius: 0;
        font-size: 10px;
    }

    .info div {
        width: 100%;
        padding: 10px 0;
        margin: 0;
        border-bottom: 1px solid #cccccc;
    }

    .info div:last-child {
        border-bottom: none;
    }

    .info__boton {
        margin-top: 10px;
        align-self: flex-end;
    }
}
