:root {
    --primary-dark: #af2168;
    --primary-medium: #c94a85;
    --primary-light: #f07fb3;
    --accent-color: #f6b37f;
    --light-bg: #f7dfed;
    --text-dark: #3c1f2b;
    --text-light: #6b4a57;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(175, 33, 104, 0.12);
    --transition: all 0.3s ease;
}

section {
    scroll-margin-top: 120px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Headers sytles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 75px;
    width: auto;
}


.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-medium);
}

.nav-menu a.active {
    color: var(--primary-medium);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    z-index: 1001;
}

/* hero section */
.hero {
    background: linear-gradient(135deg, rgba(175, 33, 104, 0.589) 0%, rgba(201, 74, 133, 0.8) 100%), url('../img/therapy1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 10rem 0 6rem;
    text-align: center;
    margin-top: 80px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 300;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* aprsentation section */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    /* background-color: var(--accent-color); */
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* BTN ABOUT */
.btn-about {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 28px;
    background-color: var(--primary-medium);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.about-image {
    text-align: center;
}

@media (max-width: 768px) {
    .btn-about {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-medium);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* service section */
.services {
    background-color: var(--light-bg);
}

/* .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
} */

/* ---------alinhando os cards de serviços-------- */
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 310px;
}

/* ----------------------------------------------- */

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    background-color: rgba(74, 155, 168, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-medium);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* contact style section */
.contact-section {
    background-color: var(--white);
}

.contact-container {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-medium);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-medium);
    margin-right: 1rem;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-dark);
}

/* Footer style */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}


/* Whatsap icon */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* Scroll BTN */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease, opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

#scrollTopBtn.show {
    display: flex;
}

#scrollTopBtn i {
    line-height: 1;
    display: inline-block;
}

#scrollTopBtn:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Hides the scroll button when the mobile menu is open. */
body.menu-open #scrollTopBtn {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* responsive styl */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        text-align: center;
        padding: 1rem 0;
    }

    .hero {
        padding: 8rem 0 4rem;
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}


/* ===========================================
   RESPONSIVE TOO MUCH SMALL SCREEN
   (iPhone 5, SE: 320px)
   =========================================== */

@media (max-width: 360px) {

    .header-container {
        padding: 0 10px;
    }

    .logo-img {
        height: 55px !important;
        max-width: 150px;
    }

    .mobile-menu-btn {
        right: 10px;
        font-size: 1.3rem;
        padding: 5px;
    }

    .lang-selector-btn {
        padding: 5px 8px;
        font-size: 0.9rem;
    }

    .current-lang {
        font-size: 0.8rem;
    }

    /* HERO SECTION */
    .hero {
        padding: 6rem 0 3rem;
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 1.5rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.9rem !important;
        padding: 0 10px;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    /* GENERAL SECTION */
    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.5rem !important;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 0.9rem !important;
        padding: 0 10px;
    }

    /* CONTAINERS */
    .container {
        width: 95% !important;
        padding: 0 10px;
    }

    /* ABOUT SECTION */
    .about-container,
    .profile-section {
        gap: 2rem;
    }

    .about-content h3,
    .profile-content h3 {
        font-size: 1.3rem;
    }

    .about-content p,
    .profile-content p {
        font-size: 0.9rem;
    }

    /* SERVICE */
    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    /* CONTACT */
    .contact-container {
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-item {
        margin-bottom: 1rem;
    }

    .contact-item i {
        font-size: 1rem;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    /* FORMULÁRIO */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    /* FOOTER */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-column h3 {
        font-size: 1.1rem;
    }

    .footer-column p,
    .footer-column a {
        font-size: 0.9rem;
    }

    /* MENU MOBILE */
    .nav-menu {
        width: 85% !important;
        max-width: 280px !important;
        padding: 1.5rem;
    }

    .nav-menu.active {
        right: calc(50% - 42.5%);
    }

    .nav-menu a {
        font-size: 1rem !important;
    }

    .mobile-logo img {
        max-width: 120px;
    }

    /* FLOATING BUTTONS - POSITIONS ADJUST*/
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }

    #scrollTopBtn {
        width: 45px;
        height: 45px;
        font-size: 16px;
        bottom: 15px;
        left: 15px;
    }
}

/* MOBILE MENU - SIDE STYLE */
.mobile-logo {
    display: none;
}

@media (max-width: 768px) {

    .mobile-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 2rem;
    }

    .mobile-logo img {
        max-width: 160px;
        width: 100%;
        height: auto;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;

        width: 60%;
        max-width: 320px;

        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;

        padding: 2rem;

        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);

        transition: right 0.35s ease-in-out;
        z-index: 1000;
    }

    /* When is active */
    .nav-menu.active {
        right: calc(50% - 30%);
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    /* Dark background (optional but recommended) */
    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
    }
}