:root {
    --bg-color: #0A0A0A;
    --card-color: #141414;
    --border-color: #222;
    --text-primary: #EAEAEA;
    --text-secondary: #A9A9A9;
    --accent-gold: #C9A44F;
    --accent-white: #FFFFFF;
}

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    position: relative;
    cursor: none;
}

body::after { content: ""; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-image: url('https://www.transparenttextures.com/patterns/stardust.png' ); opacity: 0.05; z-index: -2; pointer-events: none; }

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 20% 25%, rgba(201, 164, 79, 0.15), transparent 30%),
                radial-gradient(circle at 80% 50%, rgba(70, 0, 130, 0.1), transparent 30%),
                radial-gradient(circle at 50% 90%, rgba(0, 255, 255, 0.08), transparent 25%);
    animation: moveGradient 20s infinite alternate ease-in-out;
}

@keyframes moveGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; transform: rotate(5deg) scale(1.2); }
}

.custom-cursor { width: 12px; height: 12px; border-radius: 50%; background-color: var(--accent-gold); position: fixed; z-index: 1000; pointer-events: none; transition: transform 0.1s ease-out, width 0.3s ease-out, height 0.3s ease-out, background-color 0.3s ease-out, border 0.3s ease-out; transform: translate(-50%, -50%); }
.custom-cursor.hover { width: 60px; height: 60px; background-color: rgba(201, 164, 79, 0.2); border: 2px solid var(--accent-gold); }
.custom-cursor.text-cursor::after { content: "Ver"; color: var(--accent-white); font-weight: 600; font-size: 1rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.content-section { padding: 100px 0; position: relative; z-index: 1; }

.main-header { position: fixed; top: 0; left: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; z-index: 100; opacity: 0; transition: background-color 0.3s ease; }
.main-header.scrolled { background-color: rgba(10, 10, 10, 0.7); backdrop-filter: blur(10px); }
.logo img { height: 45px; width: auto; }
.main-header nav a { color: var(--text-secondary); text-decoration: none; margin-left: 30px; font-weight: 400; transition: color 0.3s ease; }
.main-header nav a:hover { color: var(--accent-gold); }

.hero { display: flex; align-items: center; justify-content: center; height: 100vh; padding: 0 5%; text-align: center; position: relative; z-index: 1; }
.hero-content { max-width: 900px; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.1; color: var(--accent-white); margin-bottom: 2rem; }
.hero-title span { display: block; opacity: 0; transform: translateY(50px); }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.125rem); color: var(--text-secondary); max-width: 700px; margin: 0 auto 2.5rem; line-height: 1.6; opacity: 0; }
.hero-cta { display: flex; justify-content: center; gap: 1rem; opacity: 0; flex-wrap: wrap; }
.cta-primary, .cta-secondary, .cta-instagram { padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s ease-out; display: inline-block; }
.cta-primary { background-color: var(--accent-white); color: var(--bg-color); }
.cta-primary:hover { background-color: var(--accent-gold); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(201, 164, 79, 0.2); }
.cta-secondary { background-color: transparent; color: var(--text-primary); border: 1px solid var(--accent-gold); }
.cta-secondary:hover { background-color: var(--accent-gold); color: var(--bg-color); transform: translateY(-3px); }

