* {
    margin: 0;
    padding: 0rem;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

ol, ul {
    list-style: none;
}

body {
    -webkit-font-smoothing: antialiased;
    background: #F5F3F5;
}

body, input, textarea, button {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem;
}

@media (min-width: 769px) {
    header {
        padding: 1rem;
        background: #FCFCFC;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
    
    .nav {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .close-button {
        display: none;
    }
    
    .nav a {
        color: #84888E;
        font-size: 1.75rem;
        font-weight: 300;
    }
    
    .nav a span {
        color: #3A404a;
        font-size: 1.75rem;
        font-weight: 700;
    }
    
    .nav a span::before {
        content: "\2022";
        color: #629880;
        margin-right: 8px;
    }
    
    .nav-list {
        display: flex;
    
    }

    .nav-list li {
        margin-right: 2rem;
        cursor: pointer;
    }

    .nav-list a {
        color: #84888E;
        font-size: 1rem;
        font-weight: 300;
    }
    
    .nav-list a.active {
        color: #629880; /* Change this to the color you want when the section is active */
    }

    .mobile-menu {
        display: none;
    }
    
    .hero-container {
        height: 100vh;
        background-image: url('assets/plant_background.png');
        background-size: cover;
        display: grid;
        place-items: center;
    }
    
    .hero {
        display: flex;
        justify-content: center;
        align-items: stretch;
        box-shadow: 0 15px 25px rgb(0,0,0,0.12);
        overflow: hidden;
    }
    
    .hero-card,
    .hero-text {
        opacity: 0;
        transform: translateX(-50%);
        transition: opacity 1s ease, transform 1s ease;
    }
    
    .hero-card.show,
    .hero-text.show {
        opacity: 1;
        transform: translateX(0);
    }
    
    .hero-card {
        background-color: #F1D3CE;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 4.5rem;
    }
    
    .hero-card img {
        margin-bottom: 1rem;
        width: 8rem;
    }
    
    .hero-card h1 {
        color: #3A404A;
        font-size: 2rem;
        font-weight: 700;
        max-width: 160px;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-card p {
        color: #3A404A;
        font-size: 1.5rem;
        font-weight: 300;
    }
    
    .separator {
        width: 4rem;
        height: 0.25rem;
        background-color: #629880; /* Cor de fundo do retângulo */
        margin: 10px 0; /* Margem superior e inferior para espaçamento */
        margin-bottom: 1rem;
    }
    
    .hero-text {
        background-color: #fff;
        line-height: normal;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }    
    
    .hero-text h1 {
        color: #09101D;
        font-size: 4rem;
        font-weight: 700;
    }
    
    .hero-text h2 {
        color: #09101D;
        font-size: 2rem;
        font-weight: 400;
    }
    
    .hero-text p {
        color: #3A404A;
        font-size: 1rem;
        font-weight: 300;
        max-width: 19rem;
    }
    
    .hero-text button {
        width: 9rem;
        font-size: 1.25rem;
        font-weight: 500;
        border-radius: 1.5rem;
        padding: .25rem 2rem;
        transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .scroll-down-arrow {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
    }
    
    .scroll-down-arrow span {
        display: block;
        width: 24px;
        height: 24px;
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        margin: 0 auto 4px;
    }

    @keyframes scrollAnimation {
        0%, 20% {
            opacity: 1;
            transform: translateY(0);
        }
        40%, 100% {
            opacity: 0;
            transform: translateY(8px);
        }
    }
    
    .scroll-down-arrow {
        animation: scrollAnimation 2s infinite ease-in-out;
        transition: transform 0.5s ease-in-out;
    }
    
    .scroll-down-arrow:hover {
        transform: scale(1.2);
    }
    
    .hero-contact-button {
        border: 2px solid #629880;
        background-color: #629880;
        color: #fff;
    }
    
    .hero-contact-button:hover {
        border: 2px solid #72A38D;
        background-color: #72A38D;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    
    .about-container {
        background-color: #F5E3E0;
        color: #16201B;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4rem;
        gap: 2rem;
    
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    }
    
    .about-container.show {
        opacity: 1;
        transform: translateY(0);
    }
    
    .about-img {
        display: flex;
        align-items: end;
    }

    .about-img img {
        width: 192px;
    }
    
    .about-text {
        max-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .about-text h3 {
        font-family: Pacifico;
        font-size: 2rem;
        color: #58806B;
        font-weight: 400;
    }
    
    .services-container {
        padding: 4rem;
    }

    .services-container h1 {
        font-family: Pacifico;
        font-size: 2.5rem;
        color: #2C4036;
        text-align: center;
        position: relative;
        font-weight:400;
    }

    .services-container h1::after {
        content: '';
        display: block;
        width: 24px;
        height: 4px;
        background-color: #E5B5AB;
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: .5rem;
      }

    .services-itens {
        display: flex;
        justify-content: center;
        gap: 4rem;

        font-size: 1rem;
        text-align: center;
        color: #3A404A;

        padding: 4rem;
    }

    .services-itens div{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .5rem;

        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s, transform 0.5s;
    }

    .services-itens div.show {
        opacity: 1;
        transform: translateY(0);
    }

    .services-itens h2 {
        max-width: 340px;
        font-weight: 700;
    }

    .services-itens p {
        max-width: 350px;
    }
    
    .appointment-container {
        padding: 10rem 5rem;
        background-image: url('assets/background_contact.png');
        background-size: cover; /* or contain, depending on your preference */
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: fixed;
    }
    
    .appointment-itens {
        max-width: 20rem;
        text-align: center;
        margin: 0 auto;
    
        display: flex;
        flex-direction: column;
        gap: 1rem;
    
        color: #fff;
    
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    }
    
    .appointment-itens.show {
        opacity: 1;
        transform: translateY(0);
    }
    
    .appointment-itens button {
        width: 21rem;
        font-size: 1.25rem;
        font-weight: 500;
        border-radius: 1.5rem;
        padding: .25rem 2rem;
        transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
        border: 2px solid #629880;
        background-color: #629880;
        color: #fff;
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    .warn-container {
        padding: 4rem;
    }

    .warn-container h2 {
        font-weight: 100;
        text-align: center;
    }

    .footer {
        display: flex;
        justify-content: space-between;
        padding: 3rem 2rem;
        align-items: center;

        background: #E0E0E1;
    }
    
    .footer p {
        font-size: .75rem;
        font-weight: 300;
    }
    
    .footer__contacts {
        display: flex;
        text-align: center;
        align-items: center;
        gap: 3rem;
    }
    
    .footer__contacts h3 {
        margin-bottom: .5rem;
    }
    
    .footer__contacts img {
        width: 1.25rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
        background: #F5F3F5;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    
    }

    .nav {
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav a {
        color: #84888E;
        font-size: 1rem;
        font-weight: 300;
    }
    
    .nav a span {
        color: #3A404a;
        font-size: 1rem;
        font-weight: 700;
    }
    
    .nav a span::before {
        content: "\2022";
        color: #58806B;
        margin-right: 8px;
    }

    .close-button {
        position: fixed;
        top: 20px;
        right: 20px;
        cursor: pointer;
        z-index: 1002;
        display: none;
    }
    
    .mobile-menu-open .close-button {
        display: block;
    }
    
    .close-button span {
        font-size: 30px;
        color: #58806B;
    }

    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        background-color: #fff;
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100%;
        padding-top: 80px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1001;
        padding: 4rem 2rem;   
    }

    .nav-list li {
        margin-bottom: 2rem;
    }
    
    .mobile-menu-open .overlay {
        display: block;
    }
    
    .mobile-menu-open .nav-list {
        transform: translateX(0);
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1000;
    }
    
    .hero-container {
        width: 100%;
        background-image: url('assets/plant_background.png');
        background-size: 100vw 100%;
        background-repeat: no-repeat;
        display: grid;
        place-items: center;
    }
    
    .hero {
        box-shadow: 0 15px 25px rgb(0,0,0,0.12);
        margin: 5rem 0 3rem 0;
    }
    
    
    .hero-card,
    .hero-text {
        opacity: 0;
        transform: translateX(-50%);
        transition: opacity 1s ease, transform 1s ease;
    }
    
    .hero-card.show,
    .hero-text.show {
        opacity: 1;
        transform: translateX(0);
    }
    
    .hero-card {
        background-color: #E9BFB5;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 4.5rem;
        max-width: 280px;
    }
    
    .hero-card img {
        margin-bottom: 1rem;
        width: 8rem;
    }
    
    .hero-card h1 {
        color: #3A404A;
        font-size: 2rem;
        font-weight: 700;
        max-width: 160px;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-card p {
        color: #3A404A;
        font-size: 1.5rem;
        font-weight: 300;
    }
    
    .separator {
        width: 4rem;
        height: 0.25rem;
        background-color: #58806B; /* Cor de fundo do retângulo */
        margin: 10px 0; /* Margem superior e inferior para espaçamento */
        margin-bottom: 1rem;
    }
    
    .hero-text {
        max-width: 280px;
        background-color: #fff;
        line-height: normal;
        padding: 2rem;
    
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        gap: 1rem;
    }
    
    .hero-text h1 {
        color: #09101D;
        font-size: 4rem;
        font-weight: 700;
    }
    
    .hero-text h2 {
        color: #09101D;
        font-size: 2rem;
        font-weight: 400;
    }
    
    .hero-text p {
        color: #3A404A;
        font-size: 1rem;
        font-weight: 300;
        max-width: 19rem;
    }

    .hero-text div {
        margin: auto;
    }
    
    .hero-text button {
        width: 9rem;
        font-size: 1.25rem;
        font-weight: 500;
        border-radius: 1.5rem;
        padding: .25rem 2rem;
        transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .hero-contact-button {
        border: 2px solid #58806B;
        background-color: #58806B;
        color: #fff;
    }
    
    .about-container {
        background-color: #F5E3E0;
        color: #16201B;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4rem;
        gap: 2rem;
    
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    }
    
    .about-container.show {
        opacity: 1;
        transform: translateY(0);
    }
    
    .about-img {
        display: flex;
        align-items: end;
    }

    .about-img img {
        width: 192px;
    }
    
    .about-text {
        max-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .about-text h3 {
        font-family: Pacifico;
        font-size: 2rem;
        color: #58806B;
        font-weight: 400;
    }

    .services-container {
        padding: 4rem;
    }

    .services-container h1 {
        font-family: Pacifico;
        font-size: 2rem;
        color: #2C4036;
        text-align: center;
        position: relative;
        font-weight: 400;
    }

    .services-container h1::after {
        content: '';
        display: block;
        width: 24px;
        height: 4px;
        background-color: #E5B5AB;
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: .5rem;
      }

    .services-itens {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4rem;

        font-size: 1rem;
        text-align: center;
        color: #3A404A;

        margin-top: 4rem;
    }

    .services-itens div{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .5rem;

        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s, transform 0.5s;
    }

    .services-itens div.show {
        opacity: 1;
        transform: translateY(0);
    }

    .services-itens h2 {
        max-width: 296px;
        font-weight: 700;
    }

    .services-itens p {
        max-width: 280px;
    }
    
    .appointment-container {
        padding: 10rem 2rem;
        background-image: url('assets/background_contact.png');
        background-size: cover; /* or contain, depending on your preference */
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: fixed;
    }
    
    .appointment-itens {
        max-width: 20rem;
        text-align: center;
        margin: 0 auto;
    
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    
        color: #fff;
    
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    }
    
    .appointment-itens.show {
        opacity: 1;
        transform: translateY(0);
    }
    
    .appointment-itens button {
        width: 18rem;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 1.5rem;
        padding: .25rem 2rem;
        transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
        border: 2px solid #58806B;
        background-color: #58806B;
        color: #fff;
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    .warn-container {
        padding: 4rem;
    }

    .warn-container h2 {
        font-weight: 100;
        text-align: center;
    }
    
    .footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        gap: 3rem;

        background: #E0E0E1;
        padding: 2rem 2rem;
    }
    
    .footer p {
        font-size: .75rem;
        font-weight: 300;
    }
    
    .footer__contacts {
        display: flex;
        text-align: center;
        align-items: center;
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer__contacts h3 {
        margin-bottom: .5rem;
    }
    
    .footer__contacts img {
        width: 1.25rem;
    }
}


