/* Estilos para a página de login */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* Permite que o login ocupe o espaço restante */
    background-color: #f0f0f0;
    height: 100vh; /* Garantir que ocupe toda a altura da tela */
}

/* Estilos específicos para a página de login */
.login-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.login-title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #8B3EE8; /* Cor roxa */
    text-align: center;
}

.login-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.login-label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.login-input-container {
    position: relative;
    margin-bottom: 1rem;
}

.login-input {
    padding: 0.75rem;
    padding-left: 2.5rem; /* Espaço para o ícone */
    border: 1px solid #ccc;
    border-radius: 4px;
    width: calc(100% - 1.5rem); /* Ajustar a largura para caber no container */
    box-sizing: border-box; /* Inclui padding e border na largura total */
}

.login-button {
    padding: 0.75rem;
    background-color: #8B3EE8; /* Cor roxa */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #7a32c0; /* Cor roxa mais escura */
}

.login-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    width: 1.25rem;
    height: 1.25rem;
    pointer-events: none; /* Evita que o ícone interfira na interação com o input */
}

.login-links {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-top: 1rem;
    color: #8B3EE8; /* Cor roxa */
}

.login-links a {
    text-decoration: none;
    color: #8B3EE8; /* Cor roxa */
}

.login-links a:hover {
    text-decoration: underline;
}

/* Hero Section */
.relative {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 45vh;
    width: 100%;
}

.relative img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.relative .absolute {
    position: absolute;
    inset: 0;
    background-color: #8B3EE8; /* Cor roxa */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    color: white;
}

.relative .absolute h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.relative .absolute p {
    font-size: 1.25rem;
    max-width: 640px;
}

/* NavBar */
.navbar {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--light-gray);
}

.navbar-item {
    position: relative;
    height: 30px;
}

.navbar-button {
    font-size: 1rem;
    font-weight: bold;
    color: var(--dark-gray);
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-button:hover {
    background-color: #c9c9c9;
    cursor:default;
}

.navbar-button:hover {
    background-color: var(--mediun-green);
    color: var(--white);
}

.navbar-submenu {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    white-space: nowrap;
    min-width: 150px;
    padding: 5px 0;
    display: none;
}

.navbar-submenu button {
    display: block;
    width: 100%;
    padding: 5px 15px;
    background: none;
    color: #153f2a;
    border: none;
    text-align: left;
    font-size: 0.9em;
    cursor: pointer;
    transition: color 0.3s, background-color 0.3s;
}

.navbar-submenu button:hover {
    color: #ffffff;
    background-color: #8B3EE8; /* Cor roxa */
}

.navbar-item:hover .navbar-submenu {
    display: block;
}

/* Features Section */
.py-16 {
    background-color: #F9FAFB;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.flex {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex svg {
    width: 3rem;
    height: 3rem;
    color: #8B3EE8; /* Cor roxa */
    margin-bottom: 1rem;
}

.flex h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.flex p {
    color: #6B7280;
    font-size: 0.875rem;
}

/* FAB - Floating Action Button */
.fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 100;
}

.fab img {
    width: 60px;
    height: 60px;
}

/* Ajustes Mobile */
@media (max-width: 480px) {
    .relative .absolute h2 {
        font-size: 1.25rem;
    }

    .relative .absolute p {
        font-size: 0.875rem;
    }

    .grid {
        grid-template-columns: repeat(1, 1fr);
    }

    footer {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
}
