/* CONFIGURAÇÕES GERAIS */
:root {
    --bg-dark: #09090b;
    --bg-card: #121418;
    --primary: #00d4ff;
    --text-white: #ffffff;
    --text-gray: #b0b3b8;
    --gradient: linear-gradient(90deg, #00d4ff 0%, #007bff 100%);
    --radius: 16px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg-dark); color: var(--text-white); font-family: var(--font-body); overflow-x: hidden; line-height: 1.6; }
html { scroll-behavior: smooth; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; }

h1, h2, h3, h4 { font-family: var(--font-heading); letter-spacing: -0.02em; }

.section { padding: 80px 0; position: relative; }
.section-no-pad { padding: 40px 0; }
.bg-darker { background: #050505; }
.center { text-align: center; }
.section-header { margin-bottom: 50px; max-width: 800px; margin-left: auto; margin-right: auto;}
.section-header h2 { font-size: 2.5rem; line-height: 1.2; }

/* HEADER */
.header { background: rgba(9, 9, 11, 0.85); backdrop-filter: blur(16px); position: sticky; top: 0; z-index: 999; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; width: auto; } /* Tamanho do Logo */
.nav-menu { display: flex; gap: 32px; align-items: center; }
.nav-menu a { color: var(--text-white); text-decoration: none; font-size: 0.95rem; font-weight: 500; opacity: 0.9; transition: 0.3s; }
.nav-menu a:hover { opacity: 1; color: var(--primary); }
.mobile-toggle { display: none; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }

/* BOTÕES */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 36px; border-radius: 50px; text-decoration: none; font-weight: 600; font-family: var(--font-heading); transition: 0.3s; cursor: pointer; }
.btn-primary { background: var(--gradient); color: white; border: none; box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4); }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: white; background: transparent; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(0, 212, 255, 0.05); }

/* HERO */
.hero { padding: 80px 0 0 0; overflow: visible; } 
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; }
.badge-new { display: inline-block; padding: 8px 18px; background: rgba(0, 212, 255, 0.08); color: var(--primary); border-radius: 30px; font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; border: 1px solid rgba(0, 212, 255, 0.2); }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.03em; }
.hero p { color: var(--text-gray); font-size: 1.15rem; margin-bottom: 35px; max-width: 520px; font-weight: 400; }
.hero-buttons { display: flex; gap: 15px; margin-bottom: 35px; }
.trust-badges { display: flex; gap: 25px; font-size: 0.95rem; color: #d1d5db; font-weight: 500; }
.text-yellow { color: #facc15; } .text-green { color: #4ade80; }

.mascot-wrapper { position: relative; height: 550px; display: flex; justify-content: center; margin-bottom: -50px; z-index: 10; }
.mascot-img { max-height: 100%; z-index: 2; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6)); }
.glow-bg { position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, rgba(0,0,0,0) 70%); opacity: 0.4; filter: blur(80px); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; }
.stat-card { position: absolute; bottom: 100px; left: 0; background: rgba(18, 20, 24, 0.9); backdrop-filter: blur(10px); padding: 18px 28px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); display: flex; gap: 15px; z-index: 3; align-items: center; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.stat-card i { font-size: 1.8rem; color: #4ade80; }

/* SERVIÇOS */
#servicos { padding-top: 120px; padding-bottom: 60px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.service-card { background: rgba(255, 255, 255, 0.03); padding: 40px 30px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.08); text-align: left; transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: flex-start; height: 100%; }
.service-card:hover { border-color: var(--primary); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); background: rgba(255, 255, 255, 0.05); }
.service-card i { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: rgba(0, 212, 255, 0.08); color: var(--primary); font-size: 1.8rem; border-radius: 12px; border: 1px solid rgba(0, 212, 255, 0.1); margin-bottom: 24px; transition: 0.3s; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: white; font-weight: 700; }
.service-card p { color: #b0b3b8; font-size: 1rem; line-height: 1.6; }

/* PORTFOLIO */
#portfolio { padding: 40px 0; }
.marquee-container { overflow: hidden; position: relative; padding: 20px 0; mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); }
.marquee-content { display: flex; gap: 40px; animation: scroll 40s linear infinite; }
.portfolio-item { flex-shrink: 0; width: 300px; height: 480px; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.3); transition: 0.4s ease; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: 0.3s; }
.portfolio-item:hover { transform: translateY(-10px); border-color: var(--primary); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SEGMENTOS */
.segments-marquee { overflow: hidden; position: relative; padding: 20px 0; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.segments-track { display: flex; gap: 60px; width: max-content; animation: scrollSegments 40s linear infinite; }
.segments-track:hover { animation-play-state: paused; }
.segment-card { display: flex; flex-direction: column; align-items: center; gap: 15px; width: 120px; cursor: default; }
.icon-circle { width: 90px; height: 90px; background: rgba(0, 212, 255, 0.05); border: 2px solid rgba(0, 212, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--primary); transition: all 0.3s ease; }
.segment-card span { font-size: 1rem; font-weight: 500; color: var(--text-white); text-align: center; transition: 0.3s; }
.segment-card:hover .icon-circle { background: var(--primary); color: black; border-color: var(--primary); box-shadow: 0 0 30px rgba(0, 212, 255, 0.6); transform: scale(1.1); }
.segment-card:hover span { color: var(--primary); font-weight: 700; }
@keyframes scrollSegments { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 600px) { .segments-track { gap: 40px; } .icon-circle { width: 70px; height: 70px; font-size: 2rem; } .segment-card { width: 90px; } .segment-card span { font-size: 0.85rem; } }

/* PROVA SOCIAL SHORTS */
.shorts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 800px; margin: 0 auto; justify-content: center; }
.short-frame { position: relative; width: 100%; padding-bottom: 177.77%; height: 0; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.4); background: #000; }
.short-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* SOBRE (IMAGEM EQUIPE) */
.about-img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); object-fit: cover; height: 100%; min-height: 400px; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.about-text p { color: var(--text-gray); margin-bottom: 15px; font-size: 1.05rem; }

