/* Body */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Header */
.header {
    background-color: #000;
    color: #ffc107;
    padding: 20px;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column; /* Adiciona flex-direction column para colocar a lista abaixo do logo */
    align-items: center; /* Centraliza os itens no eixo horizontal */
    text-align: center; /* Centraliza o texto dentro de cada elemento */
}

/* Logo */
.header .logo h1 {
    margin: 0;
    font-size: 24px;
}

/* Navigation */
.header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Faz a lista ser horizontal */
    justify-content: center; /* Centraliza os itens horizontalmente */
}

.header nav ul li {
    margin-left: 20px; /* Espaçamento entre os itens */
}

.header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.header nav ul li a:hover {
    color: #ffc107;
}

.hero {
    background-color: #000;
    color: #ffc107;
    text-align: center;
    padding: 100px 20px;
    margin-top: 80px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #ffc107;
    color: #000;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e0a800;
}

.services {
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    margin-bottom: 40px;
    color: #000;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 10px;
    padding: 20px;
    width: 500px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    border-radius: 5px;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
}

.about {
    background-color: #242422;
    color: #ffc002;
    padding: 60px 20px;
    text-align: center;
}

.contact {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffc107;
    color: #000;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

.cliente {
    background-color: #000;
    color: #ffc107;
    padding: 60px 20px;
    text-align: center;
}

.cliente img {
    width: 150px;
    height: auto;
    margin: 10px;
    border-radius: 8px;
}

.cliente h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cliente p {
    font-size: 18px;
    margin-bottom: 30px;
}

.saiba-mais-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    color: #fff;
    background-color: #007BFF;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(29, 26, 26, 0.1);
}

.saiba-mais-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(46, 41, 41, 0.15);
}

.saiba-mais-btn:active {
    background-color: #004494;
    transform: translateY(0);
}

.tecnico {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffc107;
    color: #000000;
}
.conclusao {
    background-color: #f0f0f0;
    padding: 40px 20px;
    text-align: center;
}

.conclusao-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 20px auto;
    max-width: 800px;
}

.conclusao-card h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.conclusao-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.orcamento {
    background-color: #ffe599;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.orcamento h3 {
    font-size: 24px;
    color: #d35400;
    margin-bottom: 10px;
}

.orcamento p {
    font-size: 16px;
    color: #333;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: #fff;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.whatsapp-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.whatsapp-button:hover {
    background-color: #1ebc5a;
}

.logo a {
    text-decoration: none; /* Remove o sublinhado do link */
    color: inherit; /* Mantém a cor original */
}

.logo a:hover {
    opacity: 0.8; /* Adiciona um leve efeito ao passar o mouse */
}