html,
body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Inter Tight", sans-serif;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #FFFFFF;
    color: #000000;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
    transition: all 0.3s linear;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
    outline: 0;
}

button, input, a, select, textarea {
    outline: 0 !important;
    border: 0;
    text-decoration: none;
    transition: all 0.2s linear;
}

.container {
    max-width: 1200px !important;
    padding: 0 24px;
    width: 100% !important;
    position: relative;
    z-index: 3;
}
@media(max-width: 768px){
    .container {
        max-width: 540px !important;
    }
}

.button-main {
    background: linear-gradient(90deg, #03A41B, #058B19);
    color: #FFFFFF;
    padding: 12px 24px;
    width: 100%;
    display: flex;
    gap: 8px;
    justify-content: center;
    max-width: 300px;
    border-radius: 24px;
    border: 2px solid #D0F3D8;
}

/* Section Hero */
.section-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
}
@media(max-width: 768px){
    .section-hero {
        display: none;
    }
}

.section-hero__content {
    max-width: 80%;
}

.section-hero__content__texts {
    max-width: 500px;
}

.hero-logo {
    max-width: 160px;
}

.section-hero__title {
    color: #42A069;
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 300;
}

.section-hero__subtitle {
    color: #42A069;
    max-width: 480px;
    margin-bottom: 1.8rem;
    text-wrap: balance;
    font-size: 1.2rem;
}

.section-hero__title strong {
    font-weight: 600;
}

.section-hero .button-main {
    max-width: 280px;
}

.hero-image {
    position: absolute;
    object-fit: cover;
    height: 100%;
    width: 100%;
    inset: 0;
}

/*  Section Mobile */
.section-hero--mobile {
    position: relative;
    display: none;
}
@media(max-width: 768px){
    .section-hero--mobile {
        display: block;
    }
}

.section-hero--mobile__image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 84%;
    height: 60vh;
}

.section-hero--mobile__content {
    position: relative;
    max-width: 500px;
    margin: auto;
}

.section-hero--mobile__logo {
    max-width: 160px;
    position: absolute;
    top: -92px;
}

.section-hero--mobile__title {
    color: #42A069;
    font-size: 1.7rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 300;
    text-wrap: balance;

}

.section-hero--mobile__title strong {
    font-weight: 600;
}

.section-hero--mobile__subtitle {
    color: #42A069;
    max-width: 480px;
    margin-bottom: 1.8rem;
    text-wrap: balance;
    font-size: 1.1rem;
}

.section-hero--mobile .button-main {
    max-width: 100%;
}


/*  Section Highlights */
.section-highlights {
    margin: 0 20px;
    position: relative;
}

.section-highlights .container {
    background: #42A069;
    border-radius: 16px;
    padding: 64px 0 32px;
}

.section-highlights__button-down { 
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
}

.section-highlights__button-down img { 
    height: 12px;
}


.section-highlights__content .row-1, .section-highlights__content .row-2  {
    display: flex;
    flex-wrap: wrap;      
    justify-content: center;
    max-width: 95%;
    margin: auto;
    gap: 16px;
}

.section-highlights__content .row-2 {
    padding: 16px 0;
}

.section-highlights__content .row-1 article {
    max-width: 300px;
}

.section-highlights__content .row-2 article {
    max-width: 380px;
}
@media(max-width: 768px) {
    .section-highlights__content .row-2 article {
        max-width: 300px;
    }
}

.section-highlights article {
    background: #FEFEFE;
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 16px 24px;
    gap: 8px;
    justify-content: center;
}

.section-highlights article p {
    color: #42A069;
    margin: auto;
}

/* Section Curses */
.section-curses {
    background: #42A069;
    padding: 80px 0;
}

.section-curses .container {
    max-width: 1000px;
}

.section-curses__content {
    display: flex;
    align-items: center;
    position: relative;
}

.section-curses__content__box {
    display: grid;
    grid-template-columns: 35% 60%;
    background: #FFFFFF;
    max-width: 800px;
    padding: 24px;    
    border-radius: 20px;
    margin: auto;
}
@media(max-width: 991px){
    .section-curses__content__box {
        display: flex;
        flex-direction: column-reverse;
        margin: auto;
        text-align: center;
    }
}

