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

/* Global Responsive Styles */
img, iframe, video {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Prevent horizontal scroll */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

/* Color Scheme */
:root {
    --bg-cream: #FAF7F2;
    --primary-gold: #C58F4A;
    --secondary-terracotta: #8D5524;
    --text-dark: #3A3A3A;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text-img {
    height: 220px;
    width: auto;
    margin-top: 40px;
    transition: all 0.3s ease;
}

.logo h1 {
    font-size: 1.4rem;
    color: var(--secondary-terracotta);
    font-weight: 700;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 75% 25%;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-welcome {
    margin-bottom: 1.5rem;
    padding: 2rem 1.5rem;
}

.hero-welcome-text {
    font-size: 2.2rem;
    line-height: 1.6;
    color: var(--secondary-terracotta);
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}

.hero-mentor {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.mentor-profile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.mentor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-terracotta));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: -20px;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mentor-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-terracotta));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.mentor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sobre-mentora-section {
    padding: 60px 20px 20px;
    background: var(--white);
}

.sobre-mentora-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.sobre-mentora-text {
    padding: 1.5rem;
}

.sobre-mentora-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-terracotta);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.sobre-mentora-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2rem;
    width: 100%;
}

.sobre-mentora-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.video-container {
    margin-bottom: 2rem;
    width: 100%;
}

.video-container iframe {
    width: 100%;
    max-width: 90%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

.large-profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-terracotta));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0 auto 2rem auto;
    overflow: hidden;
}

.large-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
    padding: 40px 15px;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-accordion {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question-text {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-footer {
    text-align: center;
    margin-top: 3rem;
}

.faq-contact {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

.faq-whatsapp-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-whatsapp-link:hover {
    color: var(--secondary-terracotta);
    border-bottom-color: var(--secondary-terracotta);
}

/* Responsive para FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .faq-question-text {
        padding-right: 0.8rem;
    }
    
    .faq-icon {
        font-size: 1.3rem;
        width: 25px;
        height: 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
    
    /* Ensure FAQ is single column on mobile */
    .faq-accordion {
        max-width: 100%;
    }
}

.depoimentos-section {
    padding: 40px 15px 30px;
    background: var(--bg-cream);
}

/* Carrossel de Depoimentos */
.depoimentos-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.depoimentos-slider {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

.depoimentos-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.depoimentos-slide {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    min-width: 100%;
    padding: 0 1rem;
}

.depoimento-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    max-width: 100%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gold);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.carousel-btn:hover {
    background: var(--secondary-terracotta);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-gold);
}

.indicator:hover {
    background: var(--primary-gold);
    opacity: 0.7;
}

/* Responsive para o carrossel */
@media (max-width: 768px) {
    .depoimentos-slide {
        grid-template-columns: 1fr; /* Single column */
        gap: 1.5rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        top: 50%;
        transform: translateY(-50%);
    }

    .carousel-btn-prev {
        left: -20px;
    }

    .carousel-btn-next {
        right: -20px;
    }
    
    .depoimentos-carousel {
        padding: 0 2rem;
    }

    /* Show only 1 depoimento por vez */
    .depoimentos-track {
        flex-direction: column; /* Stack vertically for swipe */
    }

    .depoimentos-slide {
        display: block; /* Full width */
        min-width: 100%;
    }

    .depoimento-card {
        width: 100%; /* Full width on mobile */
        max-width: none;
        margin: 0 0 1.5rem; /* Space between cards */
    }

    /* Simplificar navegação - mostrar dots */
    .carousel-btn {
        display: none;
    }

    .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(197, 143, 74, 0.3);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .indicator.active {
        background: var(--primary-gold);
        transform: scale(1.2);
    }

    /* Keep client photos round on mobile */
    .client-photo {
        width: 80px; /* Increased from 60px */
        height: 80px; /* Increased from 60px */
        border-radius: 50%;
    }

    .client-photo .photo-circle-img {
        width: 80px; /* Increased from 60px */
        height: 80px; /* Increased from 60px */
        border-radius: 50%;
        object-fit: cover;
    }
    
    /* Improve testimony text readability on mobile */
    .depoimento-text {
        font-size: 0.95rem;
        line-height: 1.5;
        color: var(--text-dark);
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        display: none;
    }
    
    .depoimentos-slider {
        border-radius: 10px;
    }
}

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

.experiencias-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Maximum 2 cards side by side */
    gap: 3rem;
    margin-top: 3rem;
}

.depoimento-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-terracotta));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    overflow: hidden;
}

.client-photo .photo-circle-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: var(--primary-gold);
    font-size: 1rem;
}

.depoimento-content {
    margin-top: 1rem;
}

.depoimento-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

.photo-placeholder-large {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-terracotta);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: transparent;
    color: var(--secondary-terracotta);
    border: 2px solid var(--secondary-terracotta);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-terracotta);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(141, 85, 36, 0.3);
}

