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

body {
    max-width: 100%;
    overflow-x: hidden;
    padding-top: 80px;
}

.header {
    background-color: #eee;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 80px;
}

.header__btn {
    border: none;
    cursor: pointer;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    position: relative;
    height: 100%;
    gap: 2rem;
}

.header__logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__logo {
    width: 180px;
    height: auto;
    mix-blend-mode: multiply;
    z-index: 2;
}

.header__menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.header__menu-btn:hover {
    color: #fece06;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 auto;
    z-index: 1;
}

.header__nav ul {
    display: flex;
    gap: 4rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header__nav a {
    color: #666;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 0.25rem;
    text-transform: uppercase;
}

.header__nav a:hover {
    color: #fece06;
    border-bottom: 2px solid #fece06;
}

.header__nav a.active {
    color: #fece06;
}

.header__nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fece06;
    transition: transform 0.3s ease;
}

.showroom {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/Banner Site - Kamell1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: -80px;
    transition: background-image 0.5s ease-in-out;
}

.showroom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: -1;
}

.showroom.transitioning::before {
    opacity: 1;
}

.showroom__content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.showroom__content p {
    font-size: 1.5rem;
    font-weight: 300;
}

.showroom__indicators {
    position: absolute;
    bottom: 2rem;
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
}

.indicator.active {
    background-color: white;
}

.showroom__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.showroom__nav:hover {
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

.showroom__nav--prev {
    left: 20px;
}

.showroom__nav--next {
    right: 20px;
}

.sobre {
    padding: 5rem 1rem;
    background-color: #f8f9fa;
}

.sobre__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
}

.sobre__content strong {
    color: #fece06;
}

.solucoes {
    padding: 5rem 1rem;
    background-color: white;
}

