/* Estilos del Fondo */
body {
    background: linear-gradient(135deg, #e6f7ff 25%, #ffedcc 100%);
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Estilos del Header */
.header {
    background-color: #3b3b3a;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header .container-xl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
}

.header .logo img {
    max-height: 50px;
    margin-right: 15px;
}

.navmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navmenu a {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.navmenu a:hover {
    background-color: #12aacc;
    color: #ffffff;
}

/* Estilos para las Cards */
.cards-container {
    display: flex;
    justify-content: center;
    padding: 120px 20px 20px;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    cursor: pointer;
    color: #3b3b3a;
    background-image: url('https://via.placeholder.com/300x200.png?text=Solicitud'); /* Fondo decorativo */
    background-size: cover;
    background-position: center;
}

.card-header {
    background-color: rgba(18, 170, 204, 0.85);
    padding: 30px 0;
    border-bottom: 4px solid #fcbf00;
    transition: background-color 0.4s ease, transform 0.4s ease;
}

.card-header i {
    font-size: 50px;
    color: #ffffff;
}

.card-content {
    padding: 20px;
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.85);
    transition: background-color 0.4s ease;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.card-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666666;
}

.card-content a {
    padding: 10px 25px;
    background-color: #fcbf00;
    color: #3b3b3a;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
}

.card-content a:hover {
    background-color: #3b3b3a;
    color: #ffffff;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.card:hover .card-header {
    background-color: #fcbf00;
    transform: rotate(5deg);
}

/* Estilos adicionales para mejorar el fondo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6f7ff 25%, #ffedcc 100%);
    z-index: -1; /* Colocar debajo del contenido */
}

