/* Importa a fonte Poppins do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --main-color: #00eeff;
    --text-color: #ffffff;
    --bg-color-01: #0e49b5;
    --color-00: rgba(0, 0, 0, 0.1);

    /* Extras */
    --color-01: #999999;
    --color-02: #009539;
    --color-03: #7950f2;
    --color-04: #c00000;
    --color-05: #323232;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}

html {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

body {
    background-image:url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.1rem;
    background-image:url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 1px solid var(none);
}

.logo {
    font-size: 1.7rem;
    color: var(--text-color);
    font-weight: 600;
    cursor: default;
}

.nav-responsive {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-image:url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: auto;
}

.nav a, .nav-responsive a {
    font-size: 1.2rem;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    transition: color 0.4s;
}

.nav a:hover, .nav-responsive a:hover {
    color: var(--main-color);
}

section {
    min-height: 100vh;
    padding: 6rem 6rem 2rem;
    border-bottom: 1px solid var(--bg-color-02);
}

span {
    color: var(--main-color);
}

.home {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}


.sobre {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
}

.home-image img,
.sobre-img img {
    max-width: 100%;
    height: 100%;
}

.sobre {
    background-image:url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: auto;
}

.home-content {
    width: 45%;
    color:var(--text-color);
}

.sobre-content {
    width: 100%;
    color:var(--text-color);
}

.home-content h1,
.sobre-content h1 {
    font-weight: 700;
    line-height: 1.3;
    font-size: 2.5rem;
    color:var(--text-color);
}
.home-content h3,
.sobre-content h3 {
    font-weight: 700;
    font-size: 1.6rem;
}

.home-content p {
    margin-top: 1.2rem;
    text-align: justify;
}

.sobre-content p {
    margin-top: 1.2rem;
    text-align: justify;
}

.serviços h2,
.Nossas-lojas h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contato {
    background-image:url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: auto;
    color:var(--text-color);
    text-align: center;
    display: grid;
}


.form {
    width: 100%;
    max-width: 32rem;
    font-size: 1.125rem;
    margin: 0.6rem auto;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .form label,
  .form input,
  .form textarea,
  .form button {
    display: block;
    width: 100%;
  }
  
.form label {
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  
.form input, .form textarea {
    font-size: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--text-color);
    border-radius: 8px;
    transition: border-color, box-shadow 0.2s;
    background-image:url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: auto;
    color: var(--text-color);
  }
  
.form textarea {
    min-height: 13rem;
    resize: none;
  }
  
  .form input:hover,
  .form input:focus,
  .form textarea:hover,
  .form textarea:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px var(--main-color);
  }
  
.form button {
    display: block;
    padding: 1rem;
    background: var(--main-color);
    color: #fff;
    font: inherit;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
  }
  
.form button:hover, .form button:focus {
    outline: none;
    background-image:url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: auto;
  }

.contato h1, .contato h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}

.contato h1::before {
    content: "📧";
    display: block;
}

.contato h2::before {
display: block;
}


.serviços-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.serviços-container .serviços-box {
    padding: 2rem 1rem 5rem;
    border-radius: 1.2rem;
    text-align: center;
    background-image:url(../img/background.jpg);
    background-size: auto var(--text-color);
    transition: transform 0.5s ease, background-color 0.3s ease;
}

.serviços-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 30rem;
    margin-bottom: 1rem;
}

.serviços-container .serviços-box:hover {
    transform: scale(1.01);
    background-image:url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: auto;
}

.serviços-box i {
    font-size: 4.3rem;
    color: var(--text-color);
}

.serviços-box h3 {
    font-size: 1rem;

}


.nossas-lojas {
    background-image:url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color:var(--text-color);
    text-align: center;
    gap: 2.2rem;
}

.nossas-lojas-container {
    display: grid;
    gap: 1.2rem;
}

.nossas-lojas-box {
    position: relative;
    border-radius: 0.6rem;
    box-shadow: 0 0 0.6rem var(--main-color);
    overflow: hidden;
    display: flex;
}

.nossas-lojas-box img {
    width: 100%;
    transition: 0.5s ease;
}

.nossas-lojas-box img:hover {
    transform: scale(1.1);
}

.nossas-lojas-box .nossas-lojas-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, var(--color-05));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 4rem;
    transform: translateY(50rem);
    transition: 0.5s ease;
}

.nossas-lojas-box:hover .nossas-lojas-layer {
    transform: translateY(0);
}

.nossas-lojas-layer h4 {
    font-size: 1.2rem;
}

.nossas-lojas-layer p {
    margin: 0.2rem 0 0.5rem;
}

.nossas-lojas-layer a {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   width: 3rem;
   height: 3rem;
  background: var(--text-color); 
  border-radius: 50%;
}

