header {
    width: 100%;
    height: 8.8rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255, 255, 0.24);

}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

header i {
    font-size: 18px;
    padding: 0 3px;
}

header nav ul {
    display: flex;
    gap: 4rem;
}

header nav ul a {
    color: var(--light-100);
    font-size: 1.6rem;
    letter-spacing: -0.48px;
    transition: opacity .3s ease;
}

header nav ul a:hover {
    opacity: 0.7;
}

.s-hero {
    position: relative;
    width: 100%;
    padding-top: 11.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.s-hero::after {
    content: "";
    width: 100%;
    height: 28rem;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.s-hero .text {
    position: relative;
    width: 100%;
    max-width: 71.9rem;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 6.4rem;
}

.s-hero .text h1 {
    position: relative;
    font-weight: 600;
    letter-spacing: -1.68px;
}

.s-hero .text h1::before {
    content: '';
    max-width: 59.9rem;
    height: 2.2rem;
    background: url("../imgs/line-title.svg") no-repeat left center ;
    position: absolute;
    bottom: -5px;
    left: 3.9rem;
    z-index: -1;
    animation: drawLine 1s 0.5s ease-in forwards;
}

@keyframes drawLine {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.s-hero .text p {
    max-width: 55.6rem;
    margin: 0 auto;
    margin-top: 2.4rem;
    margin-bottom: 3.2rem;
    letter-spacing: -0.54px;
    color: var(--light-300);
}

.s-hero .text .arrow {
    position: absolute;
    left: 4.5rem;
    bottom: 1.7rem;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(15px);
    }
    100% {
        transform: translateX(0px);
    }
}

.s-hero .ilustra {
    padding: 0 1.5rem;
}

.s-hero .ilustra-mobile {
   display: none;
}

.s-digital {
    padding-top: 12.8rem;
}

.s-digital h3{
    text-align: center;
    max-width: 53.5rem;
    margin: 0 auto;
    margin-bottom: 6.4rem;
}

.s-digital ul {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-800);
}

.s-digital li {
    margin-bottom: 6.4rem;
}

.s-digital h6 {
    margin: 1.8rem 0;
}

.s-digital p {
    color: var(--gray-600);
}

.pricing {
    padding: 6rem 2rem;
    background: var(--secondy-color);
    text-align: center;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing h2 {
    font-size: 3.4rem;
    margin-bottom: 3rem;
    color: var(--light-100);
}

.pricing-card {
    background: var(--gray-900);
    color: var(--light-100);
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.03);
}

.pricing-card h3 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    margin: 3rem 0;
    font-weight: bold;
}

.price .currency {
    font-size: 2.8rem;
    vertical-align: top;
}

.price .amount {
    font-size: 5rem;
}

.price .amount-cent {
    font-size: 3.2rem;
}

.price .period {
    font-size: 2.4rem;
    color: #ddd;
}

.description {
    margin: 1rem 0 2rem;
    font-size: 1.8rem;
    color: var(--light-200);
}

.description-sub {
    font-size: 1.8rem;
    font-weight: bold;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    font-size: 1.4rem;
}

.benefits li {
    margin: 2rem 0;
    font-size: 1.6rem;
}

.benefits i {
    color: var(--secondy-color);
}

.s-art-front {
    padding: 12.8rem;
}

.s-art-front .title-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6.4rem;
}

.s-art-front .title-text h3 {
    letter-spacing: -1.2px;
    font-weight: 600;
}

.s-art-front .title-text p {
    color: var(--gray-600);
    letter-spacing: -0.54px;
    margin-top: 1.6rem;
}

.s-art-front .title-text .left {
    max-width: 53.9rem;
}

.s-art-front .title-text .left p {
    max-width: 45.2rem;
}

.s-art-front .title-text .right {
    max-width: 42.9rem;
}


/*Criando um grid de 3 colunas*/
.s-art-front .all {
    display: grid;
    grid-template-columns: repeat(3,1fr) ;
    gap: 3.2rem;
}

