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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FEFEFE;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #1A1A1A;
}

p {
    margin-bottom: 1rem;
    color: #4A4A4A;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2C2C2C;
    margin-bottom: 2rem;
}

em {
    font-style: italic;
    color: #8B7355;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 115, 85, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Language Selector */
.language-selector {
    display: flex;
    background: #F8F6F3;
    border-radius: 6px;
    padding: 2px;
    border: 1px solid #E8E8E8;
}

.lang-btn {
    background: none;
    border: none;
    padding: 6px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6B6B6B;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lang-btn.active {
    background: #8B7355;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-btn:hover:not(.active) {
    color: #8B7355;
    background: rgba(139, 115, 85, 0.1);
}

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

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

.nav-link {
    text-decoration: none;
    color: #4A4A4A;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8B7355;
}

.nav-link.instagram {
    color: #8B7355;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.nav-link.instagram svg {
    transition: transform 0.3s ease;
}

.nav-link.instagram:hover svg {
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #8B7355;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 75px;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

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

.section-header.centered {
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6B6B6B;
    font-weight: 400;
    text-align: justify;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    background-image: url('imagens/banner.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 3rem 24px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background: #8B7355;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #8B7355;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #8B7355;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


/* Image Placeholders */
.image-placeholder, .instagram-placeholder {
    background: #F8F6F3;
    border: 2px dashed #D4C4B0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #8B7355;
    font-weight: 500;
    min-height: 300px;
    transition: all 0.3s ease;
}

.image-placeholder:hover, .instagram-placeholder:hover {
    border-color: #8B7355;
    background: #F5F2EE;
}


/* Image Styles */
.hero-img, .about-img, .session-img, .instagram-img, .mini-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hero-img:hover, .about-img:hover, .session-img:hover {
    transform: scale(1.02);
}

.instagram-img {
    border-radius: 0;
}

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

/* About Section */
.about {
    background: #FAFAF9;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
}

.about-text p.lead {
    margin-bottom: 0.5rem;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-main-image {
    max-width: 400px;
    margin: 0;
}

.about-quote {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #8B7355;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-quote blockquote {
    font-style: italic;
    color: #4A4A4A;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-quote cite {
    color: #8B7355;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Philosophy Section */
.philosophy {
    background: rgba(169, 185, 158, 0.4);
}

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

.philosophy-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #F0F0F0;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    margin-bottom: 1.5rem;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-icon {
    height: 132px;
    width: auto;
}

.philosophy-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.philosophy-card p {
    color: #6B6B6B;
    line-height: 1.6;
}

/* Team Section */
.team {
    background: white;
}

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

.team-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
}

.team-text p.lead {
    margin-bottom: 0.5rem;
}

.team-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-main-image {
    max-width: 400px;
    margin: 0;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Sessions Section */
.sessions {
    background: rgba(169, 185, 158, 0.4);
}

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

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

.detail-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #E8E8E8;
    gap: 1rem;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    color: #1A1A1A;
    font-weight: 600;
    min-width: 100px;
}

.detail-item span {
    color: #4A4A4A;
    text-align: left;
}

.pricing-content {
    text-align: left;
}

.pricing-content p {
    margin-bottom: 1rem;
    color: #4A4A4A;
}

.pricing-content ul {
    margin: 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.pricing-content li {
    margin-bottom: 0.5rem;
    color: #4A4A4A;
}

/* Sessions Gallery */
.sessions-gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-self: center;
}

.session-single-image {
    max-width: 400px;
    margin: 0 auto;
}

.session-image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.session-image.main {
    grid-row: 1 / 3;
}

.session-image .image-placeholder {
    height: 100%;
    min-height: auto;
    font-size: 0.9rem;
}

.session-highlight {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #8B7355;
    text-align: center;
}

.session-highlight p {
    margin: 0;
    font-size: 1rem;
    color: #2C2C2C;
}

/* Instagram Feed */
.instagram-feed {
    background: white;
}

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

.instagram-post {
    background: #FAFAFA;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #F0F0F0;
}

.instagram-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.instagram-placeholder {
    min-height: 250px;
    aspect-ratio: 1;
    margin: 0;
    border-radius: 0;
    border: none;
    background: #F8F6F3;
}

.post-caption {
    padding: 1.5rem;
}

.post-caption p {
    margin: 0;
    color: #4A4A4A;
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
}

.instagram-cta {
    text-align: center;
}

.instagram-link {
    display: inline-block;
    color: #8B7355;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid #8B7355;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    background: #8B7355;
    color: white;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    background: #F8F6F3;
    display: none;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #F0F0F0;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-image .image-placeholder {
    width: 100%;
    height: 100%;
    min-height: auto;
    border-radius: 50%;
    font-size: 0.8rem;
    border: 2px solid #8B7355;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #8B7355;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #4A4A4A;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-card blockquote:before {
    content: '"';
    font-size: 3rem;
    color: #8B7355;
    position: absolute;
    top: -10px;
    left: -20px;
    font-family: serif;
}

.testimonial-card cite {
    color: #8B7355;
    font-weight: 600;
    font-size: 0.9rem;
    font-style: normal;
}

/* Inscription Section */
.inscription {
    background: white;
    padding: 5rem 0;
}

/* Contact Section */
.contact {
    background: rgba(169, 185, 158, 0.4);
}

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

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

.contact-method {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    padding: 1.5rem 0;
    border-bottom: 1px solid #E8E8E8;
    transition: all 0.3s ease;
}

.contact-method:hover {
    color: #8B7355;
    padding-left: 1rem;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method strong {
    color: #1A1A1A;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-method span {
    color: #6B6B6B;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #F0F0F0;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E8E8E8;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #FAFAFA;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B7355;
    background: white;
}

.form-button {
    width: 100%;
    background: #8B7355;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button:hover {
    background: #756148;
    transform: translateY(-2px);
}

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

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

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contacts h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    color: #8B7355;
}

.contact-item a,
.contact-item span {
    color: #4A4A4A;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #8B7355;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.footer-social h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1A1A1A;
}

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

.social-icons a {
    color: #4A4A4A;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #8B7355;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #404040;
}

.footer-bottom p {
    color: #AAAAAA;
    font-size: 0.9rem;
}

/* Inscription Page */
.inscription-hero {
    background: rgba(169, 185, 158, 0.4);
    padding: 6rem 0 4rem;
}

.inscription-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.inscription-form {
    padding: 4rem 0;
    background: white;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.form-container iframe {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav {
        padding: 1rem 16px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        display: flex;
    }
    
    .nav-menu.mobile-open {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        height: 50vh;
        min-height: 350px;
        max-height: 500px;
    }
    
    .hero-content {
        padding: 2rem 16px;
    }
    
    .about-grid,
    .sessions-content,
    .contact-content,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    
    .session-image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .session-image.main {
        grid-row: auto;
    }
    
    .about-images {
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .detail-item span {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .philosophy-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-container iframe {
        width: 100%;
        height: 2000px;
    }
    
    .inscription-hero {
        padding: 4rem 0 2rem;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 1rem;
    }
    
    .language-selector {
        order: -1;
    }
}