body {
    font-family: "Playpen Sans", sans-serif;
    /* Fallback to sans-serif */
}

.texto-1,
.texto-2 {
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    text-shadow: 2px 2px 4px #ddd;
    /* Adjusted text shadow */
}

.texto-1 {
    color: #212529;
    font-size: 1.8em;
    /* Adjusted font size */
}

.texto-2 {
    color: #fff;
    font-size: 1.5em;
    /* Adjusted font size */
}

.carousel-caption {
    background: linear-gradient(to right, rgba(236, 100, 1, 0.75), rgba(255, 174, 0, 0.5));
    /* Cross-browser linear-gradient */
}

.jat-center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

h2.titulos-navegacion {
    font-size: 1.8em;
    /* Removed !important */
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1.2rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #dea983;
    /* Background color for dropdown */
    /* Additional styles for dropdown */
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    transition: background-color 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
    color: #fff;
    text-decoration: none;
    background-color: #ec6401;
}

p {
    font-size: 1rem;
    /* Standardized font size */
}

.titulo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ec6401;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.accordion-header {
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.25rem;
    /* Adjusted for consistency */
    color: #569fd4;
    border-bottom: 1px solid #569fd4;
}

@media screen and (max-width: 768px) {

    .texto-1,
    .texto-2 {
        width: 100%;
    }

    .texto-1 {
        font-size: 1.5em;
    }

    .texto-2 {
        font-size: 1em;
    }

    .carousel-caption {
        min-height: fit-content;
        background-color: rgba(236, 99, 1, 0.544);
    }

    .titulo {
        font-size: 1.5rem;
    }
}