/* Estilos gerais */
body {
    font-family: 'Lato', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #003087;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand img {
    max-height: 60px;
    margin-right: 10px;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 5px;
}

.nav-link {
    color: #003087 !important;
    font-weight: 500;
    margin-left: 15px;
    transition: color 0.3s ease; /* Transição suave */
}

.nav-link:hover {
    color: #D4AF37 !important;
}

.navbar-actions {
    display: flex;
    align-items: center;
}

.btn-login {
    background-color: #003087;
    border-color: #003087;
    color: #FFFFFF;
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 1rem;
    margin-right: 10px;
    transition: background-color 0.3s ease; /* Transição suave */
}

.btn-login:hover {
    background-color: #0056b3;
}

.btn-cadastro {
    background-color: #D4AF37;
    border-color: #D4AF37;
    color: #000000;
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 1rem;
    transition: background-color 0.3s ease; /* Transição suave */
}

.btn-cadastro:hover {
    background-color: #c39e31;
}

.time-display {
    margin-left: 15px;
    font-weight: 500;
    color: #003087;
}

/* Botão WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease; /* Transição suave */
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #003087 0%, #005cbf 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.3rem;
    margin-top: 10px;
}

/* Cards */
.area-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background-color: #ffffff;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 48, 135, 0.3);
}

.area-card h3 {
    color: #003087;
}

.dica-card {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    background-color: #ffffff;
}

.dica-card:hover {
    transform: translateY(-5px);
}

.dica-card .card-title {
    color: #003087;
}

/* Formulário */
.form-section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-color: #003087;
    border-radius: 5px;
}

.btn-start-record {
    background-color: #003087;
    border-color: #003087;
    color: #FFFFFF;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    width: 100%;
    max-width: 180px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.btn-start-record:hover {
    background-color: #0056b3;
}

.btn-stop-record {
    background-color: #28a745;
    border-color: #28a745;
    color: #FFFFFF;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    width: 100%;
    max-width: 180px;
    transition: background-color 0.3s ease;
}

.btn-stop-record:hover {
    background-color: #218838;
}

.btn-submit {
    background-color: #D4AF37;
    border-color: #D4AF37;
    color: #000000;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    width: 100%;
    max-width: 200px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #c39e31;
}

/* Rodapé */
footer {
    background-color: #003087;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

/* Estilos para gravação */
#recording-status {
    margin-top: 10px;
    font-weight: bold;
    color: #003087;
}

.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .btn-start-record, .btn-stop-record, .btn-submit {
        width: 100%;
        margin-bottom: 10px;
        max-width: none;
    }
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    .navbar-actions {
        flex-direction: column;
        align-items: flex-end;
    }
    .btn-login, .btn-cadastro {
        width: 100%;
        margin-bottom: 5px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .form-section {
        padding: 15px;
    }
}