:root {
    --bg-color: #FAFAFA; /* Ultra clean, modern off-white */
    --text-main: #1D1D1F; /* Premium dark grey */
    --text-muted: #6E6E73;
    --accent-gold: #9e7a2b; /* Darker yellow/gold as requested */
    --accent-gold-hover: #7a5e21;
    --accent-gold-light: rgba(158, 122, 43, 0.08);
    
    /* Card/Button Backgrounds */
    --surface-bg: #FFFFFF; /* Pure white cards */
    --surface-border: rgba(158, 122, 43, 0.2); /* Subtle gold border */
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* --- BACKGROUNDS --- */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh; /* Corta a grama reduzindo a altura do fundo */
    z-index: -2;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-image: url('Imagens Link Mestra Gi/_MG_3577.jpg');
    background-size: cover;
    background-position: center 60%; /* Equilibra para mostrar os rostos e esconder a grama */
}

/* The gradient overlay. Pushed the white fade lower so the image is less "blurred/washed out" at the bottom */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* Lavagem muito suave, a foto de fundo ficará 100% viva e nítida */
}

.page-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, var(--accent-gold-light), transparent 60%);
    z-index: -3;
}

/* --- CONTAINER --- */
.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 50px 24px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    
    /* CARTÃO DE VIDRO FOSCO (Frosted Glass Card) */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 24px; /* Mais achatado */
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 1);
    margin-top: 260px; /* Cartão um pouco mais acima */
}



.profile-wrapper {
    position: relative;
    width: 120px; /* Bem menor para achatar */
    height: 120px;
    border-radius: 50%;
    padding: 4px;
    border: 1px solid var(--accent-gold);
    margin-bottom: 16px; /* Menos espaço abaixo */
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

/* Perfect zoom and position for the face */
.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url('Imagens Link Mestra Gi/Design Sem Nome - 1.png');
    background-size: 250%; 
    background-position: center 3%; 
    background-repeat: no-repeat;
    transition: background-size 0.6s ease;
}

.profile-wrapper:hover .profile-img {
    background-size: 260%;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 1.6rem; /* Ajustado para caber no cartão achatado */
    font-weight: 700;
    color: #b08d3e; /* Dourado luxuoso e limpo */
    margin-bottom: 4px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: none; /* Sem sombras artificiais */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 1.8rem; /* Menor para economizar altura */
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-main);
    text-shadow: none;
}

.hero-subtitle {
    font-size: 0.8rem;
    color: #555;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.5; /* Mais enxuto */
    max-width: 95%;
    text-transform: uppercase;
    text-shadow: none;
}

/* --- BUTTONS --- */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 28px;
    background: var(--surface-bg);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.link-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(158, 122, 43, 0.15);
    border-color: var(--accent-gold);
}

.primary-btn {
    background: var(--accent-gold);
    color: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(158, 122, 43, 0.3);
}

.primary-btn:hover {
    background: var(--accent-gold-hover);
    color: #fff;
    box-shadow: 0 15px 35px rgba(158, 122, 43, 0.4);
}

.btn-icon {
    margin-left: 12px;
    font-size: 1.4rem;
}

.meditation-card {
    background: var(--surface-bg);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-top: 10px;
}

.meditation-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-icon-wrapper {
    width: 110px; /* Aumentado de 76px para 110px */
    height: 110px;
    border-radius: 50%;
    margin-right: 24px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(158, 122, 43, 0.15);
    background-image: url('Imagens Link Mestra Gi/gaia_51_pink_heart_light.jpg');
    background-size: 150%; /* Dá um zoom forte na imagem */
    background-position: center 10%; /* Foca exatamente no rosto dela */
    background-repeat: no-repeat;
    flex-shrink: 0; /* Evita que o flexbox amasse a bolinha */
}

.meditation-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.meditation-btn {
    display: inline-block;
    background: transparent;
    color: var(--text-main);
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid var(--text-main);
}

.meditation-btn:hover {
    background: var(--text-main);
    color: #fff;
    transform: translateY(-2px);
}

/* --- SECTION HEADERS --- */
.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-main);
}

.section-subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* --- NEXT STEPS --- */
.next-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-link {
    display: flex;
    align-items: center;
    padding: 24px;
    background: var(--surface-bg);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.step-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(158, 122, 43, 0.15);
    border-color: var(--accent-gold);
}

.step-icon {
    font-size: 1.8rem;
    margin-right: 24px;
    opacity: 0.9;
}

.step-icon-img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover; /* Para imagens (img) */
    background-size: cover; /* Para wrappers (div) */
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 24px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(158, 122, 43, 0.15);
    flex-shrink: 0;
}

.step-text {
    display: flex;
    flex-direction: column;
}

.step-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.step-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- TESTIMONIALS --- */
.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-bottom: 24px;
}

.testimonial-video {
    width: 100%;
    aspect-ratio: 9/16;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    border: 4px solid var(--surface-bg);
    background: #000;
    box-shadow: 0 15px 30px rgba(158, 122, 43, 0.15);
    transition: transform 0.3s ease;
}

.testimonial-video:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(158, 122, 43, 0.25);
}

/* --- ABOUT --- */
.about {
    background: var(--surface-bg);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.about-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin: 24px auto 32px auto;
    display: block;
    box-shadow: 0 15px 35px rgba(158, 122, 43, 0.15);
    border: 4px solid #fff;
}

.about-content p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-align: justify;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* --- FOOTER --- */
.footer {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    color: var(--text-main);
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--text-main);
}

.social-btn:hover {
    background: var(--text-main);
    color: #fff;
    transform: translateY(-4px);
}
