
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
}

header {
    position: relative;
    background: url('../imagens/background.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

header .logo {
    position: relative;
    z-index: 2;
}

header h1,
header p {
    position: relative;
    z-index: 2;
}

header h1 {
    font-size: 50px;
    font-weight: bold;
}

header p {
    font-size: 24px;
}

section {
    padding: 40px 20px;
    background-color: #f4f4f4;
}

.section-title {
    background-color: #d32f2f;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 22px;
    margin-bottom: 30px;
}

.content-box {
    margin: 0 auto;
    max-width: 1100px;
}

.content-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.services {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

.services img {
    width: 300px;
    height: auto;
    border-radius: 8px;
}

.areas-atuacao {
    list-style-type: none;
    font-size: 18px;
}

.areas-atuacao li {
    margin-bottom: 10px;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    overflow: hidden;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
}

.carousel-slide p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.carousel-slide h3 {
    font-size: 22px;
    margin-top: 15px;
    color: #d32f2f;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #d32f2f;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

.carousel-arrow.prev {
    left: 10px;
}

.carousel-arrow.next {
    right: 10px;
}

footer {
    background-color: #d32f2f;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .services {
        flex-direction: column;
        align-items: center;
    }

    .services img {
        width: 80%;
        margin-bottom: 20px;
    }
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-buttons a {
    display: block;
    width: 60px;
    height: 60px;
}

.floating-buttons img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.floating-buttons img:hover {
    transform: scale(1.1);
}

.areas-atuacao {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 40px 0;
}

.atuacao-item {
    background-color: #f9f9f9;
    padding: 20px;
    width: 24%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.atuacao-item:hover {
    transform: translateY(-10px);
}

.icon-circle {
    width: 100px;
    height: 100px;
    border: 2px solid #d32f2f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.icon-circle i {
    font-size: 40px;
    color: #d32f2f;
}

.atuacao-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.atuacao-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}
