/* Reset e Configuracoes Globais */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --secondary: #f8bbd0;
    --bg-light: #fce4ec;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --gradient: linear-gradient(135deg, #e91e63, #f06292, #ec407a);
    --shadow-sm: 0 2px 10px rgba(233,30,99,0.1);
    --shadow-md: 0 5px 20px rgba(233,30,99,0.15);
    --shadow-lg: 0 10px 40px rgba(233,30,99,0.2);
    --radius: 15px;
    --radius-lg: 25px;
    --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    --bounce: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}

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

/* Custom Cursor */
.cursor-dot, .cursor-ring { pointer-events: none; position: fixed; z-index: 99999; transform: translate(-50%,-50%); }
.cursor-dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; mix-blend-mode: difference; }
.cursor-ring { width: 35px; height: 35px; border: 2px solid var(--primary); border-radius: 50%; transition: all .15s ease-out; opacity: .4; z-index: 99998; }

/* Page Loader */
.page-loader { position: fixed; inset: 0; background: linear-gradient(135deg, var(--bg-light), #fff); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity .6s, visibility .6s; }
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-heart { font-size: 3rem; color: var(--primary); animation: loaderPulse 1s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.3); } }

/* Floating Background Shapes */
.floating-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.float-shape { position: absolute; font-size: 2rem; opacity: .06; color: var(--primary); }
.shape-1 { top: 10%; left: 5%; animation: floatAnim 12s ease-in-out infinite; }
.shape-2 { top: 30%; right: 10%; animation: floatAnim 15s ease-in-out infinite reverse; }
.shape-3 { bottom: 20%; left: 15%; animation: floatAnim 18s ease-in-out infinite; animation-delay: -3s; }
.shape-4 { bottom: 40%; right: 5%; animation: floatAnim 14s ease-in-out infinite reverse; animation-delay: -5s; }
.shape-5 { top: 60%; left: 50%; animation: floatAnim 20s ease-in-out infinite; animation-delay: -7s; }
@keyframes floatAnim { 0%,100%{transform:translateY(0) rotate(0) scale(1)} 25%{transform:translateY(-30px) rotate(10deg) scale(1.1)} 50%{transform:translateY(15px) rotate(-5deg) scale(.9)} 75%{transform:translateY(-15px) rotate(8deg) scale(1.05)} }

/* Header */
header { background: rgba(255,255,255,.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); position: fixed; width: 100%; top: 0; z-index: 1000; transition: var(--transition); border-bottom: 1px solid rgba(233,30,99,.08); }
header.scrolled { box-shadow: 0 4px 30px rgba(233,30,99,.08); }
nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 1.8rem; font-weight: 700; color: var(--primary); text-decoration: none; position: relative; }
.logo::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gradient); transition: width .4s; }
.logo:hover::after { width: 100%; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; transition: color .3s; position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gradient); transition: width .3s; }
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary); }

