/* Variables */
:root {
    --black-absolute: #000000;
    --gold-liquid: #D4AF37;
    --rose-pearl: #F8C8DC;
    --scarlet: #DC143C;
    --white-ethereal: #FEFEFE;
    
    /* Additional Colors */
    --gold-dark: #B8860B;
    --scarlet-dark: #B22222;
    --rose-dark: #E6B8C8;
    
    /* Fonts */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 2rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--white-ethereal);
    background: var(--black-absolute);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-liquid);
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold-liquid);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    color: var(--white-ethereal);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-liquid), var(--scarlet));
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold-liquid);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--gold-liquid);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, 
                rgba(220, 20, 60, 0.1) 0%, 
                rgba(0, 0, 0, 0.9) 70%),
                var(--black-absolute);
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--gold-liquid), transparent),
        radial-gradient(2px 2px at 40% 70%, var(--rose-pearl), transparent),
        radial-gradient(1px 1px at 90% 40%, var(--scarlet), transparent);
    background-repeat: repeat;
    background-size: 550px 550px, 350px 350px, 250px 250px;
    animation: float 20s infinite linear;
    opacity: 0.3;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold-liquid);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 60px rgba(212, 175, 55, 0.8);
        transform: scale(1.05);
    }
}

.hero-title {
    font-family: var(--font-primary);
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--gold-liquid);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.subtitle {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--rose-pearl);
    text-shadow: 0 0 15px rgba(248, 200, 220, 0.3);
    letter-spacing: 1px;
}

.hero-bio {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white-ethereal);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-top: 2rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--scarlet), var(--scarlet-dark));
    color: var(--white-ethereal);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: 2px solid var(--gold-liquid);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.5);
    border-color: var(--white-ethereal);
}

.pulse-effect {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--gold-liquid);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold-liquid);
    border-radius: 30px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--gold-liquid);
    color: var(--black-absolute);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gold-liquid);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--gold-liquid), transparent);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* Imersão Scarlatti Section */
.imersao-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, 
                rgba(220, 20, 60, 0.05) 0%, 
                rgba(0, 0, 0, 0.95) 50%,
                rgba(212, 175, 55, 0.05) 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold-liquid), var(--scarlet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.glow-effect {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    from { text-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    to { text-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 0 60px rgba(220, 20, 60, 0.3); }
}

.ornament {
    font-size: 2rem;
    margin: 1rem 0;
    animation: rotate-ornament 4s linear infinite;
}

@keyframes rotate-ornament {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.imersao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.imersao-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--rose-pearl);
}

.imersao-details {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold-liquid);
    border-radius: 0 10px 10px 0;
    transition: var(--transition);
}

.detail-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.detail-item h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--gold-liquid);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.imersao-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.energy-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: conic-gradient(
        var(--scarlet) 0deg,
        var(--gold-liquid) 120deg,
        var(--rose-pearl) 240deg,
        var(--scarlet) 360deg
    );
    animation: rotate-energy 10s linear infinite;
    position: relative;
}

.energy-circle::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: var(--black-absolute);
    border-radius: 50%;
}

@keyframes rotate-energy {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.floating-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
}

.symbol {
    position: absolute;
    font-size: 2rem;
    animation: float-symbol 6s ease-in-out infinite;
}

.symbol:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.symbol:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.symbol:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float-symbol {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

/* Services Preview */
.services-preview {
    padding: var(--section-padding);
    background: rgba(248, 200, 220, 0.02);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.1), 
        transparent);
    transition: var(--transition-slow);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-liquid);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--white-ethereal);
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.95) 0%, 
                rgba(220, 20, 60, 0.05) 50%,
                rgba(0, 0, 0, 0.95) 100%);
}

.section-subtitle {
    color: var(--rose-pearl);
    font-size: 1.2rem;
    margin-top: 1rem;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.testimonial-card.active {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--white-ethereal);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 3rem;
    color: var(--gold-liquid);
    font-family: var(--font-primary);
    position: absolute;
}

.testimonial-content p::before {
    top: -1rem;
    left: -2rem;
}

.testimonial-content p::after {
    bottom: -2rem;
    right: -2rem;
}

.testimonial-author strong {
    color: var(--gold-liquid);
    font-family: var(--font-primary);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--rose-pearl);
    font-size: 1rem;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold-liquid);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.nav-dot.active,
.nav-dot:hover {
    background: var(--gold-liquid);
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: var(--black-absolute);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid var(--gold-liquid);
}

.footer-logo h3 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-logo p {
    color: var(--rose-pearl);
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-primary);
    color: var(--gold-liquid);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: var(--white-ethereal);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--gold-liquid);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    color: var(--rose-pearl);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-liquid);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold-liquid);
    color: var(--black-absolute);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .imersao-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1rem 0;
        display: block;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-logo-img {
        width: 120px;
        height: 120px;
    }
    
    .imersao-visual {
        height: 300px;
    }
    
    .energy-circle {
        width: 200px;
        height: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-content p::before,
    .testimonial-content p::after {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 3rem 0;
        --container-padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1rem;
    }
    
    .detail-item {
        padding: 1rem;
    }
}

/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--gold-liquid); }
.text-scarlet { color: var(--scarlet); }
.text-rose { color: var(--rose-pearl); }

.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}
