/* Tipografia moderna */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 500;
    background-color: #f0f4f8;
}

.container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 220px;
    background: linear-gradient(135deg, #3498db, #2c3e50); /* Azul com gradiente */
    color: #ecf0f1;
    padding-top: 20px;
    position: fixed;
    height: 100%;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1); /* Sombra para profundidade */
}

.sidebar nav ul {
    list-style-type: none;
    padding: 0;
}

.sidebar nav ul li {
    margin-bottom: 15px;
}

.sidebar nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
}

.sidebar nav ul li a:hover {
    background-color: #ff66b2; /* Tom de rosa vibrante */
    transform: scale(1.05); /* Efeito de ampliação ao passar o mouse */
}


.content {
    margin-left: 240px; 
    padding: 40px;
    background-color: #ffffff;
    width: calc(100% - 240px); 
    box-sizing: border-box;
    height: 100vh;
    overflow: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adiciona uma sombra para dar profundidade */
    border-radius: 12px; /* Bordas arredondadas */
}

h1 {
    color: #2c3e50;
    font-size: 32px; /* Aumentei o tamanho da fonte */
    font-weight: 700;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #2c3e50;
    font-size: 14px;
}

textarea, input[type="password"], input[type="text"] {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: #ecf0f1;
    transition: border-color 0.3s;
}

textarea:focus, input:focus {
    border-color: #1abc9c; /* Foco com verde suave */
    outline: none;
}

button {
    background: linear-gradient(135deg, #ff69b4, #ff1493); /* Rosa com gradiente */
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background: linear-gradient(135deg, #ff1493, #ff69b4); 
    transform: scale(1.05); /* Efeito de hover para aumentar ligeiramente o botão */
}

.message {
    background-color: #eafaf1;
    color: #27ae60;
    padding: 15px;
    border: 1px solid #27ae60;
    border-radius: 8px;
    margin-bottom: 20px;
}

.important-message {
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background-color: #f4f7fa;
    border: 1px solid #d6e9c6;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* Estilo para o ícone de menu (hamburguer) */
.menu-icon {
    display: none; 
    font-size: 30px;
    cursor: pointer;
    color: #2c3e50;
    padding: 10px;
}

.video-container iframe {
    width: 100%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 16/9; 
}

/* Responsivo */
@media only screen and (max-width: 550px) {
    .menu-icon {
        display: block; 
    }

    .sidebar {
        display: none; 
    }

    .content {
        margin-left: 0;
        width: 100%; 
    }

    .sidebar.open {
        display: block;
        position: fixed;
        z-index: 1000;
        width: 220px;
        height: 100%;
        background: linear-gradient(135deg, #3498db, #2c3e50);
    }
}

.voz {
    background: linear-gradient(135deg, #FF5722, #FF9800); /* Gradiente laranja para representar voz */
}