/* VANTAGENS */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.benefit-card { background: rgba(255, 255, 255, 0.02); padding: 40px 24px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.06); transition: all 0.3s ease; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; min-height: 220px; }
.benefit-card:hover { border-color: var(--primary); transform: translateY(-5px); background: rgba(0, 212, 255, 0.03); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.benefit-card i { font-size: 2.8rem; color: var(--primary); margin-bottom: 20px; display: block; filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3)); }
.benefit-card span { font-weight: 700; font-size: 1.1rem; color: white; font-family: var(--font-heading); }

/* BENEFÍCIOS DETALHADOS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.benefits-title { margin-bottom: 50px; display: block; width: 100%; }
.benefit-row { display: flex; gap: 24px; margin-bottom: 40px; }
.b-icon { min-width: 60px; height: 60px; background: rgba(0, 212, 255, 0.08); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.8rem; }
.benefit-row h4 { font-size: 1.25rem; margin-bottom: 6px; }
.benefit-row p { color: var(--text-gray); font-size: 1rem; }
.video-frame { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 60px rgba(0,0,0,0.6); background: #000; }
.video-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* WHATSAPP BOX */
.whatsapp-box { background: radial-gradient(circle at center, #1a1d21 0%, #0d0f12 100%); border: 1px solid rgba(255,255,255,0.05); border-radius: 24px; padding: 60px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.wa-icon-large { font-size: 4rem; color: #25D366; filter: drop-shadow(0 0 20px rgba(37, 211, 102, 0.4)); margin-bottom: 10px; }
.wa-content h3 { font-size: 2rem; margin-bottom: 10px; }
.wa-content p { color: var(--text-gray); max-width: 500px; margin: 0 auto; }
.btn-whatsapp-section { margin-top: 20px; background: #25D366; color: white; padding: 16px 40px; border-radius: 50px; font-weight: 700; text-decoration: none; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); transition: 0.3s; }
.btn-whatsapp-section:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5); }

/* CONTATO */
#contato { padding-top: 60px; padding-bottom: 100px; }
.contact-wrapper { background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%); padding: 60px; border-radius: 30px; max-width: 700px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.contact-header { margin-bottom: 50px; text-align: center; }
.contact-header h2 { font-size: 2.4rem; margin-bottom: 15px; }
.contact-header p { color: #b0b3b8; font-size: 1.1rem; margin-bottom: 40px; display: block; }
.grid-2-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
input, select { width: 100%; padding: 16px; background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: white; outline: none; margin-bottom: 20px; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
input:focus, select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1); }
.btn-block { width: 100%; justify-content: center; padding: 18px; font-size: 1.1rem; }

/* FAQ */
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.accordion-item { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; overflow: hidden; transition: 0.3s; }
.accordion-header { width: 100%; padding: 20px 25px; background: transparent; border: none; color: white; text-align: left; font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.accordion-header:hover { background: rgba(255,255,255,0.02); }
.accordion-item.active { border-color: var(--primary); }
.accordion-item.active .accordion-header i { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: rgba(0,0,0,0.2); }
.accordion-content p { padding: 20px 25px; color: var(--text-gray); font-size: 0.95rem; border-top: 1px solid rgba(255,255,255,0.05); }

/* INTEGRAÇÕES */
.section-integrations { background: var(--primary); padding: 60px 0; color: black; }
.integrations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 1000px; margin: 0 auto; text-align: center; }
.int-item { display: flex; flex-direction: column; align-items: center; gap: 15px; color: #000; }
.int-item i { font-size: 3rem; opacity: 0.8; }
.int-item span { font-size: 1.1rem; font-weight: 700; }

/* FOOTER */
.footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 60px 0 40px; background: #030304; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; }
.footer-logo p { font-size: 0.9rem; color: #6b7280; margin-top: 8px; }
.footer-copy { color: #6b7280; font-size: 0.9rem; }
.social-icons { display: flex; gap: 20px; }
.social-icons a { color: white; font-size: 1.6rem; transition: 0.3s; opacity: 0.7; }
.social-icons a:hover { color: var(--primary); opacity: 1; transform: scale(1.1); }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: white; border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 0 20px rgba(37, 211, 102, 0.5); z-index: 9999; text-decoration: none; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 0 30px rgba(37, 211, 102, 0.8); }

/* ANIMAÇÕES */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.floating { animation: float 5s ease-in-out infinite; }
.floating-delayed { animation: float 5s ease-in-out infinite 2.5s; }

/* RESPONSIVO */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.8rem; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-buttons { justify-content: center; }
    .trust-badges { justify-content: center; }
    .mascot-wrapper { margin-bottom: 0; height: 400px; } 
    #servicos { padding-top: 60px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .mascot-detail { order: -1; margin-bottom: 30px; }
    .footer-content { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .benefits-grid { grid-template-columns: 1fr; }
    .grid-2-form { grid-template-columns: 1fr; }
    .contact-wrapper { padding: 30px 20px; }
    .header .nav-menu { display: none; }
    .mobile-toggle { display: block; }
}