body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #373435; /* Atualizado para preto da identidade visual */
    line-height: 1.6;
    background-color: #FEFEFE; /* Fundo branco */
}

header {
    background-color: #373435; /* Atualizado para preto da identidade visual */
    padding: 10px 0;
    color: #FEFEFE; /* Texto branco */
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    max-height: 50px;
    transition: transform 0.3s ease;
}

header .logo:hover {
    transform: scale(1.1);
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #FEFEFE; /* Texto branco */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

header nav ul li a:hover {
    color: #F28235; /* Laranja */
}

section {
    padding: 60px 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.home-section {
    text-align: center;
    background: url('../images/home-banner.png') no-repeat center center/cover;
    color: #FEFEFE; /* Texto branco */
    height: 100vh;
    position: relative;
}

.home-section .intro {
    background: rgba(55, 52, 53, 0.6); /* Preto com opacidade */
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    position: absolute;
    top: 65%;
    left: 20px;
    transform: translateY(-50%);
}

.home-section .btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    color: #FEFEFE; /* Texto branco */
    background-color: #F28235; /* Laranja */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.home-section .btn:hover {
    background-color: #e65c00;
    transform: scale(1.05);
}

.about-section {
    background-color: #f4f4f4;
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1;
    padding-right: 20px;
}

.about-text h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #F28235; /* Laranja */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #F28235; /* Laranja */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.highlight {
    color: #F28235; /* Laranja */
    font-weight: bold;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire area */
    border-radius: 10px;
}

.services-section, .case-studies-section, .blog-section, .contact-section {
    background-color: #f4f4f4;
}

.separator {
    background: linear-gradient(to right, #F28235, #e65c00);
    height: 4px;
    margin: 40px 0;
}

.services-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.service-card {
    background: #fff;
    color: #333;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 0 0 calc(33.333% - 20px);
    margin-right: 20px;
    transition: background-color 0.3s ease-in-out;
}

.service-card img {
    width: 50px;
    margin-bottom: 10px;
}

.service-card:hover {
    background-color: #e65c00;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-btn {
    background-color: #F28235; /* Laranja */
    border: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-btn.active {
    background-color: #e65c00;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.popup-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.popup-details {
    display: none;
}

.contact-section {
    background: url('../images/map-background.png') no-repeat center center/cover;
    color: #fff;
    padding: 60px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 480px; /* Ajustado o tamanho do formulário */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #373435; /* Preto */
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 80%; /* Ajustada a largura do input */
    padding: 15px; /* Aumentado o padding para campos de entrada maiores */
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    color: #373435; /* Preto */
    font-size: 1.1em; /* Aumentado o tamanho da fonte para melhor legibilidade */
}

.contact-form input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.contact-form .privacy-note {
    font-size: 0.9em;
    color: #373435; /* Preto */
    margin-bottom: 20px;
    text-align: center; /* Centraliza o texto */
}

.contact-form .submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #F28235; /* Laranja */
    border: none;
    border-radius: 5px;
    color: #FEFEFE; /* Branco */
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    font-size: 1.1em;
}

.contact-form .submit-btn:hover {
    background-color: #e65c00;
}

footer {
    background-color: #373435; /* Preto */
    color: #FEFEFE; /* Branco */
    text-align: center;
    padding: 20px 0;
}

footer .social-links img {
    width: 30px;
    margin: 0 10px;
}