/*Deixa o primeiro card ocupando o tamanho de 2 cards (2/3)*/
.s-art-front .all .card-post:first-child {
    grid-column: span 2;
}

.s-newsletter {
    padding: 8.9rem 0;
    background-color: var(--secondy-color);
}
.s-newsletter {
    text-align: center;
}

.s-newsletter h2 {
    max-width: 64.6rem;
    margin: 0 auto;
    margin-bottom: 1.6rem;
    font-weight: 600;
    letter-spacing: -1.44px;
}

.s-newsletter p {
    max-width: 68.7rem;
    margin: 0 auto;
    margin-bottom: 2.4rem;
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--dark);
}

.about-content {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}

.about-title {
    text-align: center;
    font-size: 36px;
}

.about-description {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 6rem;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8rem;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--light-100);
    line-height: 1.8;
}

/*.about-text p:last-child {*/
/*    margin-bottom: 0;*/
/*}*/

footer {
    padding: 4.8rem 0;
}

footer .main-area {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    padding-bottom: 6.6rem;
    margin-bottom: 2.4rem;
}

footer .main-area .left {
    max-width: 27.9rem;
}

footer .main-area .left p{
    margin-top: 2.4rem;
    color: var(--gray-600);
    font-size: 1.6rem;
    line-height: 150%;
    letter-spacing: -0.48px;
}

footer .main-area .right {
    flex-grow: 1;
    max-width: 79.2rem;
    display: flex;
    justify-content: right;
    gap: 15rem;
}

footer .main-area .right .item-nav h6 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 3.2rem;
}
footer .main-area .right .item-nav li:not(:last-child) {
    margin-bottom: 3.2rem;
}