.btn-secondary {
    background-color: var(--primary-gold);
    color: var(--white);
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary-terracotta);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(141, 85, 36, 0.3);
    border: 2px solid var(--secondary-terracotta);
}

.hero-visual {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: -50px;
}

.zen-circle {
    width: min(300px, 80vw);
    height: min(300px, 80vw);
    max-width: 100%;
    border-radius: 50%;
    position: relative;
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.zen-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Foco na parte superior para não cortar o rosto */
}

@media (max-width: 768px) {
    .zen-circle-img {
        object-position: center 30%; /* Ajuste fino para mobile */
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-terracotta);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 90%;
    margin: 0 auto;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
    pointer-events: auto;
}

.video-play-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-watch-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.video-watch-btn:hover {
    background: var(--secondary-terracotta);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive para video cards */
@media (max-width: 768px) {
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-watch-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .aspect-video {
        max-height: 200px;
    }
    
    .video-card iframe {
        max-height: 200px;
    }
    
    /* Garante que imagens não estourem */
    img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .photo-circle-img {
        max-width: 100%;
        height: auto;
    }

    /* Vídeos responsivos */
    iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .video-card iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 200px;
    }

    .aspect-video {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 200px;
    }
    
    /* Ensure video testimonials are single column on mobile */
    .video-testimonials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Ensure mentorship section is single column on mobile */
    .mentorship-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Ensure yoga to mind section is single column on mobile */
    .yoga-to-mind-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mentorship Section */
.mentorship-section {
    background-color: var(--white);
    padding: 80px 20px;
}

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

.mentorship-text {
    max-width: 500px;
}

.mentorship-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.mentorship-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.mentorship-benefits li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.mentorship-benefits li::before {
    content: '•';
    color: var(--primary-gold);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.mentorship-visual {
    display: flex;
    justify-content: center;
}

.mentorship-image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-terracotta));
    border-radius: 20px;
    opacity: 0.1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-terracotta);
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

/* Scroll Anchor */
.scroll-anchor {
    position: relative;
    height: 1px;
}

.anchor-link {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    color: var(--primary-gold);
    opacity: 0.8;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: bounce 2s infinite;
    z-index: 50;
    border-radius: 50%;
    background: rgba(197, 143, 74, 0.05);
    box-shadow: 0 4px 15px rgba(197, 143, 74, 0.2);
}

.anchor-link:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 0 8px 25px rgba(197, 143, 74, 0.3);
}

.chevron-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: -32px;
    line-height: 0.2;
}

.chevron-down {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.chevron-down:first-child {
    margin-bottom: -32px;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-8px);
    }
    70% {
        transform: translateX(-50%) translateY(-4px);
    }
    90% {
        transform: translateX(-50%) translateY(-2px);
    }
}

/* Yoga to Mind Section */
.yoga-to-mind-section {
    background-color: var(--bg-cream);
    padding: 100px 20px;
}

.yoga-to-mind-layout {
    max-width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 6fr 1fr;
    gap: 3rem;
    align-items: center;
}

.yoga-photos-left,
.yoga-photos-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
    min-height: 600px;
}

.yoga-to-mind-content {
    text-align: center;
    padding: 0 2rem;
}

.yoga-to-mind-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.photo-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-terracotta));
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
    transform: scale(0.8) translateY(20px);
    overflow: hidden;
}

.photo-circle-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

/* Animação para círculo grande da seção família - Versão com movimento */
.familia-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px; /* Garante espaço para alinhamento vertical */
}

.photo-circle-large {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.8s ease;
    animation: floatUpDown 4s ease-in-out infinite;
}