.section-curses__content__box .image{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.section-curses__content__box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    height: 290px;
}
@media(max-width: 991px){
    .section-curses__content__box img{
        height: 500px;
        object-position: center;
    }
}
@media(max-width: 768px){
    .section-curses__content__box img{
        height: 300px;
    }
}

.section-curses__content__box .texto{
    margin-left: 4%;
    display: grid;
    grid-auto-rows: auto 1fr;
}
@media(max-width: 991px){
    .section-curses__content__box .texto{
        margin-left: 0%;
    }
}

.section-curses__content__box .texto h2{
    background: #42A069;
    border-radius: 86px;
    color: #F8FCF9;
    margin: 0 auto 24px;
    padding: 12px;
    text-align: center;
    width: 100%;
    font-size: 18px;
}

.paragrafo p {
    color: #676767;
    font-size: 18px;
}

.custom-swiper-button-prev, .custom-swiper-button-next {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background: #D0F3D8;
    font-size: 1.3rem;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%) translateZ(0);
    transition: left 0.3s ease, right 0.3s ease;
    cursor: pointer;
    will-change: left, right;
    pointer-events: auto;
}

.custom-swiper-button-prev {
    left: 0;
}

.custom-swiper-button-next {
    left: auto;
    right: 0;
}

@media(max-width: 991px){
    .custom-swiper-button-prev, .custom-swiper-button-next {
        display: none;
    }
}

.swiper-wrapper{
    padding: 0 32px;
}
@media(max-width: 991px){
    .swiper-wrapper {
        padding: 0;
    }
}

.swiper-pagination {
    position: static !important;
    margin-top: 40px;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    background: #D0F3D8 0% 0% no-repeat padding-box;
    border: 1px solid #D0F3D8;
    width: 10px;
    height: 10px;
    opacity: 1 !important;
    margin: 0 14px !important;
}

.swiper-pagination-bullet-active {
    width: 16px !important;
    height: 16px !important;  
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    margin: 3px !important;
}

.swiper-pagination-bullet-active {
    transform: none !important;
    border-radius: 13px !important;
    height: 12px !important;
    width: 26px !important;
}

/* Section Advantages */
.section-advantages {
    background: #FFFFFF;
    padding-top: 80px;
}

.section-advantages__content {
    background: #42A069;
    color: #FFFFFF;
    padding: 40px;
    max-width: 800px;
    margin: auto;
    padding-left: 300px;
    position: relative;
    height: 420px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 768px) {
    .section-advantages__content {
        padding: 20px;
        max-width: 400px;
        text-align: center;
        height: auto;
        padding: 48px 24px;
    }
}

.section-advantages__image {
    position: absolute;
    left: -100px;
    top: -20px;
    width: 340px;
}
@media (max-width: 768px) {
    .section-advantages__image {
        display: none;
    }
}

.section-advantages h2 {
    max-width: 400px;
    color: #A9F8BB;
}

.section-advantages h2 span {
    color: #FFFFFF;
}

.section-advantages article {
    display: flex;
    gap: 12px;
    align-items: center;
    text-wrap: balance;
    max-width: 220px;
    font-size: 17px;
}
@media (max-width: 768px) {
    .section-advantages article {
        margin: 0 auto;
    }
}

.section-advantages article p {
    margin: 0;
    text-align: start;
}

.section-advantages h4 {
    margin-top: 8px;
    font-weight: 200;
    text-decoration: underline;
    text-wrap: balance;
}

