

header {
    width: 100%;
    height: 8.8rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;    
}

header nav {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

header nav ul {
    display: flex;
    gap: 4rem;
}

header nav ul a {
    color: var(--gray-100);
    text-align: center;    
    font-size: 1.6rem;    
    letter-spacing: 0.58px;
    transition: all .3s ease;
}

header nav ul a:hover {
    color: var(--pink-10);    
}

.s-hero {
    position: relative;
    width: 100%;
    padding-top: 11.3rem;    
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;    
}

.s-hero .container::after {
    content: "";
    width: 100%;
    height: 22rem;
    background-color: var(--pink-10);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.s-hero .text {
    position: relative;   
    text-align: center;
    width: 100%;
    max-width: 71.9rem;
    margin: 0 auto;
    margin-bottom: 6.4rem;    
}

.s-hero .text h1 {
    position: relative;  
    color: var(--white-0);
    font-weight: 600;    
    letter-spacing: -1.68px;
}

.s-hero .text h1::before {
    content: '';
    width: 100%;
    max-width: 59.9rem;
    height: 2.2rem;
    background: url("../ASSETS/arrow-h1.svg") no-repeat center center;   
    position: absolute;
    bottom: -0.8rem;
    left: 3.9rem;
    z-index: -1;
}


.s-hero .text p {
    max-width: 55.6rem;
    margin: 0 auto;
    letter-spacing: -0.54px;
    margin-top: 2.4rem;
    margin-bottom: 3.2rem;
    color: var(--gray-300);
}

.s-hero .text .arrow {
    position: absolute;
    bottom: 1.7rem;
    left: 5.5rem;
}

.s-hero .ilustra-hero {
    padding: 0 1.4rem 0 1.4rem
}

.s-digital {
    padding-top: 12.8rem;
}

.s-digital h3 {
    color: var(--white-0);
    margin: 0 auto;
    text-align: center;
    max-width: 53.5rem;
    margin-bottom: 6.4rem;
}

.s-digital ul {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-800);
    padding-bottom: 12.8rem;
}


