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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* BOTÃO WPP */ 
.whatsapp-link {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
}


/* Menu fixo */
header {
    z-index: 1000;
    position: sticky;
    top: 0;
    width: 100%;
    background: #000;
    color: white;
    text-align: center;
}

.logo-header {
    margin-right: 60px;
    width: 260px;
}

.header-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 20px;
}

nav a:hover {
    text-decoration: underline;
    color: #ee4d39;
}

/* menu barra */
.barra-smartphones {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin: 15px;
}

.bar {
    height: 4px;
    width: 30px;
    background-color: #fff;
    margin: 4px 0;
    transition: transform 0.3s;
}

/* Conteúdo centralizado */
main {
    flex: 1;
    text-align: center;
}

.container {
    margin: auto;
}

/* Serviços e Cards */
.celular-quebrado{
    background-image: url(cel-quebrado.png);
    background-position-x: 15%;
    background-size: 300px;
    background-position-y: 70%;
    background-repeat: no-repeat;
}
.servico-conserto{
    background-color: rgba(244, 244, 244, 0.8);
    width: 100%;
    padding: 40px 0;
    text-align: center;
}

.servico-conserto p{
    font-size: 25px;
    color: #000000;
    font-weight: 600;
    margin: 40px 0;
    width: 100%;
}

.card-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.card {
    width: 250px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

button {
    background-color: #ee4d39;
    margin: 60px 0;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    gap: 8px;
}

button a {
    font-weight: 700;
    text-decoration: none;
    color: #000;
}

button:hover {
    background-color: #1ebe5d;
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ee4d39;
}

.title {
    font-weight: bold;
    margin-bottom: 10px;
}

.description {
    font-size: 14px;
    color: #555;
}

/* CARROSSEL */
.carousel {
    margin: 40px auto;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}

.carousel-container {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 100%;
    align-items: center;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    width: 100vw;
    height: 30vw;
    display: block;
}

/* Sobre */
.sobre-mesa {
    width: 100%;
    height: 25vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 34%, #1e1e1e 76%);
    color: #fff;
    text-align: center;
}

.sobre {
    max-width: 1000px;
}

.sobre h1 {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 2px;
    color: #ee4d39;
    /*-webkit-text-stroke: 0.5px #f5f5f5;*/
}

.sobre p {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    color: #f5f5f5;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.space-40{
    height: 40px;
}

.space-30{
    height: 30px;
}

/* Horario */
.horario {
    background-color: rgba(244, 244, 244, 0.8);
    margin: 40px 0;
}

.horario h2{
    font-family: "Montserrat", "Roboto", sans-serif;
    font-size: 18px;
    color: #ee4d39;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.horario p {
    font-family: "Monstserrat", "Roboto", sans-serif;
    font-size: 16px;
    color: #666;
    letter-spacing: 1.5;
    margin-top: 8px;
}

.horario a{
    text-decoration: none;
}

.horario a :hover {
    color: #ee4d39;
}

/* Google Maps */
.mapa {
    margin: 0px auto;
}

iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Avaliaçoes */
.avaliacoes p {
    font-size: 1.5rem;
    line-height: 1.2;
    font-family: "Montserrat", "Roboto", sans-serif;
    font-weight: 600;
    margin: auto;
}

/* quem somos */
.quem-somos {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    padding: 80px 10%;
    background-color: rgba(244, 244, 244, 0.8);
    flex-wrap: wrap;
}

.quem-somos-texto {
    flex: 1 1 500px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.quem-somos-texto h2 {
    font-size: 2.5rem;
    color: #ee4d39;
    margin-bottom: 20px;
}

.quem-somos-texto p {
    font-size: 1.2rem;
    color: #000;
    line-height: 1.5;
}

.quem-somos-img {
    flex: 1 1 400px;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.quem-somos-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Rodapé fixo */
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #000;
    color: white;
    padding: 10px;
    text-align: center;
    gap: 80px;
}

.footer-a{
    display: flex;
}

.footer a {
    color: #fff;
    margin: 0 10px;
}

/* MONITORES - 1400px */
@media (max-width: 1400px) {
    .header-menu {
        gap: 16px;
    }
    
    .logo-header {
        margin-right: 20px;
        width: 160px;
    }

    nav a {
        font-size: 14px;
        margin: 0 4px;
    }
}

/* TABLETS - 768px */
@media (max-width: 768px) {
    .header-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: #000; 
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .header-menu.active {
        display: flex;
    }

    .barra-smartphones {
        display: flex;
    }

    .logo-header{
        margin-right: 0;
    }

    .quem-somos {
    flex-direction: column-reverse;
    text-align: center;
    }

    .quem-somos-img {
        max-width: 300px;
    }

    .quem-somos-texto h2 {
        font-size: 2rem;
    }

    .quem-somos-texto p {
        font-size: 1rem;
    }
}

/* CELULARES - 500px */
@media (max-width: 500px) {
    .footer {
        gap: 10px;
    }

    .footer p {
        font-size: 10px;
    }
}