/* Inicialização */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    font-size: 10px;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
}

h1 {
    font-size: 7rem;
    font-weight: 300;
}

h2 {
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

h3 {
    font-size: 3.6rem;
    font-weight: 400;
}

p {
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 3.5rem;
    margin-bottom: 1rem;
}

/* Icon Colors */
.fa-microphone { color: tomato; }
.fa-bullhorn { color: olive; }
.fa-lightbulb { color: dodgerblue; }

/* Reutilizável */
.wrapper {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cabeçalho > Logo + Menu */
.flex-cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    height: 14rem;
    position: relative;
}

.logo {
    height: 9rem;
    margin-right: 2rem;
}

.site-menu ul {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-menu li {
    margin-left: 7rem;
}

.site-menu a {
    text-decoration: none;
    color: red;
    font-size: 2.4rem;
    font-weight: 500;
    transition: transform 0.3s;
    display: block;
}

.site-menu a:hover {
    color: navy;
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
}

/* Cover */
.cover {
    grid-area: cover;
    background: linear-gradient(
        rgba(99, 99, 99, 0.6),
        rgba(104, 104, 104, 0.6)
        ), url(images/cover-image.jpg);
    background-size: cover;
    background-position: 50%;
    background-attachment: fixed;
    overflow: hidden;
    color: #ffffff;
}

.flex-cover {
    display: flex;
    min-height: calc(100vh - 14rem);
    align-items: center;
}

.texto-cover {
    padding-top: 8rem;
    padding-bottom: 10rem;
}

.texto-cover h1 {
    font-size: 7rem;
    line-height: 8rem;
    text-shadow: 0.2rem 0.2rem 0.1rem #333333;
}

.texto-cover p {
    font-size: 2.2rem;
    font-weight: 300;
    margin-top: 3rem;
    line-height: 3rem;
}

.texto-cover .cta {
    background-color: yellowgreen;
    color: #ffffff;
    max-width: 40rem;
    border-radius: 1rem;
    padding: 2rem 3rem;
    margin-top: 4.5rem;
    font-size: 2rem;
    font-weight: 500;
    display: block;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s, transform 0.4s;
}

.texto-cover .cta:hover {
    background-color: olive;
    transform: scale(1.1);
}

/* Serviços */
.servicos {
    padding: 10rem 0;
    min-height: 100vh;
}

.servicos h2 {
    color: #333333;
}

.servicos h3 {
    color: #666666;
    margin-bottom: 2rem;
}

.servicos p {
    color: #666666;
}

.caixa-servicos {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    width: 100%;
    gap: 3rem;
}

.item-servico {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color: #fafafa;
    border-radius: 2rem;
    padding: 2rem;
}

.item-servico i {
    font-size: 12rem;
    padding: 1rem 1rem 3rem 1rem;
    transition: transform 0.4s;
}

.item-servico i:hover {
    transform: scale(1.2);
}

/* Contato */
.contato {
    padding: 10rem 0;
    min-height: 50vh;
    background-color: lightsalmon;
    color: #ffffff;
}

.caixa-endereco {
    display: flex;
    margin-top: 5rem;
}

.endereco {
    width: 45%;
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.endereco i {
    font-size: 6rem;
    padding: 0 1rem 1.5rem 1rem;
    color: gold;
    text-shadow: 1px 1px 2px red;
    transition: transform 5s;
}

.endereco i:hover {
    transform: scale(1.2);
    animation: linear 0.3s animacao forwards;
}

.telefone {
    padding-bottom: 3rem;
}

@keyframes animacao {
    0% {transform: scale(1);}
    20% {transform: scale(1.2) translateX(-5px);}
    40% {transform: scale(1.2) translate(5px);}
    60% {transform: scale(1.2) translateX(-5px);}
    80% {transform: scale(1.2) translate(5px);}
    90% {transform: scale(1.2) translateX(initial);}
    100% {transform: scale(1.2) translateX(initial);}
}

/* Rodapé */
.rodape {
    grid-area: rodape;
    background-color: #333333;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.rodape p {
    font-size: 2rem;
}



/* Responsível */
@media (max-width: 1069px) {
    .site-menu li {
        margin-left: 6rem;
    }
    
    .caixa-servicos {
        gap: 2rem;
    }
}

@media (max-width: 719px) {
    .flex-cabecalho {
        padding: 1.5rem 2rem;
        height: 10rem;
    }

    .logo {
        height: 7rem;
        margin-right: 2rem;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        border: 0;
        background: transparent;
        color: red;
        cursor: pointer;
        font-size: 3.2rem;
        padding: 1rem 0 1rem 1rem;
        width: 4.2rem;
    }

    .site-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 1.5rem 2rem;
        z-index: 10;
    }

    .site-menu.ativo {
        display: block;
    }

    .site-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .site-menu li {
        margin-left: 0;
    }
    
    .site-menu a {
        font-size: 1.8rem;
    }

    .cover {
        background-position: 40%;
    }
    
    .flex-cover {
        min-height: calc(100vh - 10rem);
    }
    
    .texto-cover {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .texto-cover h1 {
        font-size: 3.6rem;
        line-height: 4.2rem;
    }
    
    .texto-cover p {
        font-size: 1.8rem;
        font-weight: 300;
        margin-top: 2rem;
        line-height: 2.4rem;
    }
    
    .texto-cover .cta {
        margin-top: 2.5rem;
        font-size: 1.8rem;
        max-width: 100%;
    }

    .servicos {
        padding: 3rem 0;
    }
    
    .servicos h2 {
        font-size: 3.8rem;
        margin-bottom: 1.5rem;
    }
    
    .servicos h3 {
        font-size: 3.4rem;
        margin-bottom: 1rem;
    }
    
    .servicos p {
        font-size: 1.8rem;
        line-height: 2.4rem;
    }
    
    .caixa-servicos {
        margin-top: 2.5rem;
    }
    
    .item-servico {
        width: 100%;
    }
    
    .item-servico i {
        font-size: 9rem;
        padding: 1rem 1rem 2rem 1rem;
    }
    
    .contato {
        padding: 3rem 0;
    }

    .contato h2 {
        font-size: 3.8rem;
        margin-bottom: 1.5rem;
    }

    .contato p {
        font-size: 1.8rem;
        line-height: 2.4rem;
    }

    .endereco {
        width: 100%;
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .endereco i {
        font-size: 5rem;
        padding: 0 0 1rem 0;
    }

    .caixa-endereco {
        flex-direction: column;
        margin-top: 3rem;
    }

    .telefone {
        padding-bottom: 2rem;
    }
    
    .rodape {
        padding: 2rem 2rem 1rem 2rem;
        text-align: center;
    }
    
    .rodape p {
        font-size: 1.6rem;
        line-height: 2.4rem;
    }
}

@media (max-width: 489px) {
    .flex-cabecalho {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1.2rem 2rem;
        height: 10rem;
    }

    .logo {
        height: 7rem;
        margin-right: 2rem;
        margin-bottom: 0;
    }
    
    .site-menu ul {
        justify-content: center;
    }
    
    .site-menu li {
        margin-left: 0;
    }

    .flex-cover {
        min-height: calc(100vh - 10rem);
    }
}


/* Formulários */
form {
    margin-top: 20px;
}

input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=tel], input[type=number], textarea, select {
    background: #fafafa;
    color: #666;
    border: 1px solid #ccc;
    border-radius: 0;
    padding: 10px 15px;
    box-sizing: border-box;
    max-width: 100%;
    font-size: 22px;
    font-weight: 300;
    line-height: 33px;
}

input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=tel], input[type=number], select {
    width: 50%;
}

textarea {
    width: 100%;
}

button, html input[type=button], input[type=reset], input[type=submit] {
    border: 1px solid transparent;
    background: #666;
    cursor: pointer;
    -webkit-appearance: button;
    padding: 10px 20px;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    width: 30%;
}
