body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #2c3e50;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.btn-cta {
    background-color: #e74c3c;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-cta:hover {
    background-color: #c0392b;
}

.banner {
    background-image: url('banner.png');
    background-size: cover;
    color: white;
    object-fit: fill;
    background-repeat: no-repeat;
    text-align: center;
    padding: 200px 0;
}

.banner-texto {
    width: 600px;
    margin: 0 auto;
    /* background-color: #2c3e50; */
    background: rgba(243, 239, 239, 0.178);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 3.5px );
    -webkit-backdrop-filter: blur( 13.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.btn-banner {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.servicos {
    text-align: center;
    padding: 50px 20px;
}

.servico-lista {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.servico {
    text-align: center;
    width: 30%;
}

.servico img {
    width: 100px;
    height: 100px;
}

.depoimentos {
    background-color: #ecf0f1;
    padding: 50px 20px;
    text-align: center;
}

.depoimento-lista {
    display: flex;
    justify-content: space-around;
}

.depoimento {
    width: 40%;
}

footer {
    background-color: #34495e;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer .social-icons a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
}

footer .social-icons a:hover {
    text-decoration: underline;
}