/* Section About */
.section-about {
    margin-top: 40px;
    position: relative;
    z-index: 9;
    padding: 80px 0;
    background: transparent linear-gradient(104deg, #3A636D 0%, #42A069 100%) 0% 0% no-repeat padding-box;
}

.section-about__content {
    display: grid;
    grid-template-columns: 50% 50%;
}
@media(max-width: 991px){
    .section-about__content {
        grid-template-columns: 1fr;
    }
}

.section-about__content__text {
    margin-right: 22%;
    color: #FFFFFF;
}
@media(max-width: 1100px){
    .section-about__content__text {
        margin-right: 40px;
    }
}
@media(max-width: 991px){
    .section-about__content__text {
        margin: 0;
    }
}

.section-about__content__text h2 {
    text-decoration: underline;
    margin-bottom: 24px;
}

.section-about__content__text p {
    font-size: 1.1rem;
    font-weight: 300;
    margin: 0;
}

.section-about__content__text strong  {
    font-weight: 600;
}

.urdeline {
    text-decoration: underline;
}

.section-about__content__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media(max-width: 991px){
    .section-about__content__image {
        display: none;
    }
}

.section-about__content__image--mobile {
    height: 280px;
    width: 92%;
    object-fit: contain;
    display: none;
    margin: 24px auto;
}
@media(max-width: 991px){
    .section-about__content__image--mobile {
        display: block; 
    }
}
@media(max-width: 576px){
    .section-about__content__image--mobile {
        margin: 0 auto;
    }
}

/* Section Profissionais */
.section-profissionais {
    background-color: #F2FDF4;
    position: relative;
    padding: 70px 0 50px;
}

.section-profissionais__header {
    margin-bottom: 60px;
}

.section-profissionais__header__stars {
    display: block;
    margin: 0 auto 25px;
    max-width: 120px;
    height: auto;
}

.section-profissionais__title {
    font-weight: 600;
    color: #42A069;
    max-width: 570px;
    margin: auto;
}

.section-profissionais__subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #42A069;
    max-width: 570px;
    margin: 24px auto;
    text-wrap: balance;
}

/* Desktop Version - Show by default */
.section-profissionais--desktop {
    display: block;
}

.section-profissionais__content {
    margin: 0 -20px;
}

.section-profissionais__item {
    width: 32%;
    padding: 10px 8px;
    margin: 0 0 20px;
}

.section-profissionais__card {
    height: 100%;
    padding: 28px 18px;
    background: #FFFFFF;
    border-radius: 18px;
}

.section-profissionais__card .image {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 15px;
    border: 6px solid #42A06933;
}

.section-profissionais__card .image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-profissionais__card h2 {
    text-align: left;
    letter-spacing: 0px;
    color: #42A069;
    margin: 20px 0 30px;
    font-size: 1.4rem;
    font-weight: 600;
    text-wrap: balance;
}

.section-profissionais__card p {
    color: #676767;
    text-wrap: balance;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Mobile Version - Hide by default */
.section-profissionais--mobile {
    display: none;
}

.section-profissionais--mobile .swiper-pagination {
    margin-top: 30px;
}

.section-profissionais--mobile .swiper-pagination-bullet {
    background: #42A069;
}

/* Mobile: Show slider, hide desktop grid */
@media (max-width: 991px) {
    .section-profissionais__title {
        font-size: 1.8rem;
    }

    .section-profissionais__subtitle {
        font-size: 1.1rem;
    }

    .section-profissionais__card h2 {
        min-height: auto;
        font-size: 1.2rem;
        margin: 15px 0 20px;
    }

    .section-profissionais__card p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .section-profissionais--desktop {
        display: none;
    }

    .section-profissionais--mobile {
        display: block;
    }

    .section-profissionais__title {
        font-size: 1.5rem;
    }

    .section-profissionais__subtitle {
        font-size: 1rem;
    }

    .section-profissionais__header__stars {
        max-width: 100px;
    }
}

/* Section Form */
.section-form {
    position: relative;
    padding: 70px 0;
}

.section-form__header {
    margin-bottom: 50px;
}

.section-form__title {
    font-weight: 300;
    color: #42A069;
    max-width: 570px;
    margin: auto;
}

.section-form__title strong {
    font-weight: 600;
}

.section-form__content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* Footer */
footer {
    background-color: #060606;
    padding: 72px 0 80px;
    font-family: 'Inter', sans-serif;
    text-wrap: balance; 
}
@media(max-width: 768px){
    footer {
        text-align: center;
    }
}

footer p {
    color: #fff;
    font-weight: 300;
}

footer p strong {
    font-weight: 600;
}

footer .logo-rodape {
    max-width: 220px;
    margin: 0 0 30px;
}
@media(max-width: 768px){
    footer .logo-rodape {
        max-width: 180px;
        margin: 0 auto 24px;
    }
}

footer .logo-rodape + p {
    max-width: 360px;
}

.contato-footer {
    margin-bottom: 20px;
}

.contato-footer span {
    display: block;
    font-size: 18px;
    color: #fff;
}

.contato-footer span strong {
    font-weight: 600;
    color: #62DBA1;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

.whatsapp-float svg,
.whatsapp-float img {
    width: 36px;
    height: 36px;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}