/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7b4397;
    --primary-dark: #4a1d6b;
    --primary-light: #b07cc6;
    --gold: #d4af37;
    --gold-light: #f4d76e;
    --gold-dark: #a8841a;
    --dark: #0a0118;
    --dark-2: #14082a;
    --dark-3: #1f0f3d;
    --light: #f8f4ff;
    --light-2: #ede4ff;
    --text: #e8e1f5;
    --text-muted: #a89ec0;
    --gradient-main: linear-gradient(135deg, #7b4397 0%, #d4af37 100%);
    --gradient-dark: linear-gradient(135deg, #0a0118 0%, #1f0f3d 50%, #0a0118 100%);
    --gradient-purple: linear-gradient(135deg, #4a1d6b 0%, #7b4397 100%);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.3);
    --shadow-purple: 0 0 60px rgba(123, 67, 151, 0.4);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(123, 67, 151, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(74, 29, 107, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.section-label {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
}

.section-label.light {
    color: var(--gold-light);
    border-color: rgba(244, 215, 110, 0.4);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 24px;
    font-weight: 600;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* ===== PARTICLES BACKGROUND ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

@keyframes float-particle {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: rgba(10, 1, 24, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 1, 24, 0.85);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light);
}

.logo-symbol {
    color: var(--gold);
    font-size: 1.6rem;
    animation: rotate-symbol 8s linear infinite;
    display: inline-block;
}

@keyframes rotate-symbol {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    padding: 10px 22px;
    background: var(--gradient-main);
    color: var(--dark) !important;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--dark) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center top, rgba(123, 67, 151, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at center bottom, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, rgba(10, 1, 24, 0.5) 0%, rgba(10, 1, 24, 0.85) 70%, var(--dark) 100%);
    z-index: 1;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background-image: url('imagens/hero-levitacao.jpeg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.55;
    filter: saturate(1.1) brightness(0.85);
    animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(123, 67, 151, 0.1) 0%, transparent 40%);
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
    animation: fadeUp 1.2s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 32px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 28px;
    font-weight: 600;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--light);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--dark);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5);
}

.btn-primary span, .btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1rem;
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(212, 175, 55, 0.3);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    animation: bounce 2s infinite;
    z-index: 2;
}

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

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 120px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    aspect-ratio: 4/5;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-purple);
    box-shadow: var(--shadow-purple);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: 20px;
    opacity: 0.6;
    z-index: 2;
    pointer-events: none;
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    z-index: 2;
    pointer-events: none;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(123, 67, 151, 0.4) 0%, rgba(212, 175, 55, 0.2) 100%);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame:hover .about-photo {
    transform: scale(1.05);
}

.frame-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.floating-crystal {
    position: absolute;
    font-size: 2.5rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    animation: float 6s ease-in-out infinite;
}

.crystal-1 { top: 10%; right: -20px; animation-delay: 0s; }
.crystal-2 { bottom: 30%; left: -25px; animation-delay: 2s; color: var(--primary-light); }
.crystal-3 { bottom: 5%; right: 10%; animation-delay: 4s; }

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

.about-content .section-title {
    text-align: left;
    margin-bottom: 28px;
}

.about-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-text strong {
    color: var(--gold-light);
    font-weight: 600;
}

.credentials {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.credential {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(123, 67, 151, 0.1);
    border-left: 2px solid var(--gold);
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.credential:hover {
    background: rgba(123, 67, 151, 0.2);
    transform: translateX(5px);
}

.credential-icon {
    color: var(--gold);
    font-size: 1.4rem;
    flex-shrink: 0;
}

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

.credential-text strong {
    font-family: 'Cinzel', serif;
    color: var(--light);
    font-size: 1rem;
    margin-bottom: 4px;
}

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

/* ===== METHOD SECTION ===== */
.method {
    padding: 120px 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(20, 8, 42, 0.5) 50%, transparent 100%);
    position: relative;
}

.method-intro {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 80px;
}

.method-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--shadow-purple);
    aspect-ratio: 4/3;
}

.method-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

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