.clients-section { padding: 40px 0; background-color: #101010; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); overflow: hidden; }
.clients-marquee { width: 100%; display: flex; }
.marquee-content { display: flex; flex-shrink: 0; animation: marquee 40s linear infinite; }
.marquee-content span { display: flex; align-items: center; justify-content: center; margin: 0 40px; }
.marquee-content img { height: 30px; width: auto; max-width: 150px; filter: grayscale(100%) brightness(1.5); opacity: 0.6; transition: all 0.3s ease; }
.marquee-content span:hover img { filter: grayscale(0%) brightness(1); opacity: 1; }
@keyframes marquee { 0% { transform: translateX(0%); } 100% { transform: translateX(-50%); } }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; color: var(--accent-white); margin-bottom: 1rem; }
.section-title p { font-size: clamp(1rem, 2.5vw, 1.125rem); color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.persuasive-subtitle { font-weight: 600; color: var(--text-primary); }

.section-title-subtle { text-align: center; margin-bottom: 2rem; }
.section-title-subtle h4 { font-size: 1rem; font-weight: 500; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; }

.anim-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.anim-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

.services-grid, .process-grid, .benefits-grid { display: grid; gap: 2rem; }
.services-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.process-grid, .benefits-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.service-card, .process-card, .benefit-card { background-color: var(--card-color); border: 1px solid var(--border-color); border-radius: 12px; padding: 2rem; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
a.service-card { position: relative; overflow: hidden; }
a.service-card, a.service-card:visited { color: inherit; text-decoration: none; }
.service-card:hover, .process-card:hover, .benefit-card:hover { transform: translateY(-10px); border-color: var(--accent-gold); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }

.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; font-weight: 600; color: var(--text-primary); }
.badge { background-color: rgba(201, 164, 79, 0.1); color: var(--accent-gold); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.card-body, .process-card p, .benefit-card p { color: var(--text-secondary); line-height: 1.7; }
.service-card .card-body { min-height: 60px; }

.service-card .card-action-text { position: absolute; bottom: 0.5rem; left: 2rem; color: var(--accent-gold); font-weight: 600; opacity: 0; transform: translateY(10px); transition: all 0.3s ease; }
.service-card:hover .card-action-text { opacity: 1; transform: translateY(0); }

.process-card h3, .benefit-card h3 { margin-bottom: 1rem; }

#testimonials { background-color: var(--bg-color); padding-bottom: 100px; overflow: hidden; }
.testimonial-slider-wrapper { overflow: hidden; cursor: grab; }
.testimonial-slider { display: flex; gap: 2rem; width: max-content; -ms-overflow-style: none; scrollbar-width: none; }
.testimonial-slider::-webkit-scrollbar { display: none; }
.testimonial-card { flex-shrink: 0; width: clamp(320px, 70vw, 700px); max-width: 800px; margin: 0 auto; text-align: center; background-color: #1a1a1a; border: 1px solid var(--border-color); border-radius: 16px; padding: 3rem 4rem; position: relative; user-select: none; }
.testimonial-quote-mark { font-size: 8rem; font-weight: 700; color: var(--accent-gold); line-height: 1; position: absolute; top: 1rem; left: 2rem; opacity: 0.1; }
.testimonial-text { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; line-height: 1.6; margin-bottom: 2rem; position: relative; z-index: 2; }
.testimonial-author { color: var(--text-secondary); font-style: italic; }

.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; cursor: pointer; }
.faq-question h3 { font-size: 1.2rem; font-weight: 600; }
.faq-icon { font-size: 1.8rem; color: var(--accent-gold); transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; }
.faq-answer p { padding-bottom: 1.5rem; color: var(--text-secondary); line-height: 1.7; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

.contact-section { padding: 100px 0; text-align: center; background-color: var(--card-color); }
.contact-section h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.contact-section p { color: var(--text-secondary); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.6; }
.contact-cta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: var(--accent-white); }
.cta-instagram:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(220, 39, 67, 0.2); }

.main-footer-bottom { padding: 40px 5%; background-color: var(--bg-color); border-top: 1px solid var(--border-color); }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-content p { color: var(--text-secondary); }
.footer-social a { color: var(--text-secondary); text-decoration: none; margin-left: 20px; transition: color 0.3s ease; }
.footer-social a:hover { color: var(--accent-gold); }

@media (max-width: 768px) {
    body { cursor: auto !important; }
    .main-header nav { display: none; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-social { margin-top: 1rem; }
    .footer-social a { margin: 0 10px; }
    .testimonial-card { padding: 2.5rem 2rem; }
    .testimonial-text { font-size: 1.1rem; }
}
