/* 
Structure:

1: CSS VARIABLES
2: CSS RESET
3: HTML ELEMENTS
5: BUTTONS & LINKS
4: INPUTS
*/

/* CSS VARIABLES */
:root {
    --white: #f5f5f5;
    --teal: #008c8d;
    --grey-1: #4a4a4a;
    --grey-2: #a0a0a0;
    --grey-opaque: rgb(160, 160, 160, 0.05);
    --yellow: #ffb800;
    --green: #00c49a;
}

/* RESET */
*,
*:before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Gill Sans", "Gill Sans MT", Helvetica, sans-serif;
    font-size: 62.5%; /* 1rem = 10px conversion */
    font-weight: 100;
    line-height: 1.4;
    letter-spacing: 0.07rem;
    background-color: var(--white);
}

/* HTML ELEMENTS */
h1, h2, h3 {
    font-weight: 300;
}

h1, h3, .brand {
    color: var(--teal);
}

h1 {
    font-size: 4rem;
}

h2 {
    color: var(--grey-1);
    font-size: 2.75rem;
}

h3 {
    font-size: 2.25rem;
}

p, a, li {
    font-size: 1.2rem;
    line-height: 1.5;
}

p, li {
    color: var(--grey-2);
}

a {
    color: var(--grey-1);
    text-decoration: none;
}

@counter-style tick {
    system: cyclic;
    symbols: "✓";
    suffix: " ";
}

ul {
    list-style: tick;
}

li::marker {
    color: var(--green);
}

header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    padding: 0.3% 15%;
    border-bottom: 0.02rem solid var(--grey-2);
}

.logo {
    font-weight: 350;
}

.container-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    padding: 2% 10%;
}
/* 
.hero {
    position: relative;
} */

.hero > h3 {
    padding-bottom: 7rem;
}

.hero-benefits_list {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: space-evenly;
    gap: 0.75rem 0.5rem;
    width: 100%;

    /* position: absolute;
    bottom: 8rem;
    padding: 0 15%; */

    padding: 15% 0% 0% 1.5%;
}

#benefits, #about, footer {
    background-color: var(--grey-opaque);
}

.section-header {
    padding-bottom: 10%;
}

.cards-benefits, .cards-process {
    display: grid;
    align-content: center;
    gap: 3rem;
}

/* .cards-benefits *, .cards-process * {
    border: orange dashed 0.1rem;
} */

.cards-benefits {
    grid-template-columns: repeat(6, 1fr);
    /* 
        border: hotpink dashed 0.1rem; */
}

.cards-benefits article:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
}

.cards-benefits article:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1;
}

.cards-benefits article:nth-child(3) {
    grid-column: 5 / 7;
    grid-row: 1;
}

.cards-benefits article:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
}

.cards-benefits article:nth-child(5) {
    grid-column: 4 / 6;
    grid-row: 2;
}

.benefit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 20rem;
    padding: 1.5rem;
}

.card_icon {
    height: 4rem;
}

.card_icon path, .card_icon polyline, .card_icon circle {
    stroke-width: 8;
    stroke: var(--grey-1);
}

.card_header {
    font-size: 1.75rem;
}

.benefit .card_header {
    padding: 2rem 0rem 1rem;
}

.card_body {
    text-align: center;
    text-wrap: balance;
}

.cards-process {
    grid-template-columns: repeat(3, auto);
}

.process {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 30rem;
    padding: 1rem;
    border: var(--grey-2) solid 0.05rem;
}

.process-header_container {
    text-align: center;
}

.card_process-list li {
    font-size: 1rem;
    color: var(--grey-1);
}

.container-about {
    display: flex;
    align-items: center;
    padding: 0 10rem;
}

.container-profile_pic {
    overflow: hidden;
    max-height: 8rem;
    max-width: 8rem;
    border-radius: 50%;
    border: 0.06rem, solid, var(--yellow);
    margin-right: 4rem;
}

.profile_pic {
    height: 100%;
    width: 100%;
}

.about_text {
    text-wrap: balance;
}

.about_text p:nth-child(even) {
    padding-top: 0.8rem;
}

.about_text p.brand {
    padding-top: 2rem;
}

.profile_name, .link-linkedin {
    color: var(--grey-1);
}

#closer-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 30rem;

    /* 
        display: grid;
        place-items: center; */
}

#closer-cta h3 {
    padding-bottom: 4rem;
}

footer {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0rem;
}

.copyright, .link-linkedin {
    font-size: 0.8rem;
}

/* BUTTONS & LINKS */
.nav-link {
    font-size: 1rem;
    padding: 0rem 1rem;
}

.btn {
    cursor: pointer;
    border: none;
    border-radius: 5px;
    display: inline-block;
    background-color: var(--yellow);
}

.cta-1 {
    padding: 1rem 2.5rem;
}

.cta-2 {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    margin-left: 1.5rem;
}
