
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #2C2C2C;
    color: white;
}

.top-bar {
    background-color: #1F1F1F;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 14px;
}

.top-bar a {
    color: #0091C2;
    text-decoration: none;
    height: auto;
}

.divider {
    height: 5px;
    background-color: #0091C2;
}

.logo-header {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-top: -20px;
    background-color: #2C2C2C;
    display: inline-block;
    padding: 10px 20px;
}

.logo-header img.logo-img {
    max-width: 140px;  /* ⬅️ Diminui a largura máxima */
    height: auto;
    object-fit: contain;
}    
.carousel {
    width: 100%;
    overflow: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slides img {
    width: 100%;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes slide {
    0% { transform: translateX(0%); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0%); }
}

.hero {
    padding: 60px 20px;
    text-align: center;
    background-color: #383838;
}

.hero h1 {
    font-size: 32px;
}

.hero p {
    font-size: 18px;
    margin: 20px 0;
}

.btn-hero {
    background-color: #0091C2;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.servicos, .sobre, .contato {
    padding: 60px 20px;
    text-align: center;
}

.servicos ul {
    list-style: none;
    padding: 0;
}

.servicos li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.servicos .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

input, textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

button {
    background-color: #0091C2;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1F1F1F;
    margin-top: 40px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.servicos {
    padding: 40px 20px;
    text-align: center;
    background-color: #001f3f; /* fundo escuro (opcional) */
}

.servicos h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: white;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    justify-items: center;
}

.servico-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 220px;
}

.servico-item img {
    width: 300px; /* tamanho médio */
    height: 300px;
    margin-bottom: 12px;
    object-fit: contain;
}

.servico-item p {
    font-size: 1em;
    color: white; /* subtítulo branco */
    text-align: center;
}

.feedbacks {
    background-color: #000;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.feedbacks h2 {
    font-size: 2em;
    color: #00aaff; /* azul claro */
    margin-bottom: 40px;
}

.feedbacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feedback-item {
    background-color: #111;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.1);
    transition: transform 0.3s;
}

.feedback-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
}

.comentario {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 15px;
    font-style: italic;
}

.cliente {
    font-weight: bold;
    color: #00aaff;
    font-size: 0.9em;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #000;
    color: white;
    font-size: 0.9em;
    flex-wrap: wrap;
}

footer p {
    margin: 0 auto;
    text-align: center;
    flex: 1 1 100%;
}

.social-icons {
    display: flex;
    gap: 20px;
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 180px;
}

.social-icons a img {
    width: 24px;
    height: 24px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(105%) contrast(105%);
    transition: filter 0.3s ease;
}

.social-icons a:hover img {
    filter: invert(55%) sepia(87%) saturate(652%) hue-rotate(171deg) brightness(92%) contrast(91%);
}