:root {
    --primary-color: #ffd700;
    --gray-color: #2B3033;
    --gray-color-light: #FAFAFA;
    --black-color: rgba(0, 0, 0, 0.4);
    --white-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif, Arial;
    background-color: #F7F7F7;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1;
}

header {
    background-color: var(--gray-color);
    display: flex;
    align-items: center;
    height: 7.8rem;
    padding: 0 6.2rem;
    justify-content: space-between;
}

#box {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 1.3rem;
}

li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-weight: medium;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--primary-color);
}

header #logo {
    width: 70px;
    height: 70px;
}

header .container-title {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    line-height: 1.3;

}

.container-title h1 {
    font-size: 19px;
    color: var(--white-color);
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.container-title h2 {
    font-size: 19px;
    color: var(--primary-color);
    font-weight: semi-bold;
    text-transform: uppercase;
}

main {
    flex: 1;
    padding: 2rem 6.2rem;
}

.sobre {
    background-color: var(--gray-color-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sobre h2 {
    font-size: 2.5rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.sobre p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.sobre strong {
    color: var(--gray-color);
}

.container-slider {
    display: flex;
    width: 100%;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.container-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.slider {
    opacity: 0;
    transition: opacity .2s;
    position: absolute;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.on {
    opacity: 1;
}

#buttonGive {
    background-color: #FFC107;
    color: #333;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 26px;
    font-family: 'Montserrat', sans-serif, Arial;
    font-weight: normal;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    position: absolute;
    bottom: 0;
}

#prev-button,
#next-button {
    border: none;
    cursor: pointer;
    font-size: 29px;
    color: #FFC107;
    background-color: transparent;
    z-index: 1;
}

#next-button {
    position: absolute;
    right: 0;
    margin-right: 2rem;
}

#prev-button {
    position: absolute;
    transform: rotate(180deg);
    left: 0;
    margin-left: 2rem;
}

.servicos-preview {
    padding: 50px;
    text-align: center;
}

.conteiner-sobrenos {
    background-color: #f9f9f9;
    margin: 0px 4rem;
    position: relative;
    padding: 30px;
    bottom: 4rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.conteiner-sobrenos .title {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.conteiner-sobrenos p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.veja-mais-btn {
    background-color: #FFC107;
    color: #555;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.veja-mais-btn:hover {
    background-color: #FFC107;
    transform: scale(1.05);
}

.servico-card {
    background-color: #fff;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.servico-card h3 {
    font-size: 24px;
    color: #333;
}

.servico-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    background-color: #FFC107;
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    margin-top: 1.4rem;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    background-color: #e0a806;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.container-questions {
    padding: 4.3rem;
    text-align: center;
    background-color: var(--gray-color);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.title {
    font-size: 3em;
}

#txtQuestion {
    color: var(--white-color);

}

.container-questions section {
    background-color: var(--primary-color);
    padding: 1rem;
    border-radius: 10px;
    transition: opacity 0.5s ease-in-out;
}



/* .description {
    display: none;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    cursor: pointer;
}

section:hover .description {
    display: block;
    opacity: 1;
} */

footer {
    background-color: var(--gray-color);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

footer p {
    font-size: 16px;
    color: #FFC107;
}

.mobile-menu {
    cursor: pointer;
    display: none;
}

.mobile-menu i {
    color: #fff;
    font-size: 1.5em;
}

.servicos-detalhados h2 {
    font-size: 3em;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.servico-detalhe {
    background-color: #fff;
    padding: 25px;
    margin: 20px 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-detalhe h3 {
    font-size: 24px;
    color: #333;
}

.servico-detalhe p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}


.servico-detalhe:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.on {
    opacity: 1;
}

@media (max-width: 899px) {
    header {
        padding: 0 2rem;
    }

    .container-title h1 {
        font-size: 16px;
    }

    .container-title h2 {
        font-size: 16px;
    }

    main {
        padding: 2rem;
    }

    .container-slider {
        gap: 0.5rem;
    }

    .container-images {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 120px;
        left: 0;
        width: 100%;
        background-color: var(--gray-color);
        padding: 1rem;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    nav a {
        color: var(--white-color);
    }

    nav ul {
        display: none;
    }

    nav ul.active {
        display: block;
    }
}

@media (max-width: 415px) {
    .container-title h1 {
        font-size: 14px;
    }

    .slider {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 120px;
        left: 0;
        width: 100%;
        background-color: var(--gray-color);
        padding: 1rem;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    nav a {
        color: var(--white-color);
    }

    nav ul {
        display: none;
    }

    nav ul.active {
        display: block;
    }
}