
/* Geral */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

/* Header */
header {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 20px 0;
}

header .banner-image {
    width: 150px;
    margin-bottom: 10px;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
}

header p {
    font-size: 1rem;
    margin: 5px 0 0;
}

/* Breadcrumb para mobile */
.breadcrumb-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0056b3; /* Azul moderno */
    padding: 10px;
    color: white;
}

.breadcrumb-text {
    font-size: 14px;
    margin-left: 10px;
}


/* Toggle no topo direito */
.menu-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: white; /* Cor azul visível */
    z-index: 1001;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: #f0f4ff; /* Cor mais escura no hover */
}
/* Menu Responsivo */
.menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #ddd;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.menu.active {
    display: flex;
}

.menu li {
    margin: 10px 0;
}

.menu li a {
    text-decoration: none;
    color: #0056b3;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
}

.menu li a:hover {
    background-color: #0056b3;
    color: white;
}

/* Menu Desktop */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .menu {
        display: flex;
        flex-direction: row;
        position: static;
        transform: none;
        background-color: transparent;
        justify-content: space-around;
    }

    .menu li a {
        padding: 10px 15px;
    }

    .menu li a:hover {
        background-color: #f0f4ff;
        color: #333;
    }
}
/* Main Content */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

main h2 {
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 10px;
}

main p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service {
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.service a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.service a:hover {
    color: #0056b3;
}

/* Formulário */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

form button {
    background: #007BFF;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background: #0056b3;
}

/* Botão do WhatsApp */
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 1000; /* Mantém o botão acima de outros elementos */
}

#whatsapp-button:hover {
    background-color: #20b358;
    transform: scale(1.1);
}

#whatsapp-button .material-icons {
    font-size: 28px;
    color: white;
    line-height: 1;
}

/* Responsividade Geral */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    main h2 {
        font-size: 1.8rem;
    }

    form {
        padding: 15px;
    }
}

/* Botão de E-mail */
.email-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.email-button:hover {
    background-color: #0056b3;
}

/* Rodapé */
footer {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #333;
}

footer p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666;
}

footer .social-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .social-links a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: color 5s ease;
}

footer .social-links a:hover {
    color: #0056b3;
}

.breadcrumb-mobile {
    display: flex;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 10px;
    overflow: hidden;
}

.letreiro-container {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.letreiro ul {
    display: flex;
    gap: 50px; /* Espaçamento entre os itens */
    padding: 0;
    margin: 0;
    list-style: none;
    animation: scroll 12s linear infinite;
}

.letreiro li {
    flex-shrink: 0; /* Impede que os itens sejam redimensionados */
}

.letreiro li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.letreiro li a:hover {
    text-decoration: underline;
}

/* Animação do letreiro */
@keyframes scroll {
    from {
        transform: translateX(0); /* Começa fora da tela */
    }
    to {
        transform: translateX(-100%); /* Rola até desaparecer */
    }
}

.form-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.form-link:hover {
    background-color: #0056b3;
}
