body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(246, 251, 255, 255);
    overflow-x: hidden;
}

.header {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.container {
    max-width: 1200px;
    padding: 15px;
    background-color: rgba(246, 251, 255, 255);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.buttons,
.reports {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.button {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 80px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: background-color 0.3s ease;
    font-family: "Montserrat", regular;
    width: 260px;
    padding: 4px;
    cursor: pointer;
}

.button p {
    font-family: "Montserrat", regular;
    font-size: 16px;
    text-align: start;
}

.button img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    margin-left: 10px;
}

.button span {
    color: #343a40;
}

.button:hover {
    background-color: #e9ecef;
}

.solicitudes {
    color: rgb(59, 146, 176);
    padding-right: 95%;
    margin-top: 80px;
    margin-bottom: 30px;
    font-family: "Montserrat";
    font-weight: bold;
    font-size: 32px;

}

.reporte {
    color: rgb(55, 99, 160);
    padding-right: 95%;
    margin-top: 80px;
    font-family: "Montserrat";
    font-weight: bold;
    font-size: 32px;
}

.varios {
    color: rgb(156, 50, 112);
    padding-right: 95%;
    margin-top: 80px;
    font-family: "Montserrat";
    font-weight: bold;
    font-size: 32px;
}

.search-bar {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
}

.search-bar input {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 25px 0 0 25px;
    box-sizing: border-box;
    outline: none;
}

.search-bar button {
    width: 20%;
    padding: 10px;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    color: white;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 0px solid transparent;
    display: flex;
    box-sizing: border-box;
}

.title {
    color: rgb(255, 255, 255);
    top: 50%;
    position: absolute;
    font-size: 42px;
    font-family: "Montserrat", Semi-bold;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    text-align: center;
}

.logo {
    height: 40px;
    border-radius: 20px;
    position: absolute;
    align-items: center;
    justify-content: center;
    display: flex;
    top: 10px;
    left: 24%;
    transform: translateX(-50%);
}

.about-btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10px;
    right: 21%;
    width: 200px;
    height: 45px;
    border-radius: 50px;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    cursor: pointer;
    font-family: "Montserrat", regular;
}

.about-btn:hover {
    background-color: #ffffff;
    color: #3763a0;
}

.footer {
    background-color: #e4ebf2;
    color: rgb(117, 117, 117);
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    width: 100vw;
    overflow-x: hidden;
}

@media screen and (max-width: 1200px) {
    .button {
        width: 100%;
    }
    .footer {
        display: none;
    }
    .background-image {
        display: none;
    }
    .title {
        position: absolute;
        width: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #ffffff;
    }
    .header{
        background-color: #44699E;
    }
    .search-bar {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .search-bar input {
        width: 80%;
    }
    .search-bar button {
        width: 20%;
    }
    .about-btn{
        position: absolute;
        right: 0;
    }
    .logo{
        position: absolute;
        left: 0;
        transform: translateX(0);
    }
}

@media screen and (max-width: 400px) {
    .button {
        width: 100%;
    }
    .footer {
        display: none;
    }
    .background-image {
        display: none;
    }
    .title {
        position: absolute;
        width: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .search-bar {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .search-bar input {
        width: 70%;
    }
    .search-bar button {
        width: 30%;
    }
}