.method-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(123, 67, 151, 0.25) 0%, transparent 50%),
        linear-gradient(180deg, transparent 60%, rgba(10, 1, 24, 0.6) 100%);
    pointer-events: none;
}

.method-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    z-index: 2;
    pointer-events: none;
}

.method-text .section-label {
    margin-bottom: 20px;
}

.method-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.method-subtitle-left {
    margin: 0;
    text-align: left;
    max-width: none;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.pillar {
    padding: 40px 30px;
    background: rgba(20, 8, 42, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pillar:hover::before { transform: scaleX(1); }

.pillar:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 50px rgba(123, 67, 151, 0.3);
}

.pillar-number {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    color: var(--gold);
    position: relative;
}

.pillar h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--light);
}

.pillar p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 120px 0;
}

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

.service-card {
    padding: 50px 36px;
    background: linear-gradient(180deg, rgba(31, 15, 61, 0.7) 0%, rgba(20, 8, 42, 0.7) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.service-card.featured {
    background: linear-gradient(180deg, rgba(123, 67, 151, 0.3) 0%, rgba(74, 29, 107, 0.3) 100%);
    border: 1px solid rgba(212, 175, 55, 0.5);
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(123, 67, 151, 0.3);
}

.service-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: var(--dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--light);
}

.service-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.service-features {
    text-align: left;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    font-size: 0.95rem;
    color: var(--text);
    padding-left: 4px;
}

.service-cta {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: var(--shadow-glow);
}

.service-card-image {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
    z-index: 0;
}

.service-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 1, 24, 0.4) 0%, rgba(10, 1, 24, 0.85) 50%, rgba(10, 1, 24, 0.95) 100%);
    z-index: 1;
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 50px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    align-items: center;
}

.service-card-image:hover .service-card-bg {
    transform: scale(1.08);
}

.service-card-image .service-features {
    align-items: center;
}

/* ===== CRYSTALS SECTION ===== */
.crystals {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 8, 42, 0.5) 50%, transparent 100%);
}

.crystals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.crystal-card {
    padding: 40px 30px;
    background: rgba(20, 8, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.crystal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center top, var(--color, var(--gold)) 0%, transparent 60%);
    opacity: 0.1;
    transition: opacity 0.4s ease;
}

.crystal-card:hover::before { opacity: 0.25; }

.crystal-card:hover {
    transform: translateY(-8px);
    border-color: var(--color, var(--gold));
    box-shadow: 0 20px 60px color-mix(in srgb, var(--color, var(--gold)) 25%, transparent);
}

.crystal-shape {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, var(--color, var(--gold)) 0%, rgba(255, 255, 255, 0.3) 50%, var(--color, var(--gold)) 100%);
    clip-path: polygon(50% 0%, 100% 30%, 80% 100%, 20% 100%, 0% 30%);
    position: relative;
    box-shadow: 0 0 30px var(--color, var(--gold));
    animation: rotate-3d 8s linear infinite;
}

.shape::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    clip-path: polygon(50% 0%, 100% 30%, 80% 100%, 20% 100%, 0% 30%);
}

@keyframes rotate-3d {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.crystal-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--light);
    margin-bottom: 8px;
}

.crystal-purpose {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.crystal-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 120px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit {
    padding: 36px 28px;
    background: rgba(31, 15, 61, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    text-align: left;
}

.benefit:hover {
    background: rgba(31, 15, 61, 0.7);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-block;
}

.benefit h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--light);
}

.benefit p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 8, 42, 0.5) 50%, transparent 100%);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 40px 32px;
    background: rgba(31, 15, 61, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    transition: transform 0.4s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}

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

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
}

.author-info { display: flex; flex-direction: column; }

.author-info strong {
    font-family: 'Cinzel', serif;
    color: var(--light);
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== FOR WHOM ===== */
.for-whom {
    padding: 120px 0;
}

.for-whom-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.for-whom-content .section-title {
    text-align: left;
    margin-bottom: 36px;
}

.for-whom-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.for-whom-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(31, 15, 61, 0.4);
    border-radius: 12px;
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.5;
    transition: all 0.3s ease;
    border-left: 2px solid var(--gold);
}

