/* Resetando margin e padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonte */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar img {
    height: 50px;
    width: auto;
}

/* Menu toggle (hamburguer) */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.menu-toggle .bar {
    background-color: #333;
    height: 5px;
    width: 100%;
    border-radius: 5px;
}


/* Exibe o menu toggle (hamburguer) apenas em telas pequenas */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Exibe o ícone hambúrguer */
    }

    .navbar-list {
        display: none;
        visibility: hidden; /* Inicialmente escondido */
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 70px;
        right: 20px;
        background-color: #ffffff;
        padding: 15px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }
    .navbar-list.active {
        display: flex; /* Torna o menu visível */
        visibility: visible;
      }
      
  
}

/* Lista da navbar */
.navbar-list {
    list-style: none;
    display: flex;
}

.navbar-list li {
    margin-left: 20px;
}

.navbar-list li a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-list li a:hover {
    background-color: #f1f1f1;
    color: #363636;
    border-radius: 4px;
}

.navbar-list li a.active {
    color: rgb(0, 0, 0);
    border-radius: 4px;
    text-decoration: underline;
}

/* Seções de conteúdo */
.section {
    padding: 80px 20px;
    min-height: 100vh;
    background-color: #fff;
    color: #333;
}

.section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section p {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

/* Botão de WhatsApp */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366; /* Cor verde do WhatsApp */
    color: white;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    width: fit-content;
    margin: 20px auto;
}

.whatsapp-btn:hover {
    background-color: #128c7e; /* Cor mais escura do WhatsApp */
    transform: translateY(-5px);
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 24px;
}

/* Responsividade para os cards */
@media (max-width: 768px) {
    .service-card div {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .service-card div {
        width: 100%;
    }
}
