/* VARIABLES */
:root {
    /* COLORS VARIABLES */
    --black: #000;
    --white: #fff;
    --green: #4e5a4e;
    --light-green: #678785;
    --bg-light: #E3E6DE;
    --bg-light-2: #d2d8d2;
    --bg-green: #b4c8c4;
    --bg-a-color: #00bb2d;
    /* TEXT STYLES */
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Roboto', sans-serif;
}

/* GENERAL ELEMENTS CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    font-family: var(--primary-font);
}

body {
    background: var(--bg-light);
    overflow-x: hidden;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
}

h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green);
}

h3 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--light-green);
}

p {
    font-family: var(--secondary-font);
    font-size: 1rem;
    text-align: justify;
}

a.contato {
    display: inline-block;
    box-sizing: border-box;
    text-decoration: none;
    background-color: var(--bg-a-color);
    color: var(--white);
    border-radius: 15px;
    padding: 0.5rem 1rem;
    transition: opacity 0.3s ease-in-out;
}

a.contato:hover {
    opacity: 0.75;
}

/* NAVBAR STYLES */

header .navbar {
    background-color: var(--bg-green);
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    padding: 0;
    position: fixed;
    width: 100%;
    z-index: 3;
}

.navbar .navbar-brand {
    padding: 8px 0 0 0;
    margin: 0;
}

.navbar .navbar-brand img {
    height: 80px;
    width: auto;
}

.navbar .navbar-collapse {
    justify-content: end;
}

.navbar-collapse .navbar-nav {
    align-items: center;
}

.navbar .navbar-collapse .nav-link {
    display: inline-block;
    font-size: 1rem;
    color: var(--black);
}

.navbar .navbar-collapse .nav-link::before {
    content: '';
    position: relative;
    display: block;
    width: 0;
    height: 3px;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E3E6DE;
    transition: all 0.3s ease-in-out;

}

.navbar .navbar-collapse .nav-link:hover::before {
    visibility: visible;
    width: 100%;
}

.nav-item-icon {
    margin: 0 0.5rem;
}

.nav-link-icon {
    font-size: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--green);
    padding: 0.2rem 0.5rem;
    transition: all 0.3s ease-in-out;
}

.nav-link-icon:hover {
    background-color: var(--light-green);
    color: var(--white);
}

/* HERO SECTION STYLES*/

.hero-section .hero-titles h1 {
    margin: 0 0 1rem 0;
}

.hero-section .hero-titles h2 {
    margin: 1rem 0 1.5rem 0;
}

.hero-section .hero-photo .stella-photo {
    max-width: 50%;
    height: auto;
}

/* THERAPY AND HELP SECTION STYLES */

.teraphy-section,
.help-section {
    background-color: var(--bg-light-2);
}

.teraphy-section h3 {
    margin: 1.5rem auto;
}

.help-section h3 {
    margin: 1.5rem auto;
}

/* FAQ SECTION STYLES */

.faq-section {
    margin: 5rem auto;
}

.faq-section .faq-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* ACCORDION CSS */
.faq-accordion .accordion .accordion-item .accordion-button {
    background-color: var(--green);
    color: var(--white);
    font-weight: 700;
}

.faq-accordion .accordion .accordion-item .accordion-body {
    font-weight: 600;
}


/* BENEFITS SECTION */

.benefits-section {
    margin: 5rem auto;
}

.benefits-section h3 {
    margin: 1.5rem auto;
}

.benefits-section h4 {
    margin: 1.5rem auto;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
}

.benefits-section .fa-stack {
    color: var(--bg-a-color);
}

.benefits-section .text-muted {
    font-size: 1rem;
    text-align: center;
}

/* ABOUT SECTION STYLES */

.about-section {
    margin: 1.5rem auto;
}

.about-section h3 {
    margin-bottom: 1.5rem;
}

.about-section p {
    margin: 1.5rem auto;
}

.about-section .about-photo {
    background: var(--green);
    width: 30%;
    padding: 0.5rem;
    position: relative;
}

.about-section .about-photo .stella-photo {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}


/* FOOTER STYLES */

footer .footer {
    background-color: var(--green);
    color: var(--bg-light);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer p {
    text-align: center;
}

/* MODAL CSS */

.modal-header .btn-close {
    padding-right: 30px;
}

.modal-body label {
    color: var(--green);
    font-weight: 700;
}

.modal-footer .btn-primary {
    background-color: var(--bg-a-color);
    border: none;
    color: #fff;
    transition: all ease-in;
}

.modal-footer .btn-primary:hover {
    opacity: 0.8;
}



/* RESPONSIVE CSS */

@media only screen and (max-width: 1400px) {

    .hero-section .hero-photo .stella-photo {
        max-width: 70%;
    }

}

@media only screen and (max-width: 992px) {

    .navbar-collapse .navbar-nav {
        align-items: start;
    }

    .nav-item-icon {
        margin: 0.5rem 0;
    }


    .hero-section .hero-photo .stella-photo {
        max-width: 100%;
    }

    .about-section .about-photo {
        width: 40%;
    }

}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 1rem;
    }

    h2 {
        font-size: 1rem;
    }

    h3 {
        font-size: 1rem;
    }

    a.contato {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .hero-section .hero-titles h1 {
        margin: 3rem 0 0 0;
    }

    .hero-section .hero-titles h2 {
        margin: 1rem 0;
    }

    .hero-section .hero-photo {
        margin-top: 3rem;
    }

    .hero-section .hero-photo .stella-photo {
        max-width: 100%;
    }

    .about-section .about-mobile {
        flex-direction: column-reverse;
        align-items: center;
    }

    .about-section .about-photo {
        width: 50%;
        margin-bottom: 1rem;
    }

    .about-section a.contato {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}


@media only screen and (max-width: 576px) {


    .nav-item-icon {
        margin: 0.5rem 0;
    }

    h1 {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 0.8rem;
    }

    h3 {
        font-size: 1rem;
    }

    a.contato {
        font-size: 0.7rem;
        padding: 0.5rem;
        text-align: center;
    }

    .hero-section .hero-titles {
        padding: 0 10px;
    }

    .hero-section .hero-titles h1 {
        margin: 5rem 0 0 0;
    }

    .hero-section .hero-titles h2 {
        margin: 0.5rem 0;
    }

    .hero-section .hero-photo {
        margin-top: 4rem;
        padding: 0;
    }

    .hero-section .hero-photo .stella-photo {
        max-width: 90%;
    }

    .faq-section .faq-title h3 {
        margin-bottom: 1rem;
    }

    .about-section .about-mobile {
        flex-direction: column-reverse;
        align-items: center;
    }

    .about-section .about-photo {
        max-width: 50%;
        margin-bottom: 1rem;
    }

    .about-section a.contato {
        font-size: 1rem;
    }

}

@media only screen and (max-width: 400px) {

    h1 {
        font-size: 0.8rem;
    }

    h2 {
        font-size: 0.7rem;
    }

    h3 {
        font-size: 1rem;
    }

    a.contato {
        width: 100%;
        font-size: 0.63rem;
        text-align: center;
    }
}