@import url('https://fonts.googleapis.com/css2?family=Ropa+Sans:ital@0;1&display=swap');

/* Reset */

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

:root {
    --container-max: 1760px;
    --container-wide: 1800px;
}

/* Documento */

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #222222;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap:40px
}

main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Imagens */

img {
    display: block;
    max-width: 100%;
}

/* Links */

a {
    color: inherit;
    text-decoration: none;
}

/* Listas */

ul,
ol {
    list-style: none;
}

/* Botões */

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    -webkit-tap-highlight-color: transparent;
}

input {
    box-sizing: border-box;
    border: solid rgba(0,0,0,0.5) 1px;
    border-radius: 2px;
}

/* Titulos */
h1,
.section-heading {
    font-size: 25px;
    font-family: "Ropa Sans", sans-serif;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}
p {
    color: rgba(0,0,0, 0.8);
}

.destaque{
    color: #1B7A45;
}

@media (min-width: 1024px) {

    h1,
    .section-heading {
        font-size: clamp(40px, 2.6vw, 52px);
    }
    p {
        font-size: 1.3rem;
    }

}