/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #F4A6A6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F4A6A6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-toggle {
    display: flex;
    background: #f0f0f0;
    border-radius: 20px;
    padding: 2px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.lang-btn.active {
    background: #F4A6A6;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23F4A6A6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 8rem;
    line-height: 1.1;
}

.hero-subtitle h2 {
    font-size: 2rem;
    color: #F4A6A6;
    margin-bottom: 0.5rem;
}

.hero-subtitle p {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #F4A6A6, #F4B6B6);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 166, 166, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 166, 166, 0.4);
}

.hero-image {
    text-align: center;
    animation: fadeInRight 3s ease-out 0.4s both;
}

.profile-img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.02);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #F4A6A6;
    border-bottom: 2px solid #F4A6A6;
    transform: rotate(45deg);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-title {
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(135deg, #F4A6A6, #A8C8A8);
    border-radius: 2px;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-section, .expertise-section {
    margin-top: 2rem;
}

.approach-items {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.approach-item {
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #F4A6A6;
    transition: transform 0.3s ease;
}

.approach-item:hover {
    transform: translateX(5px);
}

.expertise-list {
    list-style: none;
    margin-top: 1rem;
}

.expertise-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #A8C8A8;
    font-weight: bold;
}

.about-image {
    text-align: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    color: #333;
    font-size: 1.3rem;
}

.service-types {
    margin-top: 4rem;
}

.service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-type {
    background: linear-gradient(135deg, #F4A6A6, #A8C8A8);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-type:hover {
    transform: scale(1.05);
}

.service-type h4 {
    color: white;
    font-size: 1.4rem;
}

/* Qualifications Section */
.qualifications {
    padding: 100px 0;
    background: #f9f9f9;
}

.qualifications-list {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.qualification-item {
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 15px;
    border-left: 5px solid #A8C8A8;
    transition: all 0.3s ease;
}

.qualification-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qualification-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.qualification-item p {
    color: #666;
    font-style: italic;
}

/* Fees Section */
.fees {
    padding: 100px 0;
    background: #f9f9f9;
}

.fees-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.fees-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.intro-card {
    border: 3px solid #F4A6A6;
}

.sessions-card {
    border: 3px solid #A8C8A8;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #F4A6A6;
    margin: 1rem 0;
}

.features {
    list-style: none;
    margin: 1.5rem 0;
}

.features li {
    padding: 0.5rem 0;
    color: #666;
}

.pricing-options {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

.pricing-option {
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.card-subtitle {
    font-style: italic;
    color: #F4A6A6;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: #F4A6A6;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F4A6A6;
}

.submit-btn {
    background: linear-gradient(135deg, #F4A6A6, #F4B6B6);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 166, 166, 0.3);
}

/* Footer */
/*
.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-logo-img {
    height: 250px;
    width: auto;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    color: #ccc;
    margin-bottom: 0.5rem;
}
*/
/* Footer Styles */
.footer {
    background: #222;
    color: #f8f8f8;
    padding: 3rem 0;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-logo .logo-img {
    height: 320px; /* Adjust as needed */
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo-member .logo-img-member {
    height: 100px; /* Adjust as needed */
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #bbb;
    line-height: 1.6;
}

.footer-nav {
    flex: 0 0 auto;
    min-width: 150px;
}

.footer-nav h3,
.footer-memberships h3,
.footer-social h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #fff;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 0.8rem;
}

.footer-nav ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #F4A6A6; /* Highlight color */
}

.footer-right {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-end;
    text-align: right;
}

.footer-memberships {
    width: 100%;
}

.gradient-name {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-decoration: none; /* Para remover o sublinhado */
}

.membership-images {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.member-logo {
    height: 60px; /* Adjust as needed */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(180%); /* Make logos white/light for dark background */
    transition: filter 0.3s ease;
}

.member-logo:hover {
    filter: grayscale(0%) brightness(100%); /* Original color on hover */
}

.footer-social {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-icons a {
    color: #bbb;
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #F4A6A6; /* Highlight color */
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    color: #aaa;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-nav,
    .footer-right,
    .footer-memberships,
    .footer-social {
        min-width: unset;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .membership-images,
    .social-icons {
        justify-content: center;
    }
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(250, 250, 250, 0.98);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle h2 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-types-grid {
        grid-template-columns: 1fr;
    }
}






:root {
    --primary-color: #ff9999; /* Cor principal - similar ao rosa coral */
    --secondary-color: #99ccaa; /* Cor secundária - similar ao verde sage */
    --accent-color: #ffcc66; /* Cor de destaque - similar ao amarelo */
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #fafafa;
    --gradient-1: linear-gradient(135deg, #ff9999, #ffcc66);
    --gradient-2: linear-gradient(135deg, #99ccaa, #ff9999);
    --gradient-3: linear-gradient(135deg, #ffcc66, #99ccaa);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--light-bg);
}

/*  TEST
.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expertise h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
*/

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Expertise Section */
.expertise {
    padding: 6rem 0;
    background: white;
}



.expertise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.expertise-item:hover {
    border-left-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.expertise-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Language content hiding */
.lang-pt {
    display: none;
}

body.pt .lang-en {
    display: none;
}

body.pt .lang-pt {
    display: block;
}


/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0 8rem 0;
    background: white;
    text-align: center;
}

.testimonials-section .section-title {
    margin-bottom: 4rem;
    color: #333;
}

.testimonials-grid, .testimonials-swiper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    color: #444;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #A8C8A8;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.testimonial-quote {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}
.testimonial-quote::before {
    content: "“";
    font-size: 2.5rem;
    color: #A8C8A8;
    opacity: 0.5;
    position: absolute;
    left: -1.2rem;
    top: -1.2rem;
}
.testimonial-author {
    font-weight: 700;
    color: #A8C8A8;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}
.trustpilot-link {
    color: #A8C8A8;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s;
}
.trustpilot-link:hover {
    color: #F4A6A6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.swiper.testimonials-swiper {
    padding-top: 1rem;
    padding-bottom: 4rem;
}

a[aria-label="Trustpilot"]:hover img {
    transform: scale(1.1);
  }