.nossas-lojas-layer a i {
    font-size: 1.2rem;
    color: var(--bg-color-01);
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
    background-image:url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: auto;
    color: var(--text-color);
}

.social-media img {
    width: 3.5rem;
}

.social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: solid 0.15rem var(--main-color);
    border-radius: 90%;
    font-size: 2rem;
    color: var(--main-color);
    margin: 1.8rem 1rem 1.8rem 0;
    transition: 0.5s ease;
}

.social-media a:hover {
    background-color: var(--main-color);
    color: var(--bg-color-02);
    box-shadow: 0 0 0.3rem var(--main-color);
}

/* ==== button ==== */

 /* ==== button ==== */

/* ==== menu hamburguer ==== */
.menu-hamburguer {
    display: none;
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
    width: 2rem;
    height: 0.3rem;
    background-color: var(--text-color);
    margin: 0.4rem 0;
    transition: 0.3s ease;
}

.change .bar1 {
    transform: translate(0, 0.65rem) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -0.65rem) rotate(45deg);
}

/* ==== /menu hamburguer ==== */

/* ==== media queries ==== */

/* Extra Small (xs): Smartphone (portrait) */
@media (min-width: 0px) {
    .menu-hamburguer {
        display: block;
    }

    .nav {
        display: none;
    }

    .nav-responsive a {
        display: block;
        font-size: 1.2rem;
        margin: 0.5rem 0;
    }

    section {
        padding: 6rem 2.5rem;
    }

    .home {
        flex-direction: column;
        gap: 1.2rem;
        background-image:url(../img/background.jpg);
        background-repeat: no-repeat;
        background-size: auto;
        color:var(--text-color);
    }

    .serviços {
        flex-direction: column;
        gap: 1.2rem;
        background-image:url(../img/background.jpg);
        background-repeat: no-repeat;
        background-size: auto;
        color:var(--text-color);
    }

    .home-img, .serviços-img {
        width: 80%;
        max-width: 80%;
    }

    .home-content, .serviços-content {
        width: 100%;
        color:var(--text-color);
    }

    .home-content div {
        text-align: center;
    }

    .home-content h1, .serviços-content h1 {
        font-weight: 700;
        line-height: 1.3;
    }

    .serviços-container {
        flex-direction: column;
        align-items: center;
    }

    .serviços-box {
        width: 100%;
    }

    .nossas-lojas-container {
        padding: 0.5rem;
        font-size: 0.7rem;
        text-align: justify;
    }

    .nossas-lojas h2 {
        font-size: 2rem;
    }

    .nossas-lojas h4 {
        font-size: 0.7rem;
    }

    }

}

/* Small (sm): Smartphone (landscape) */
@media (min-width: 576px) {
    .home-img,.sobre-img {
        width: 35%;
        max-width: 35%;
    }

    .serviços-box {
        width: 70%;
    }

    .nossas-lojas-container {
        display: grid;
        gap: 2rem;
        padding: 2rem;
    }
}

/* Medium (md): Tablet */
@media (min-width: 768px) {
        .menu-hamburguer {
        display: none;
    }

    .nav {
        display: block;
    }

    .nav-responsive, .nav-responsive a {
        display: none;
    }

    .home, .sobre {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .home-img, .serviços-img {
        max-width: 35%;
    }

    .home-content, .sobre-content {
        width: 50%;
        color:var(--text-color);
    }

    .serviços-container {
        flex-direction: column;
        align-tems: center;
    } 

    .serviços-box {
        width: 60%;
        margin-bottom: 2rem;
    }
}

/* Large (lg): Notebook */
@media (min-width: 992px) {
   /* .home-img, .serviços-img {
        max-width: 35%; 
    } */

    .serviços-container {
        flex-direction: row;
        gap: 1.2rem;
    }

        .nossas-lojas-container {
        grid-template-columns: auto auto auto;
        gap: 2rem;
        padding: 2rem;
    }
}

/* Extra Large (xl): Desktop */
@media (min-width: 1200px) {
    .home-img, .serviços-img {
        max-width: 25%;
    }

    .home-content h1 {
        font-size: 2.7rem;
    }

    .home-content h3 {
        font-size: 2rem;
    }

    .nossas-lojas-container {
        grid-template-columns: auto auto auto;
        gap: 2rem;
        padding: 2rem;
        font-size: 1rem;
    }

    .nossas-lojas h2 {
        font-size: 1.2rem;
    }

    .nossas-lojas h4 {
        font-size: 1rem;
    }

    
    .serviços-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 35rem;
        width: auto;
        margin-bottom: 1rem;
    }

}
/* ==== media queries ==== */