footer .main-area .right .item-nav ul li a {
    color: var(--gray-600);
    font-size: 1.6rem;
    letter-spacing: -0.48px;
    transition: color .3s ease;
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

footer .main-area .right .item-nav ul li a:hover {
    color: var(--light-100);
}

footer .copy {
    color: var(--gray-600);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.48px;
}

/*Até monitores pequenos  */
@media (max-width: 1200px){
    .s-digital {
        padding-top: 6.8rem;
    }
    .s-digital ul {
        gap: 3.2rem;
        padding-bottom: 6.8rem;
    }
    .item-digital .info h6 {
        font-size: 2rem;
    }
    .item-digital .info p {
        font-size: 1.6rem;
    }
    .s-art-front {
        padding: 6rem 0;
    }
    .s-art-front .all {
        gap: 1.6rem;
    }
    .s-art-front .all .card-post:first-child,
    .s-art-front .all .card-post:nth-child(2){
        grid-column: span 3;
    }
    footer .main-area .right {
        max-width: 66.2rem;
    }
}

/*Até tablet  */
@media (max-width: 991px) {
    .s-hero::after {
        height: 13rem;
    }
    .s-digital ul {
        flex-direction: column;
        align-items: center;
    }
    .s-digital li {
        margin-bottom: 1.6rem;
    }
    .s-art-front .title-text {
        flex-direction: column;
        align-items: center;
        margin-bottom: 4rem;
    }
    .s-art-front .title-text .right {
        max-width: 53.9rem;
    }
    .s-art-front .title-text .left{
        max-width: 100%;
        text-align: center;
    }
    .s-art-front .title-text .left p {
        max-width: 100%;
        margin-top: 8px;
    }
    .s-art-front .title-text .right {
        max-width: 100%;
        text-align: center;
    }
    .s-art-front .all {
        grid-template-columns: 1fr;
    }
    .s-art-front .all .card-post:first-child,
    .s-art-front .all .card-post:nth-child(2) {
        grid-column: initial;
    }
    footer .main-area {
        flex-direction: column;
        gap: 4rem;
    }
    footer .main-area .left {
        max-width: 100%;
        margin: 0 auto;
    }
    footer .main-area .left img {
        margin: 0 auto;
    }
    footer .main-area .right {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }

    header .btn-mobile {
        display: none;
    }

    .logo {
    margin: 0 auto;
    }

    .logo img {
        height: 50px !important;
    }

    .s-hero {
        padding-top: 6rem;
    }

    .s-hero .text h1{
        max-width: 49rem;
        margin: 0 auto;
    }

    .s-hero .text h1::before {
        left: 0;
        bottom: -4px;
        background-size: 100%;
    }

    .s-hero .text p {
        max-width: 41.6rem;
    }

    .s-hero .text .arrow {
        bottom: 3.7rem;
        left: 2rem;
        max-width: 6rem;
    }

    .about-text p:last-child {
        margin-bottom: 32px;
    }
}

/*Até celulares  */
@media (max-width: 560px) {
    header {
        height: 7.2rem;
    }
    header .logo {
        max-width: 18rem;
    }

    header nav ul a {
        display: block;
    }

    .s-hero {
        padding-top: 8.8rem;
    }
    .s-hero .text h1 {
        font-size: 4rem;
    }
    .s-hero .text h1::before {
        bottom: -6px;
    }
    .s-hero .text p {
        margin: 0.8rem 0 2.4rem 0;
        font-size: 1.6rem;
    }
    .s-hero .text .arrow {
        display: none;
    }
    .s-hero .ilustra {
        display: none;
    }
    .s-hero .ilustra-mobile {
        display: block;
    }
    .s-hero::after {
        height: 2.2rem;
    }
    .s-digital {
        padding-top: 8rem;
    }
    .s-digital ul {
        padding-bottom: 8rem;
        gap: 6.4rem;
    }
    .s-digital h3 {
        font-size: 2.8rem;
    }
    .s-art-front {
        padding: 8rem 0;
    }
    .s-art-front .title-text h3 {
        font-size: 2.8rem;
        max-width: 22.7rem;
        margin: 0 auto;
    }
    .s-art-front .title-text .left p {
        margin-top: 1.6rem;
    }
    .s-art-front .title-text p {
        font-size: 1.6rem;
    }
    .s-newsletter h2{
        font-size: 4rem;
    }

    .pricing h2 {
        font-size: 2.8rem;
    }

    .pricing-container .description{
        font-size: 1.6rem;
    }

    .pricing-card h3 {
        font-size: 2rem;
    }

    .price .currency {
        font-size: 2rem;
    }

    .price .amount{
        font-size: 4.4rem;
    }

    .price .amount-cent{
        font-size: 2.2rem;
    }

    .about-title {
        text-align: center;
        font-size: 28px;
    }

    .about-content {
        display: block;
        gap: 30px;
        align-items: center;
        margin-top: 30px;
    }

    .about-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .about-image {
        margin-bottom: 32px;
    }

    .about-text p{
        color: var(--gray-600);
        font-size: 16px;
    }

    .about-text p:last-child {
        margin-bottom: 32px;
    }

    footer .main-area .right {
        flex-direction: column;
        align-items: center;
        gap: 4.8rem;
    }
    footer .main-area .right .item-nav h6 {
        text-align: center;
    }
    footer .main-area .right .item-nav ul li a {
        justify-content: center;
    }
    footer .main-area .right .item-nav:last-child{
        width: 100%;
    }
    footer .main-area .right .item-nav:last-child ul {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    footer .main-area .right .item-nav:last-child ul li:not(:last-child) {
        margin-bottom: 0;
    }

    footer .main-area {
        padding-bottom: 4.8rem;
    }

    footer .copy {
        text-align: center;
        font-size: 1.4rem;
    }

    .whatsapp-button {
        background-color: var(--green-dark);
        color: var(--light-100);
    }

    .whatsapp-button:hover {
        background-color: var(--green-light);
        transform: translateY(-3px);
    }
}