/* Hero Section */
.hero { background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary) 50%, #fff 100%); padding: 140px 5% 100px; text-align: center; position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.hero-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(233,30,99,.04) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(248,187,208,.06) 0%, transparent 50%); pointer-events: none; }
.hero-overlay-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape { position: absolute; border-radius: 50%; background: rgba(233,30,99,.03); }
.s1 { width: 400px; height: 400px; top: -100px; right: -100px; animation: blob 15s ease-in-out infinite; }
.s2 { width: 300px; height: 300px; bottom: -50px; left: -50px; animation: blob 20s ease-in-out infinite reverse; }
.s3 { width: 200px; height: 200px; top: 50%; left: 50%; animation: blob 12s ease-in-out infinite; animation-delay: -5s; }
@keyframes blob { 0%,100%{border-radius:60%40%30%70%/60%30%70%40%} 50%{border-radius:30%60%70%40%/50%60%30%60%} }
.hero-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; background: rgba(233,30,99,.08); border: 1px solid rgba(233,30,99,.15); padding: 8px 20px; border-radius: 50px; font-size: .85rem; font-weight: 600; color: var(--primary); margin-bottom: 25px; animation: fadeUp .6s .2s both; }
.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; animation: fadeUp .6s .3s both; font-weight: 700; line-height: 1.15; color: var(--text-dark); }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; background-size: 200% 200%; animation: shimmerText 3s ease-in-out infinite; }
@keyframes shimmerText { 0%,100%{background-position:0 50%} 50%{background-position:100% 50%} }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; color: var(--text-light); animation: fadeUp .6s .4s both; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-cta-group { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; animation: fadeUp .6s .5s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.cta-button { display: inline-flex; align-items: center; gap: 15px; background: var(--gradient); color: #fff; padding: 18px 45px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: var(--bounce); box-shadow: 0 4px 15px rgba(233,30,99,.3); position: relative; overflow: hidden; border: none; cursor: pointer; }
.cta-button::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.15)); transition: var(--transition); }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(233,30,99,.4); }
.cta-outline { display: inline-flex; align-items: center; gap: 10px; padding: 18px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; color: var(--primary); border: 2px solid rgba(233,30,99,.2); transition: var(--transition); background: transparent; }
.cta-outline:hover { border-color: var(--primary); background: rgba(233,30,99,.05); transform: translateY(-3px); }
.hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 50px; animation: fadeUp .6s .7s both; }
.h-stat { text-align: center; }
.h-num { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.h-plus, .h-perc { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.h-label { display: block; font-size: .8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* Container & Section Header */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; background: rgba(233,30,99,.08); padding: 6px 16px; border-radius: 50px; font-size: .8rem; font-weight: 600; color: var(--primary); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.section-title { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 15px; font-weight: 700; }
.section-desc { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* Services Section */
.services { padding: 100px 0; background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { background: #fff; padding: 40px 30px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid rgba(233,30,99,.05); transition: var(--transition); position: relative; overflow: hidden; text-align: center; cursor: default; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gradient); transform: scaleX(0); transform-origin: left; transition: transform .5s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(233,30,99,.1); }
.card-bg-shine { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 50% 0%, rgba(233,30,99,.03), transparent 60%); pointer-events: none; }
.service-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; display: inline-block; transition: var(--bounce); }
.service-card:hover .service-icon { transform: scale(1.2) rotate(-5deg); }
.service-card h3 { font-size: 1.3rem; color: var(--text-dark); margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: .95rem; line-height: 1.7; margin-bottom: 20px; }
.card-link { color: var(--primary); text-decoration: none; font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 5px; transition: var(--transition); }
.card-link:hover { gap: 10px; }

/* Testimonials */
.testimonials { padding: 100px 0; background: var(--bg-light); position: relative; overflow: hidden; }
.testimonials-track { display: flex; overflow: hidden; max-width: 600px; margin: 0 auto; position: relative; min-height: 250px; }
.testimonial-card { min-width: 100%; padding: 40px; text-align: center; opacity: 0; transform: translateX(50px) scale(.95); transition: all .6s cubic-bezier(.25,.46,.45,.94); position: absolute; }
.testimonial-card.active { opacity: 1; transform: translateX(0) scale(1); position: relative; }
.stars { color: #ffc107; font-size: 1.5rem; margin-bottom: 20px; letter-spacing: 4px; }
.testimonial-text { font-size: 1.1rem; color: var(--text-dark); line-height: 1.8; font-style: italic; margin-bottom: 25px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 15px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.2rem; }
.testimonial-author-name { font-weight: 600; color: var(--text-dark); font-size: 1rem; }
.testimonial-role { font-size: .8rem; color: var(--text-light); }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px; }
.test-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(233,30,99,.15); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.3rem; transition: var(--transition); }
.test-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.test-dots { display: flex; gap: 8px; }
.t-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(233,30,99,.15); cursor: pointer; transition: var(--transition); }
.t-dot.active { background: var(--primary); width: 30px; border-radius: 5px; }

/* CTA Section */
.cta-section { padding: 100px 0; background: linear-gradient(135deg, #e91e63, #c2185b); position: relative; overflow: hidden; text-align: center; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.06), transparent 50%); animation: rotateGlow 20s linear infinite; }
@keyframes rotateGlow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.cta-box { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-badge { display: inline-block; background: rgba(255,255,255,.15); padding: 6px 16px; border-radius: 50px; font-size: .8rem; color: #fff; margin-bottom: 20px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.cta-box h2 { font-size: 2.5rem; color: #fff; margin-bottom: 20px; }
.cta-box p { color: rgba(255,255,255,.8); margin-bottom: 30px; font-size: 1.1rem; }
.cta-box .cta-button { background: #fff; color: var(--primary); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.cta-box .cta-button:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.2); }

/* Footer */
footer { position: relative; background: var(--text-dark); color: rgba(255,255,255,.7); }
.footer-wave { position: absolute; top: -2px; left: 0; width: 100%; line-height: 0; pointer-events: none; }
.footer-wave svg { width: 100%; height: auto; display: block; }
.footer-content { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; padding: 80px 20px 40px; max-width: 1200px; margin: 0 auto; }
.footer-brand h2 { font-size: 1.8rem; color: #fff; margin-bottom: 10px; }
.footer-brand h2 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-brand p { font-size: .9rem; }
.footer-links h3, .footer-contact h3 { color: #fff; font-size: 1.1rem; margin-bottom: 20px; position: relative; display: inline-block; }
.footer-links h3::after, .footer-contact h3::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 30px; height: 2px; background: var(--primary); }
.footer-links a, .footer-contact p { display: block; margin-bottom: 10px; color: rgba(255,255,255,.6); text-decoration: none; transition: var(--transition); font-size: .9rem; }
.footer-links a:hover { color: var(--primary); transform: translateX(5px); }
.copyright { text-align: center; padding: 20px; border-top: 1px solid rgba(255,255,255,.06); font-size: .85rem; color: rgba(255,255,255,.4); }

/* WhatsApp Floating */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: linear-gradient(135deg, #25D366, #128C7E); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1.8rem; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 999; transition: var(--bounce); animation: pulseWA 2s ease-in-out infinite; }
@keyframes pulseWA { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); transform: scale(1); } 50% { box-shadow: 0 4px 40px rgba(37,211,102,.6); transform: scale(1.05); } }
.whatsapp-float:hover { transform: scale(1.15) rotate(-10deg); }
.whatsapp-tooltip { position: fixed; bottom: 100px; right: 30px; background: #fff; padding: 12px 20px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,.15); z-index: 998; font-size: .85rem; font-weight: 500; opacity: 0; transform: translateY(10px) scale(.9); transition: all .4s cubic-bezier(.25,.46,.45,.94); pointer-events: none; white-space: nowrap; }
.whatsapp-tooltip.show { opacity: 1; transform: translateY(0) scale(1); }
.whatsapp-tooltip::after { content: ''; position: absolute; bottom: -8px; right: 24px; width: 16px; height: 16px; background: #fff; transform: rotate(45deg); border-radius: 2px; }

/* Back to Top */
.back-to-top { position: fixed; bottom: 100px; right: 35px; width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid rgba(0,0,0,.06); color: var(--primary); display: flex; align-items: center; justify-content: center; z-index: 998; opacity: 0; transform: translateY(20px); pointer-events: none; transition: var(--transition); text-decoration: none; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--primary); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(233,30,99,.3); }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--primary), var(--primary-dark)); border-radius: 4px; }

/* Reveal Animations */
.reveal-left, .reveal-right, .reveal-bottom { opacity: 0; transition: all .8s cubic-bezier(.25,.46,.45,.94); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-bottom { transform: translateY(40px); }
.reveal-left.revealed, .reveal-right.revealed, .reveal-bottom.revealed { opacity: 1; transform: translate(0); }

/* Responsive - Tablet */
@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
    .menu-toggle { display: block; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(255,255,255,.98); backdrop-filter: blur(20px); flex-direction: column; padding: 20px; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,.08); }
    .nav-links.active { display: flex; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .h-num { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .services { padding: 60px 0; }
    .testimonials { padding: 60px 0; }
    .testimonial-text { font-size: 1rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .footer-links h3::after, .footer-contact h3::after { left: 50%; transform: translateX(-50%); }
    .footer-links a:hover { transform: translateX(0) translateY(-2px); }
    .whatsapp-tooltip { display: none; }
    .cta-section { padding: 60px 0; }
    .cta-box h2 { font-size: 1.8rem; }
    .hero { padding: 120px 5% 80px; min-height: auto; }
    .s1, .s2, .s3 { display: none; }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .cta-button, .cta-outline { padding: 14px 25px; font-size: .85rem; }
    .hero-stats { gap: 15px; }
    .h-stat { min-width: 80px; }
    .h-num { font-size: 1.6rem; }
}