.familia-section.visible .photo-circle-large {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.photo-circle-large .photo-circle-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.scroll-reveal .photo-circle {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Animação sequencial para os círculos - Apenas quando visível */
.yoga-photos-left .photo-placeholder:nth-child(1) { opacity: 0; transform: scale(0.8) translateY(20px); }
.yoga-photos-left .photo-placeholder:nth-child(2) { opacity: 0; transform: scale(0.8) translateY(20px); }
.yoga-photos-left .photo-placeholder:nth-child(3) { opacity: 0; transform: scale(0.8) translateY(20px); }
.yoga-photos-left .photo-placeholder:nth-child(4) { opacity: 0; transform: scale(0.8) translateY(20px); }
.yoga-photos-right .photo-placeholder:nth-child(1) { opacity: 0; transform: scale(0.8) translateY(20px); }
.yoga-photos-right .photo-placeholder:nth-child(2) { opacity: 0; transform: scale(0.8) translateY(20px); }
.yoga-photos-right .photo-placeholder:nth-child(3) { opacity: 0; transform: scale(0.8) translateY(20px); }
.yoga-photos-right .photo-placeholder:nth-child(4) { opacity: 0; transform: scale(0.8) translateY(20px); }

/* Estado animado quando seção fica visível */
.yoga-to-mind-section.visible .yoga-photos-left .photo-placeholder:nth-child(1) { animation: fadeInUp 3s ease 1s forwards; }
.yoga-to-mind-section.visible .yoga-photos-left .photo-placeholder:nth-child(2) { animation: fadeInUp 3s ease 3s forwards; }
.yoga-to-mind-section.visible .yoga-photos-left .photo-placeholder:nth-child(3) { animation: fadeInUp 3s ease 5s forwards; }
.yoga-to-mind-section.visible .yoga-photos-left .photo-placeholder:nth-child(4) { animation: fadeInUp 3s ease 7s forwards; }
.yoga-to-mind-section.visible .yoga-photos-right .photo-placeholder:nth-child(1) { animation: fadeInUp 3s ease 9s forwards; }
.yoga-to-mind-section.visible .yoga-photos-right .photo-placeholder:nth-child(2) { animation: fadeInUp 3s ease 11s forwards; }
.yoga-to-mind-section.visible .yoga-photos-right .photo-placeholder:nth-child(3) { animation: fadeInUp 3s ease 13s forwards; }
.yoga-to-mind-section.visible .yoga-photos-right .photo-placeholder:nth-child(4) { animation: fadeInUp 3s ease 15s forwards; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Tailwind Utility Classes for Videos */
.w-full { width: 100%; }
.h-full { height: 100%; }
.rounded-2xl { border-radius: 1rem; }
.overflow-hidden { overflow: hidden; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.bg-black { background-color: #000000; }

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 15px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Aspect Video Class */
.aspect-video {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}

/* Aspect Video Short Class for YouTube Shorts (9:16) */
.aspect-video-short {
    aspect-ratio: 1 / 1; /* Square format */
    width: 100%;
    max-width: 400px; /* Increased size */
    height: auto;
    margin: 0 auto; /* Center the video */
}

/* Video Testimonials */
.video-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-testimonial-info {
    padding: 1.5rem;
}

.video-testimonial-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.video-testimonial-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Família Section */
.familia-section {
    background-color: var(--white);
    padding: 100px 20px;
}

.familia-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.familia-photo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
}

.photo-circle-large {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-terracotta));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    overflow: hidden;
}

.photo-placeholder-large {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.familia-text {
    padding-top: 2rem;
}

.familia-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.signature {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-gold);
    margin-top: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    text-align: right;
}

/* Footer */
.footer {
    background-color: #b9660e;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr; /* Center column with social media */
        gap: 2rem;
        align-items: start; /* Better alignment */
    }
}

.footer-section h4 {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
    align-items: center; /* Center the entire container */
    justify-content: center; /* Center content within container */
    width: 100%; /* Take full width for centering */
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Instagram icon color */
.social-link[href*="instagram"] svg {
    color: #E4405F; /* Instagram pink/red */
}

/* YouTube icon color */
.social-link[href*="youtube"] svg {
    color: #FF0000; /* YouTube red */
}

.social-link:hover {
    color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Keep icons in brand colors on hover */
.social-link[href*="instagram"]:hover svg {
    color: #E4405F;
}

.social-link[href*="youtube"]:hover svg {
    color: #FF0000;
}

.social-link svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.social-link span {
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Experiências de Desenvolvimento Section */
.experiencias-section {
    background-color: var(--bg-cream);
    padding: 120px 20px;
}

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

.experiencias-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.experiencias-impact {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.experiencias-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

.experiencias-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.experiencia-card {
    background: #fafafa;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1 1 300px;
    max-width: 100%;
}

.experiencia-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-terracotta));
}

.experiencia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.experiencia-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.icon-gold {
    font-size: 3rem;
    color: var(--primary-gold);
}

.experiencia-titulo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.experiencia-descricao {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.experiencia-beneficios {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.experiencia-beneficios li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.bullet-gold {
    color: var(--primary-gold);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.experiencia-duracao {
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.experiencia-citacao {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.experiencia-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-gold);
    color: var(--white);
    border: 2px solid var(--primary-gold);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: block;
}

.experiencia-btn:hover {
    background-color: var(--secondary-terracotta);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(141, 85, 36, 0.3);
    border: 2px solid var(--secondary-terracotta);
}

.experiencias-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.experiencias-frase-final {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .experiencias-section {
        padding: 80px 20px;
    }
    
    .experiencias-title {
        font-size: 2rem;
    }
    
    .experiencias-impact {
        font-size: 1.1rem;
    }
    
    .experiencia-card {
        padding: 2rem 20px;
        margin: 0 20px 1.5rem; /* Stack vertically with space between */
        width: 100%; /* Full width on mobile */
        max-width: none; /* Remove max-width constraint */
    }
    
    .experiencia-titulo {
        font-size: 1.3rem;
    }

    /* Reduzir títulos principais em 20% */
    h1 {
        font-size: 2.4rem !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    .section-title {
        font-size: 1.6rem !important;
    }

    .hero-title {
        font-size: 2.4rem !important;
    }
    
    /* Reduzir tamanho do texto da hero section para mobile */
    .hero-welcome-text {
        font-size: 1.4rem !important; /* Reduced from 2.2rem */
        line-height: 1.5;
    }
    
    /* Esconder foto da hero section no mobile */
    .hero-visual {
        display: none; /* Hide photo on mobile */
    }
    
    /* Esconder vídeo da segunda seção no mobile */
    .sobre-mentora-photo {
        display: none; /* Hide video on mobile */
    }
    
    /* Esconder seção "Quem sou eu?" no mobile */
    .familia-section {
        display: none; /* Hide section on mobile */
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--bg-cream);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        max-height: 70vh;
        overflow-y: auto;
    }

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

    .nav-menu li {
        margin: 0; /* Minimum spacing - links as close as possible */
    }

    .nav-menu li a {
        display: block;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        background: transparent;
        color: var(--text-dark); /* Site default text color */
        margin: 0.5rem 0;
        font-weight: 600;
    }

    /* Keep only "Agendar Sessão" as button with same config as btn-secondary */
    .nav-menu li:last-child a {
        background-color: var(--primary-gold) !important;
        color: var(--white) !important;
        border: 2px solid var(--primary-gold) !important;
        font-size: 1.1rem;
        padding: 1rem 2rem;
        transition: all 0.3s ease;
    }

    .nav-menu li:last-child a:hover {
        background-color: var(--secondary-terracotta) !important;
        color: var(--white) !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(141, 85, 36, 0.3);
    }

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

    .yoga-to-mind-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .yoga-photos-left,
    .yoga-photos-right {
        flex-direction: row;
        justify-content: center;
        min-height: auto;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    /* Organizar imagens em 2 colunas no mobile */
    .yoga-photos-left {
        order: 2;
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 columns */
        gap: 0.5rem;
        width: 100%;
    }
    
    .yoga-photos-right {
        order: 3;
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 columns */
        gap: 0.5rem;
        width: 100%;
    }
    
    /* Esconder imagens no mobile */
    .yoga-photos-left .photo-placeholder,
    .yoga-photos-right .photo-placeholder {
        display: none; /* Hide all images on mobile */
    }
    
    .photo-circle {
        width: 60px;
        height: 60px;
    }
    
    .photo-circle-img {
        width: 60px;
        height: 60px;
    }

    .familia-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .familia-photo {
        padding-top: 1rem;
    }
    
    .photo-circle-large {
        width: 200px;
        height: 200px;
    }

    .depoimentos-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .mentorship-text {
        max-width: 100%;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .logo {
        gap: 12px;    /* Maior espaçamento para logos maiores */
    }

    .logo-img {
        height: 50px;    /* Proporcional ao logo escrito */
        margin-top: -1px;    /* Alinhado com logo escrito */
    }

    .logo-text-img {
        height: 55px !important;   /* Tamanho compacto discreto */
        margin-top: 8px;           /* Descer um pouco o logo escrito */
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .footer-logo-img {
        height: 55px;    /* Consistente com header */
    }

    .zen-circle {
        width: 200px;
        height: 200px;
    }

    .mentorship-image-placeholder {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .logo-img {
        height: 50px;    /* Consistente com 768px */
        margin-top: -1px;    /* Alinhado com logo escrito */
    }

    .logo-text-img {
        height: 120px !important;    /* Forçar tamanho aumentado */
        margin-top: 15px;            /* Descer mais o logo escrito em telas pequenas */
    }
}

/* Landscape orientation - manter logo escrito grande */
@media (max-width: 768px) and (orientation: landscape) {
    .logo-text-img {
        height: 120px !important;    /* Manter tamanho aumentado em landscape */
        margin-top: 15px;            /* Manter posicionamento */
    }
    
    /* Mostrar vídeo em landscape */
    .sobre-mentora-photo {
        display: block !important;   /* Mostrar vídeo em landscape */
    }
    
    /* Ajustar layout para 2 colunas em landscape */
    .sobre-mentora-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; /* 2 colunas */
        gap: 2rem !important;
        align-items: center !important;
    }
    
    /* Ajustar vídeo para landscape */
    .sobre-mentora-photo .aspect-video-short {
        max-height: 300px !important; /* Altura adequada para landscape */
    }
}

    .logo h1 {
        font-size: 1.2rem;
    }

    .footer-logo-img {
        height: 55px;    /* Consistente com header */
    }
}
