body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7fafc; /* bg-gray-100 */
    color: #1a202c; /* text-gray-900 */
}

header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
}

header nav ul {
    display: flex;
    gap: 1rem;
}

header nav a {
    color: #4a5568;
    transition: color 0.3s;
}

header nav a:hover {
    color: #1a202c;
}

/* Tela de Carregamento */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Loader (círculo animado) */
.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #21628d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 0.4s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ajusta o modal para ser mais largo e bonito */
#modal {
    display: none;
    z-index: 1000;
}

#modal .max-w-5xl {
    max-width: 80%;
}

#modalContent img {
    width: 100%; /* Mantém a imagem responsiva */
    height: auto; /* Mantém a proporção correta */
    max-height: 400px; /* Evita imagens muito altas */
    object-fit: cover; /* Ajusta a imagem dentro do espaço */
    border-radius: 10px;
    display: block;
    margin: 0 auto 20px;
}

#modalContent h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

#modalContent p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

#modalContent h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #444;
    margin-top: 20px;
}

#modalContent ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

#modalContent ul li {
    font-size: 1.2rem;
    padding: 8px;
    background: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 10px;
    display: inline-block;
    width: 45%;
}

.image-slider {
    position: relative;
    max-width: 100%;
    margin: 20px;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.slide img {
    width: auto !important;
    height: 400px !important;
    max-height: 400px !important;
    object-fit: cover !important;
}


.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


