@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    overflow-x: hidden;
}

/* NAVBAR */
.header {
    width: 100%;
    top: 0;
    z-index: 10;
}

.nav {
    margin: auto;
    padding: 12px 30px;
    display: flex;
    background-color: #fff;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo-header img {
    width: 200px;
    height: 100px;
    object-fit: cover;
}

.menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.menu a {
    text-align: center;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 300ms;
}

.menu a:hover {
    transform: translateY(-2px);
}

.menu .active {
    color: #1abc9c;
}

.menu .btn-contato img {
    width: 20px;
    margin-right: 8px;
}

.menu .btn-contato {
    display: flex;
    align-items: center;
    background: #1abc9c;
    color: #fff;
    padding: 10px 18px;
    border-radius: 20px;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 99;
}

@media (max-width: 768px) {

    .menu {
        position: absolute;
        top: 70px;
        right: 20px;
        background: #fff;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        border-radius: 10px;
        display: none;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        z-index: 99;
    }

}

/* SERVICES */
.services {
    max-width: 1200px;
    margin: 40px auto 40px auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: start;
}

.services-tittle h2{
    color: #1abc9c;
}

.services-tittle p{
    color: #000;
}

.services-item {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: 30px 30px 30px 0px;
    padding: 30px;
    border: 3px solid #1abc9c;
    flex-wrap: wrap;
}

/* IMAGEM */
.service-image {
    flex: 1;
    min-width: 280px;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px 20px 20px 0px;
}

/* CONTEÚDO */
.service-content {
    flex: 2;
    min-width: 280px;
}

.service-content h3 {
    color: #1abc9c;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.description {
    color: #000;
    margin-bottom: 20px;
}

/* BENEFÍCIOS */
.benefits {
    list-style: none;
    margin-bottom: 20px;
}

.benefits p {
    margin-bottom: 8px;
    position: relative;

    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits p::before {
    position: absolute;
    left: 0;
    color: #1abc9c;
    font-weight: bold;
}

.benefits img{
    width: 20px;
}

/* BOTÕES */
.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 300ms;
    border-radius: 5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.primary {
    background: #1abc9c;
    color: #fff;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .services {
        padding: 0px 20px;
    }

    .services-item {
        flex-direction: column;
        text-align: center;
    }

    .service-content {
        align-items: center;
    }

    .benefits li {
        text-align: left;
    }

    .buttons {
        justify-content: center;
    }
}

/* FOOTER */
.footer {
    background-color: #101010;
    color: #fff;
    padding-top: 60px;
}

.logo-footer img {
    width: 100%;
    max-width: 2000px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.footer-container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col a img {
    width: 24px;
    height: 24px;
}

.footer-col a:hover {
    opacity: 0.7;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100px;
}

/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 13px;
}

.footer-bottom a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: bold;
    transition: 300ms;
}

.footer-bottom a:hover {
    color: #ff3131;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .socials {
        align-items: center;
    }

    .footer-col h4,
    .footer-col p,
    .footer-col ul,
    .footer-col li,
    .footer-col a {
        text-align: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}