.solucoes__titulo {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.solucoes__descricao {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

.solucoes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.card__content {
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}


.card__content:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card__content img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;

}

.card__content h3 {
    padding: 1.5rem;
    margin: 0;
    font-size: 1rem;
    color: #666;
    text-align: center;
    font-weight: 600;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color:  rgba(254, 206, 6, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card__content:hover .card__overlay {
    opacity: 1;
}

.vermais__btn { 
    width: auto;
    min-width: fit-content;
    background-color: transparent;
    color: #333;
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    border: 3px solid #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.vermais__btn:hover {
    background-color: #333;
    color:  #eee;
    transform: scale(1.05);
}

.carousel {
    position: relative;
    width: 100%;
    height: 80vh;
    margin-top: 0;
    overflow: hidden;
}

.carousel__container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel__track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel__slide[aria-hidden="false"] {
    opacity: 1;
    z-index: 1;
}

.carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel__controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 2;
}

.carousel__button {
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel__button:hover,
.carousel__button:focus {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.carousel__indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.carousel__indicator {
    width: 0.75rem;
    height: 0.75rem;
    border: 2px solid white;
    border-radius: 50%;
    padding: 0;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel__indicator[aria-selected="true"] {
    background: white;
    transform: scale(1.2);
}

.carousel__toggle {
    display: none;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel__toggle:hover,
.carousel__toggle:focus {
    background: rgba(0, 0, 0, 0.8);
}

/* Overlay gradiente para melhor contraste */
.carousel__slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .header {
        height: 60px;
        display: flex;
        align-items: center;
    }

    .header__container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.5rem 1rem;
        width: 100%;
        position: relative;
    }

    .header__logo {
        width: 120px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .header__menu-btn {
        display: block;
        padding: 0.25rem;
        font-size: 1.25rem;
        margin-left: auto;
        position: relative;
        z-index: 2;
    }

    .header__container::before {
        content: '';
        width: 2rem;
        height: 1px;
        visibility: hidden;
    }

    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        transform: none;
        background-color: #fff;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 1000;
    }

    .header__nav.active {
        display: block;
    }

    .header__nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .header__nav a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    .showroom {
        height: 70vh;
        margin-top: -60px;
    }

    .showroom__content h1 {
        font-size: 2.5rem;
    }

    .showroom__content p {
        font-size: 1.2rem;
    }

    .solucoes__grid {
        grid-template-columns: 1fr;
    }

    .showroom__nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .showroom__nav--prev {
        left: 10px;
    }

    .showroom__nav--next {
        right: 10px;
    }

    .carousel {
        height: 70vh;
        margin-top: 0;
    }

    .carousel__controls {
        padding: 0 1rem;
    }

    .carousel__button {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .carousel__indicator {
        width: 0.5rem;
        height: 0.5rem;
    }

    .carousel__toggle {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 2rem;
        height: 2rem;
    }
}

/* Ajuste adicional para telas muito pequenas */
@media (max-width: 360px) {
    .header__logo {
        width: 100px;
    }

    .header__container {
        padding: 0.5rem;
    }
}

/* Reduz movimento para usuários que preferem menos animação */
@media (prefers-reduced-motion: reduce) {
    .carousel__track,
    .carousel__slide {
        transition: none;
    }
}

/* Seção de Contato */
.contato {
    background: linear-gradient(to right, 
                rgba(15, 15, 15, 0.97), 
                rgba(30, 25, 5, 0.95), 
                rgba(35, 30, 5, 0.93),
                rgba(40, 35, 8, 0.9)), 
                url('imagens/Banner Site - Kamell1.png');
    background-size: cover;
    background-position: center;
    padding: 5rem 1rem;
    color: white;
    text-align: center;
}

.contato__container {
    max-width: 800px;
    margin: 0 auto;
}

.contato__titulo {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fece06;
}

.contato__subtitulo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contato__descricao {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.contato__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contato__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: #88886591;
    color: white;
}

.contato__btn:hover {
    background-color: #6fa8dc;
    transform: translateY(-2px);
}

.contato__btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contato__buttons {
        flex-direction: column;
        align-items: center;
    }

    .contato__btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Rodapé */
.footer {
    background-color: #1a1a1a;
    padding: 2rem 1rem;
    color: white;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo {
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer__nav {
    display: flex;
    gap: 2rem;
}

.footer__nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    text-transform: uppercase;
}

.footer__nav a:hover {
    color: #fece06;
}

.footer__copyright {
    font-size: 0.8rem;
    color: #666;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.footer__social a:hover {
    color: #fece06;
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .footer__container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer__nav {
        flex-direction: column;
        gap: 1rem;
    }

    .footer__social {
        justify-content: center;
    }
}

/* Seção de Casos de Sucesso */
.casos {
    padding: 5rem 1rem;
    background-color: #f8f9fa;
}

.casos__titulo {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.casos__descricao {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

.casos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.caso__texto {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    line-height: 1.5;
}

/* Responsividade para Casos de Sucesso */
@media (max-width: 768px) {
    .casos__grid {
        grid-template-columns: 1fr;
    }
}

/* Ajuste para telas médias */
@media (max-width: 1024px) {
    .header__container {
        padding: 0.5rem 1rem;
        gap: 1rem;
    }

    .header__nav {
        flex: 0 1 auto;
    }

    .header__nav ul {
        gap: 2rem;
    }

    .header__nav a {
        font-size: 1rem;
        white-space: nowrap;
    }

    .header__logo {
        width: 160px;
    }
}

/* Estilos para a página de Instalações */
.instalacoes__content {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
}

.instalacoes__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.instalacoes__text {
    flex: 2;
}

.instalacoes__text h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.instalacoes__text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.instalacoes__text ul {
    list-style: none;
    padding: 0;
}

.instalacoes__text ul li {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.instalacoes__text ul li::before {
    content: '•';
    color: #fece06;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.instalacoes__card {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.instalacoes__card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instalacoes__content--reverse .instalacoes__container {
    flex-direction: row-reverse;
}

@media (max-width: 1024px) {
    .instalacoes__container {
        flex-direction: column;
        gap: 2rem;
    }

    .instalacoes__content--reverse .instalacoes__container {
        flex-direction: column;
    }

    .instalacoes__card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .instalacoes__content {
        padding: 3rem 1.5rem;
    }

    .instalacoes__text {
        text-align: center;
    }

    .instalacoes__text h1 {
        font-size: 2rem;
    }

    .instalacoes__text p,
    .instalacoes__text ul {
        font-size: 1rem;
    }

    .instalacoes__card img {
        height: 300px;
    }
}

.span {
    font-weight: 600;
    color: black;
}