.for-whom-list li:hover {
    background: rgba(31, 15, 61, 0.7);
    transform: translateX(6px);
}

.check {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===== ENERGY CIRCLE ===== */
.for-whom-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.energy-circle {
    width: 360px;
    height: 360px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.energy-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: rotate-ring 20s linear infinite;
    border-style: dashed;
}

.ring-2 {
    width: 75%;
    height: 75%;
    animation: rotate-ring 15s linear infinite reverse;
    border-color: rgba(123, 67, 151, 0.5);
}

.ring-3 {
    width: 50%;
    height: 50%;
    animation: rotate-ring 10s linear infinite;
    border-color: rgba(212, 175, 55, 0.5);
    border-style: dotted;
}

@keyframes rotate-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.energy-core {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark);
    box-shadow: 0 0 80px rgba(212, 175, 55, 0.6);
    animation: pulse-core 3s ease-in-out infinite;
}

@keyframes pulse-core {
    0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(212, 175, 55, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 100px rgba(212, 175, 55, 0.8); }
}

/* ===== FAQ ===== */
.faq {
    padding: 120px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(31, 15, 61, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(31, 15, 61, 0.8);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--light);
    transition: color 0.3s ease;
}

.faq-question:hover { color: var(--gold); }

.faq-toggle {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

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

.faq-answer p {
    padding: 0 28px 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(123, 67, 151, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--light);
}

.cta-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(20, 8, 42, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    color: var(--light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(20, 8, 42, 0.9);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.contact-form select option {
    background: var(--dark-3);
}

.contact-form button {
    margin-top: 16px;
    justify-content: center;
}

.cta-divider {
    color: var(--text-muted);
    margin: 24px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
}

.cta-divider::before,
.cta-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: rgba(212, 175, 55, 0.3);
}

.cta-divider::before { left: calc(50% - 140px); }
.cta-divider::after { right: calc(50% - 140px); }

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #25d366;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-2);
    padding: 80px 0 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0 24px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.contact-list li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-list span {
    color: var(--gold);
    margin-right: 8px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.1); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--dark-2);
    color: var(--light);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark-2);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ===== ANIMATIONS ON SCROLL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid,
    .for-whom-grid,
    .method-intro {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content .section-title,
    .for-whom-content .section-title,
    .method-text .section-title {
        text-align: center;
    }

    .method-subtitle-left {
        text-align: center;
        margin: 0 auto;
        max-width: 700px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 70px);
        background: rgba(10, 1, 24, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 30px;
        gap: 24px;
        align-items: flex-start;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links.active { right: 0; }

    .nav-links a { font-size: 1.05rem; }

    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 12px;
    }

    .hamburger { display: flex; }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn { width: 100%; justify-content: center; }

    .hero-stats {
        gap: 24px;
    }

    .stat-divider { display: none; }

    .stat-number { font-size: 2rem; }

    .pillars,
    .services-grid,
    .crystals-grid,
    .benefits-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        transform: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-divider::before,
    .cta-divider::after {
        width: 40px;
    }

    .cta-divider::before { left: calc(50% - 90px); }
    .cta-divider::after { right: calc(50% - 90px); }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-links { justify-content: center; }

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

    .section-header { margin-bottom: 60px; }

    .energy-circle {
        width: 280px;
        height: 280px;
    }

    .energy-core {
        width: 80px;
        height: 80px;
        font-size: 2.4rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

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

    .hero { padding: 100px 16px 60px; }

    .about,
    .method,
    .services,
    .crystals,
    .benefits,
    .testimonials,
    .for-whom,
    .faq,
    .cta-section {
        padding: 80px 0;
    }

    .service-card,
    .pillar,
    .crystal-card,
    .testimonial-card {
        padding: 32px 24px;
    }
}

/* ===== SELECTION ===== */
::selection {
    background: var(--gold);
    color: var(--dark);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--gold) 100%);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold) 0%, var(--primary) 100%);
}
