/*

TemplateMo 595 3d coverflow
Projeto Risco Theme — #98C1FF / #4C8DFF

https://templatemo.com/tm-595-3d-coverflow

*/

@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  position: relative;
  background: #000;
}

/* Sections */
.section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#home {
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0f0f0f 100%);
}

#about {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
}

#contact {
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0f0f0f 100%);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center; justify-content: space-between;
  padding: 0 40px;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  height: 70px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo-container:hover { transform: translateY(-2px); }

.logo {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
}

.logo svg { width: 100%; height: 100%; }

.logo-text {
  color: white;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.menu-item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.menu-item:hover {
  color: white;
  transform: translateY(-2px);
}

.menu-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #98C1FF, #4C8DFF);
  transition: width 0.3s ease;
}

.menu-item:hover::after { width: 100%; }

.menu-item.active { color: white; }

.menu-item.active::after { width: 100%; }

.menu-item.external::before {
  content: '↗';
  margin-right: 5px;
  font-size: 12px;
  opacity: 0.7;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 25px; height: 3px; background: white;
  margin: 3px 0; transition: 0.3s; border-radius: 2px;
}

/* Home Section with Coverflow */
.coverflow-wrapper {
  width: 100%;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 80px;
}

.coverflow-container {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  perspective: 1200px; position: relative;
}

.coverflow {
  display: flex; align-items: center; justify-content: center;
  transform-style: preserve-3d;
  position: relative; width: 100%; height: 400px;
}

.coverflow-item {
  position: absolute;
  width: 300px; height: 300px;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer; user-select: none;
}

.coverflow-item .cover {
  width: 100%; height: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  background: #333;
}

.coverflow-item .cover img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 10px;
}

/* Reflection */
.coverflow-item .reflection {
  position: absolute; top: 100%; left: 0;
  width: 100%; height: 100%;
  border-radius: 10px;
  transform: scaleY(-1);
  opacity: 0.2; filter: blur(2px);
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(0, 0, 0, 1) 100%);
  overflow: hidden;
}

/* Active item (center) */
.coverflow-item.active {
  z-index: 100;
  transform: translateX(0) translateZ(0) rotateY(0deg);
}

.coverflow-item.active .cover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
}

/* Navigation */
.nav-button {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 60px; height: 60px; border-radius: 50%;
  cursor: pointer; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 200;
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.nav-button.prev { left: 50px; }

.nav-button.next { right: 50px; }

/* Dots indicator */
.dots-container {
  position: absolute; bottom: 60px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 200;
}

.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer; transition: all 0.3s ease;
}

.dot.active {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.3);
}

/* Info display */
.info {
  position: absolute; top: 120px; left: 50%;
  transform: translateX(-50%);
  color: white; text-align: center; z-index: 200;
}

.info h2 {
  font-size: 32px; margin-bottom: 10px;
  opacity: 0; animation: fadeIn 0.6s forwards;
}

.info p { font-size: 16px; opacity: 0.7; }

@keyframes fadeIn { to { opacity: 1; } }

/* Play/Pause Button */
.play-pause-button {
  position: absolute; bottom: 120px; left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white; width: 50px; height: 50px; border-radius: 50%;
  cursor: pointer; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; backdrop-filter: blur(10px);
  z-index: 200;
}

.play-pause-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%) scale(1.1);
}

.play-pause-button .pause-icon {
  font-size: 16px; letter-spacing: 2px;
}

/* About Section */
.about-content {
  max-width: 1400px; margin: 0 auto; padding: 40px; color: white;
}

.about-header {
  text-align: center; margin-bottom: 80px;
}

.about-header h2 {
  font-size: 48px;
  margin-top: 60px; margin-bottom: 20px;
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-header p {
  font-size: 20px; color: rgba(255, 255, 255, 0.8);
  max-width: 600px; margin: 0 auto; line-height: 1.8;
}

.about-main {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 80px;
}

.about-visual {
  position: relative; height: 600px;
  display: flex; align-items: center; justify-content: center;
}

.showcase-display {
  position: relative; width: 100%; max-width: 500px; height: 500px;
  display: flex; align-items: center; justify-content: center;
}

.showcase-main {
  position: relative; width: 350px; height: 400px;
  background: linear-gradient(135deg, rgba(152, 193, 255, 0.1) 0%, rgba(76, 141, 255, 0.1) 100%);
  border-radius: 30px; border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.showcase-logo {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  border-radius: 30px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(152, 193, 255, 0.35);
}

.showcase-logo svg { width: 70%; height: 70%; }

.showcase-title {
  font-size: 32px; font-weight: 700; color: white;
  margin-bottom: 15px; text-align: center;
}

.showcase-subtitle {
  font-size: 16px; color: rgba(255, 255, 255, 0.7);
  text-align: center; margin-bottom: 40px; line-height: 1.6;
}

.showcase-badges {
  display: flex; gap: 15px; flex-wrap: wrap; justify-content: center;
}

.badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px; padding: 8px 16px;
  font-size: 14px; color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease; cursor: pointer; text-decoration: none; display: inline-block;
}

.badge:hover {
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  border-color: transparent; color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(152, 193, 255, 0.3);
}

.badge:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(152, 193, 255, 0.3);
}

/* Decorative corner elements */
.corner-decoration {
  position: absolute; width: 80px; height: 80px;
  border: 2px solid rgba(152, 193, 255, 0.35);
}

.corner-decoration.top-left {
  top: -20px; left: -20px;
  border-right: none; border-bottom: none; border-radius: 20px 0 0 0;
}

.corner-decoration.bottom-right {
  bottom: -20px; right: -20px;
  border-left: none; border-top: none; border-radius: 0 0 20px 0;
}

.about-info { padding-left: 40px; }

.about-info h3 {
  font-size: 36px; margin-bottom: 30px; line-height: 1.3;
}

.about-info p {
  font-size: 18px; color: rgba(255, 255, 255, 0.8);
  line-height: 1.8; margin-bottom: 30px;
}

.feature-list { list-style: none; margin-bottom: 40px; }

.feature-list li {
  display: flex; align-items: center; gap: 15px;
  margin-bottom: 20px; font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.feature-list li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.cta-button {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  color: white; text-decoration: none; padding: 15px 30px;
  border-radius: 30px; font-weight: 600; transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(152, 193, 255, 0.5);
}

.cta-button svg { width: 20px; height: 20px; transition: transform 0.3s ease; }

.cta-button:hover svg { transform: translateX(5px); }

.stats-section {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; padding: 60px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 48px; font-weight: 700;
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 10px;
}

.stat-label { font-size: 16px; color: rgba(255, 255, 255, 0.7); }

/* Contact Section */
.contact-content {
  max-width: 1200px; margin: 0 auto; padding: 40px; color: white;
}

.contact-header {
  text-align: center; margin-top: 60px; margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 48px; margin-bottom: 20px;
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.contact-header p {
  font-size: 20px; color: rgba(255, 255, 255, 0.8);
  max-width: 600px; margin: 0 auto;
}

.contact-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}

.contact-info-section { padding-right: 40px; }

.contact-info-section h3 {
  font-size: 28px; margin-bottom: 20px; color: white;
}

.contact-info-section p {
  font-size: 16px; color: rgba(255, 255, 255, 0.7);
  line-height: 1.8; margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 25px; }

.contact-item {
  display: flex; align-items: center; gap: 20px; padding: 20px;
  background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px; transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(152, 193, 255, 0.2);
}

.contact-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.contact-icon svg { width: 24px; height: 24px; fill: white; }

.contact-text { flex: 1; }

.contact-text h4 { font-size: 16px; color: white; margin-bottom: 5px; }

.contact-text p { font-size: 14px; color: rgba(255, 255, 255, 0.7); margin: 0; }

.social-links { margin-top: 40px; }

.social-links h4 { font-size: 18px; margin-bottom: 20px; color: white; }

.social-buttons { display: flex; gap: 15px; }

.social-btn {
  width: 45px; height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; cursor: pointer;
}

.social-btn:hover {
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(152, 193, 255, 0.4);
}

.social-btn svg { width: 20px; height: 20px; fill: white; }

.contact-form-section { padding-left: 40px; }

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px; padding: 40px;
}

.form-group { margin-bottom: 25px; }

.form-group label {
  display: block; margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8); font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%; padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px; color: white; font-size: 16px; font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: #98C1FF;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(152,193,255,.2);
}

.form-group textarea {
  resize: vertical; min-height: 150px; line-height: 1.5;
}

.submit-btn {
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  color: white; border: none; padding: 15px 40px; font-size: 18px; font-weight: 600;
  border-radius: 30px; cursor: pointer; transition: all 0.3s ease; width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(152, 193, 255, 0.5);
}

/* Smooth image loading */
.image-loading { background: linear-gradient(45deg, #333, #555); position: relative; }
.image-loading::after { content: none; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 48px; opacity: 0.5; }

/* Footer Styles */
.footer {
  background: rgba(0, 0, 0, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px; margin-top: 80px;
}

.footer-content {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 30px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer a {
  color: #98C1FF;
  text-decoration: none; transition: color 0.3s ease;
}

.footer a:hover { color: #4C8DFF; }

.footer-links { display: flex; gap: 30px; align-items: center; }

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none; font-size: 14px; transition: color 0.3s ease;
}

.footer-links a:hover { color: white; }

/* Scroll to top button */
.scroll-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px; cursor: pointer;
  opacity: 0; transform: translateY(100px);
  transition: all 0.3s ease; z-index: 999;
}

.scroll-to-top.visible { opacity: 1; transform: translateY(0); }

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(152, 193, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .about-main { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { height: 400px; }
  .about-info { padding-left: 0; text-align: center; }
  .feature-list { text-align: left; max-width: 500px; margin: 0 auto 40px; }
  .stats-section { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 40px; }
  /* Contact section responsive */
  .contact-container { grid-template-columns: 1fr; gap: 50px; }
  .contact-info-section { padding-right: 0; }
  .contact-form-section { padding-left: 0; }
}

@media (max-width: 768px) {
  .header { padding: 0 20px; }
  .main-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px);
    flex-direction: column; padding: 20px; gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .main-menu.active { display: flex; }
  .menu-toggle { display: flex; }
  .menu-toggle.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

  .coverflow-item { width: 200px; height: 200px; }

  .nav-button { width: 40px; height: 40px; font-size: 18px; }
  .nav-button.prev { left: 20px; }
  .nav-button.next { right: 20px; }

  .info h2 { font-size: 24px; }
  .info p { font-size: 14px; }

  .logo-text { font-size: 20px; }

  .about-header h2 { font-size: 36px; }
  .about-info h3 { font-size: 28px; }
  .about-visual { height: 400px; }
  .showcase-display { max-width: 350px; height: 400px; }
  .showcase-main { width: 100%; height: 350px; padding: 30px; }
  .showcase-logo { width: 100px; height: 100px; margin-bottom: 20px; }
  .showcase-title { font-size: 28px; }
  .showcase-subtitle { font-size: 14px; margin-bottom: 30px; }
  .corner-decoration { display: none; }
  .stat-number { font-size: 36px; }

  .contact-content h2 { font-size: 36px; }

  .footer-content { flex-direction: column; text-align: center; gap: 20px; }
  .footer-links { gap: 20px; }
}

@media (max-width: 480px) {
  .header { height: 70px; padding: 0 15px; }
  .header.scrolled { height: 60px; }
  .logo { width: 40px; height: 40px; }
  .logo-text { font-size: 18px; }
  .coverflow-item { width: 180px; height: 180px; }

  .about-content, .contact-content { padding: 20px; }

  /* Additional contact section mobile optimization for small screens */
  .contact-container { gap: 30px; }
  .contact-header { margin-bottom: 40px; }
  .contact-header h2 { font-size: 32px; margin-bottom: 15px; }
  .contact-header p { font-size: 16px; padding: 0 10px; }
  .contact-info-section { margin-bottom: 20px; }
  .contact-info-section h3 { font-size: 22px; margin-bottom: 15px; }
  .contact-info-section > p { font-size: 14px; padding: 0 10px; margin-bottom: 30px; }
  .contact-details { gap: 15px; }
  .contact-item { padding: 15px; gap: 12px; }
  .contact-icon { width: 40px; height: 40px; }
  .contact-icon svg { width: 20px; height: 20px; }
  .contact-text h4 { font-size: 14px; }
  .contact-text p { font-size: 12px; word-break: break-word; }
  .social-links { margin-top: 30px; }
  .social-links h4 { font-size: 16px; margin-bottom: 15px; }
  .social-buttons { gap: 10px; }
  .social-btn { width: 40px; height: 40px; }
  .social-btn svg { width: 18px; height: 18px; }
  .contact-form { padding: 20px 15px; border-radius: 15px; }
  .form-group { margin-bottom: 20px; }
  .form-group label { font-size: 14px; margin-bottom: 8px; }
  .form-group input, .form-group textarea { padding: 12px; font-size: 14px; border-radius: 8px; }
  .form-group textarea { min-height: 120px; }
  .submit-btn { padding: 12px 30px; font-size: 16px; border-radius: 25px; }
}

/* Apps Section */
#apps { background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%); }

.apps-content {
  max-width: 1200px; width: 100%;
  margin: 0 auto; padding: 40px; color: #fff;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center;
}

.apps-text h2 {
  font-size: 48px; margin-bottom: 16px;
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.apps-text p { font-size: 18px; color: rgba(255,255,255,.8); line-height: 1.8; margin-bottom: 28px; }

/* store badges */
.store-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 18px; border-radius: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.15);
  text-decoration: none; color: #fff; transition: .25s ease; backdrop-filter: blur(10px);
}
.store-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(152,193,255,.35);
}
.store-icon { width: 32px; height: 32px; display: grid; place-items: center; }
.store-icon svg { width: 100%; height: 100%; }
.store-text small { display: block; font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.75); }
.store-text strong { font-size: 16px; }

/* highlights */
.apps-highlights { list-style: none; margin-top: 14px; }
.apps-highlights li {
  display: flex; align-items: center; gap: 10px;
  margin: 10px 0; color: rgba(255,255,255,.9); font-size: 15px;
}
.apps-highlights li::before {
  content: '✓'; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg,#98C1FF,#4C8DFF);
  flex-shrink: 0;
}

/* phone mockup */
.apps-mock { display: flex; justify-content: center; }
.phone {
  position: relative; width: 320px; height: 640px;
  border-radius: 36px; padding: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
}
.phone .notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 24px; border-radius: 0 0 16px 16px;
  background: rgba(0,0,0,.75);
}
.phone .screen {
  width: 100%; height: 100%;
  border-radius: 28px; overflow: hidden;
  background: radial-gradient(120% 120% at 0% 0%, #1a1a2e 0%, #0f0f0f 60%);
  display: flex; flex-direction: column; justify-content: space-between;
}

/* “home” inside mock */
.app-hero { text-align: center; padding: 28px 16px 10px; }
.app-logo { width: 88px; height: 88px; margin: 0 auto 8px; }
.app-logo svg { width: 100%; height: 100%; }
.app-hero h4 { font-size: 18px; margin-bottom: 4px; }
.app-hero p { font-size: 12px; color: rgba(255,255,255,.7); }

.card-list { padding: 0 16px; display: grid; gap: 10px; }
.mini-card {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 12px 14px;
}
.mini-card .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg,#98C1FF,#4C8DFF);
}
.mini-card strong { font-size: 14px; display: block; }
.mini-card small { font-size: 11px; color: rgba(255,255,255,.7); }

.cta-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 12px 16px 18px;
}
.mini-btn {
  padding: 10px 12px; border-radius: 12px; border: none; font-weight: 600; cursor: pointer; color: #fff;
  background: linear-gradient(135deg,#98C1FF,#4C8DFF);
}
.mini-btn.ghost {
  background: transparent; border: 1px solid rgba(255,255,255,.2);
}

/* responsive */
@media (max-width: 1024px) {
  .apps-content { grid-template-columns: 1fr; text-align: center; }
  .apps-text p { margin-left: auto; margin-right: auto; max-width: 700px; }
  .apps-mock { order: -1; margin-bottom: 10px; }
}
@media (max-width: 480px) {
  .apps-text h2 { font-size: 36px; }
  .phone { width: 280px; height: 560px; }
}

/* Partners (footer) */
.partners {
  width: 100%;
  padding: 20px 0;
  text-align: center;

  /* fundo branco */
  background: #fff;

  /* ajusta contraste da borda e espaçamento */
  border-bottom: 1px solid #eee;
}
.partners p {
  font-size: 14px;
  color: #333;  /* texto mais escuro no fundo branco */
  margin-bottom: 12px;
}
.partners-logos {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.partners-logos img {
  max-width: 140px;   /* largura máxima igual para todos */
  height: auto;       /* mantém proporção */
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.partners-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}



/* Free Section */
.free-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
  padding: 80px 20px; color: white;
}

.free-content {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.free-text h2 {
  font-size: 48px; margin-bottom: 20px;
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.free-text p {
  font-size: 20px; line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.free-highlight { display: flex; flex-wrap: wrap; gap: 20px; }

.free-highlight span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px; border-radius: 25px;
  font-size: 16px; color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.free-highlight span:hover {
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  border-color: transparent; color: #fff; transform: translateY(-3px);
}

.free-image img {
  width: 100%; max-width: 420px; display: block; margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  border-radius: 20px;
}

/* Responsivo */
@media (max-width: 1024px) {
  .free-content { grid-template-columns: 1fr; text-align: center; }
  .free-image { margin-top: 30px; }
}

/* Tech Section */
.tech-section{
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0f0f0f 100%);
  color:#fff; padding:80px 20px;
}
.tech-content{
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:1.1fr 0.9fr;
  gap:60px; align-items:center;
}
.tech-text h2{
  font-size:48px; margin-bottom:18px;
  background:linear-gradient(135deg,#98C1FF 0%, #4C8DFF 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.tech-text p{
  font-size:18px; color:rgba(255,255,255,.8);
  line-height:1.8; margin-bottom:18px;
}
.tech-list{
  list-style:none; display:grid; gap:12px; margin-top:10px;
}
.tech-list li{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px; padding:12px 16px;
  font-size:15px; color:rgba(255,255,255,.9);
  display:flex; gap:10px;
}
.tech-list li::before{
  content:'▸'; display:inline-block; margin-top:2px;
  background:linear-gradient(135deg,#98C1FF,#4C8DFF);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  font-weight:700;
}
.tech-diagram{
  width:100%; overflow:hidden; border-radius:20px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  box-shadow:0 25px 50px rgba(0,0,0,.35);
  padding:12px;
}
.tech-diagram svg{ width:100%; height:auto; display:block; }

@media (max-width:1024px){
  .tech-content{ grid-template-columns:1fr; }
  .tech-text{ text-align:center; }
  .tech-list{ text-align:left; max-width:720px; margin:10px auto 0; }
}
@media (max-width:480px){
  .tech-text h2{ font-size:36px; }
  .tech-text p{ font-size:16px; }
}

.tech-image img {
  width: 100%; max-width: 480px; border-radius: 20px;
  display: block; margin: 0 auto; box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.app-screenshot {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 28px; display: block;
}

/* ==== iPhone Mockup ==== */
.iphone{
  position:relative; width:320px; height:640px;
  border-radius:42px; padding:8px;
  background:linear-gradient(135deg,#2a2a2a,#0d0d0d);
  box-shadow:0 30px 60px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.06);
}
.frame-gloss{
  position:absolute; inset:0; border-radius:42px;
  background:linear-gradient( to bottom, rgba(255,255,255,.12), rgba(255,255,255,0) 35%, rgba(255,255,255,.08) 70%, rgba(255,255,255,0) );
  pointer-events:none; mix-blend-mode:screen;
}
.screen-ios{
  position:relative; width:100%; height:100%;
  border-radius:34px; overflow:hidden;
  background:radial-gradient(120% 120% at 0% 0%, #1a1a2e 0%, #0f0f0f 60%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

/* Notch estilo iOS */
.notch{
  position:absolute; top:10px; left:50%; transform:translateX(-50%);
  width:160px; height:28px; background:#000; border-radius:18px;
  box-shadow:0 2px 10px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.06);
  z-index:2; display:flex; align-items:center; justify-content:center; gap:10px;
}
.notch .speaker{
  width:64px; height:6px; border-radius:6px;
  background:linear-gradient(180deg, rgba(70,70,70,.9), rgba(20,20,20,1));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.notch .camera{
  width:7px; height:7px; border-radius:50%;
  background:radial-gradient(circle at 30% 30%, #5ad, #123);
  box-shadow:0 0 4px rgba(64,160,255,.6);
}

/* Botões laterais (volume/power) */
.side-btn{
  position:absolute; width:3px; border-radius:2px; background:#202020;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.05), 0 0 0 1px rgba(0,0,0,.6);
}
.side-btn.left.volume{ left:-3px; top:150px; height:44px; }
.side-btn.right.power{ right:-3px; top:230px; height:56px; }

/* Screenshot ocupa a tela toda */
.app-screenshot{
  width:100%; height:100%; object-fit:cover; display:block; border-radius:34px;
}

/* Responsivo */
@media (max-width:480px){
  .iphone{ width:280px; height:560px; border-radius:38px; }
  .screen-ios{ border-radius:30px; }
  .notch{ width:140px; height:26px; }
}

/* Logo como arquivo SVG externo */
.logo {
  display: grid; place-items: center;
  width: 80px; height: 80px;
}

.logo-img { width: 100%; height: 100%; display: block; }

/* Espaçamento entre ícone e texto */
.logo-container .logo-text { margin-left: 10px; }

.showcase-logo {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  border-radius: 30px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(152, 193, 255, 0.35);
}

.showcase-logo-img { width: 70%; height: 70%; display: block; }








/* ==== Team (carrossel por página) ==== */
#team { background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%); color:#fff; }
.team-content { max-width: 1200px; margin: 0 auto; padding: 40px; width: 100%; }
.team-header { text-align: center; margin-bottom: 40px; }
.team-header h2 {
  font-size: 48px; margin-bottom: 12px;
  background: linear-gradient(135deg,#98C1FF 0%, #4C8DFF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip:text;
}
.team-header p { color: rgba(255,255,255,.8); max-width: 720px; margin: 0 auto; }

.team-carousel { position: relative; }
.team-viewport {
  overflow: hidden; width: 100%;
  /* controla quantos cards por página via CSS var */
  --per-page: 3;
}
@media (max-width: 1024px) { .team-viewport { --per-page: 2; } }
@media (max-width: 640px)  { .team-viewport { --per-page: 1; } }

.team-track {
  display: flex; gap: 24px;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.member-card {
  flex: 0 0 calc((100% - (var(--per-page) - 1) * 24px) / var(--per-page));
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  transform: translateZ(0);
}
.member-card[data-placeholder="true"] { visibility: hidden; }

.member-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.member-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease;
}
.member-card:hover .member-media img { transform: scale(1.06); }
.member-glow {
  position: absolute; inset: auto auto 0 0; width: 100%; height: 60%;
  background: radial-gradient(120% 100% at 50% 100%, rgba(152,193,255,.28) 0%, rgba(76,141,255,.18) 40%, transparent 70%);
  pointer-events: none;
}

.member-info { padding: 16px 16px 18px; }
.member-name { font-size: 18px; margin: 0 0 4px; }
.member-role { font-size: 14px; opacity: .85; margin-bottom: 6px; }
.member-desc { font-size: 14px; color: rgba(255,255,255,.75); margin: 0; }

/* Nav */
.team-nav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.team-btn {
  pointer-events: auto;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color:#fff; font-size: 22px; cursor: pointer;
  display:grid; place-items:center;
  transition: transform .2s ease, background .2s ease;
}
.team-btn:hover { transform: scale(1.08); background: rgba(255,255,255,.14); }
.team-btn.prev { margin-left: -8px; }
.team-btn.next { margin-right: -8px; }

/* Dots */
.team-dots { display:flex; gap:10px; justify-content:center; margin-top:18px; }
.team-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer; border: 0;
  transition: transform .2s ease, background .2s ease;
}
.team-dot[aria-selected="true"] { background: rgba(255,255,255,.9); transform: scale(1.25); }



.free-image {
  position: relative;
  text-align: center;
}

.free-image .free-download {
  display: block;
  margin: -20px auto 0;   /* sobe um pouco a imagem, ajuste conforme quiser */
  max-width: 820px;       /* largura máxima no desktop */
  width: 100%;            /* responsivo */
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
  border-radius: 0;       /* garante que não arredonde a imagem */
}


/* Ruler Section */
.ruler-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
  padding: 80px 20px;
  color: white;
}

.ruler-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ruler-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

.ruler-text h2 {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #98C1FF 0%, #4C8DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ruler-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ruler-features {
  list-style: none;
  margin: 20px 0 30px;
  padding: 0;
}

.ruler-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}

.ruler-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #98C1FF, #4C8DFF);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Responsivo */
@media (max-width: 1024px) {
  .ruler-content { grid-template-columns: 1fr; text-align: center; }
  .ruler-text h2 { font-size: 36px; }
}


/* ===== Paleta do sistema (ajuste se já existir var global) ===== */
:root{
  --risco-accent:#98C1FF;              /* cor de destaque do sistema */
  --risco-text:#ffffff;                /* texto principal */
  --risco-muted:rgba(255,255,255,.82); /* texto secundário */
  --risco-surface:rgba(255,255,255,.05);
  --risco-surface-2:rgba(255,255,255,.08);
  --risco-border:rgba(255,255,255,.14);
}

/* ===== Seção Na mídia ===== */
.section.press-section{
  padding: clamp(48px, 6vw, 84px) 0;
}

.press-content{
  width:min(1120px, 92vw);
  margin:0 auto;
}

.press-header h2{
  color:var(--risco-text);
  font-size:clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom:.35rem;
}
.press-header p{
  color:var(--risco-muted);
  margin-bottom:1.25rem;
  opacity:.95;
}

/* Card principal da matéria */
.press-article{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:clamp(14px, 2.2vw, 24px);
  align-items:center;
  background:var(--risco-surface);
  border:1px solid var(--risco-border);
  border-radius:20px;
  padding:clamp(14px, 2.4vw, 22px);
  box-shadow:0 10px 24px rgba(0,0,0,.28);
  backdrop-filter:saturate(120%) blur(6px);
}

/* Imagem da matéria */
.press-figure{
  position:relative;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--risco-surface-2);
  aspect-ratio:16/10;
}
.press-figure img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.01);
}
.press-figure figcaption{
  position:absolute; left:12px; bottom:10px;
  background:rgba(0,0,0,.45);
  padding:.35rem .55rem;
  border-radius:8px;
  font-size:.8rem;
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}

/* Texto e botão */
.press-text h3{
  color:var(--risco-text);
  font-size:clamp(1.05rem, 2.2vw, 1.35rem);
  margin-bottom:.4rem;
}
.press-text p{
  color:var(--risco-muted);
  line-height:1.55;
  margin-bottom:12px;
}

/* Botão "Ler a matéria completa" */
.press-btn{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.6rem .95rem;
  border-radius:12px;
  text-decoration:none;
  color:var(--risco-text);
  font-weight:700;
  background:linear-gradient(0deg, rgba(152,193,255,.12), rgba(152,193,255,.12));
  border:1px solid color-mix(in srgb, var(--risco-accent) 55%, #ffffff 0%);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.press-btn .ext-icon{ width:18px; height:18px; }
.press-btn:hover{
  transform:translateY(-1px);
  background:linear-gradient(0deg, rgba(152,193,255,.18), rgba(152,193,255,.18));
  border-color: color-mix(in srgb, var(--risco-accent) 85%, #ffffff 0%);
  box-shadow:0 8px 22px rgba(152,193,255,.18);
}
.press-btn:focus-visible{
  outline:2px solid var(--risco-accent);
  outline-offset:3px;
  box-shadow:0 0 0 6px rgba(152,193,255,.15);
}

/* Responsividade */
@media (max-width: 980px){
  .press-article{
    grid-template-columns: 1fr;
    padding:clamp(12px, 3.4vw, 18px);
  }
  .press-figure{ aspect-ratio: 16/9; }
}

/* Integração visual com o restante do site (opcional) */
.press-card, .showcase-display, .member-card{
  /* mantém consistência de bordas/vidro */
  backdrop-filter:saturate(120%) blur(6px);
}


/* === tokens do tema (pode ficar no começo do CSS) === */
:root{
  /* destaque do sistema já usado: #98C1FF */
  --risco-accent:#98C1FF;

  /* gradiente/base escura do site — ajuste se você já tiver algo igual */
  --risco-bg: radial-gradient(ellipse at top, #121728 0%, #0b1020 55%, #080c18 100%);
}

/* === faça a seção #press usar o mesmo fundo do site === */
.section.press-section{
  background: var(--risco-bg) !important;   /* mesmo fundo dos demais */
}

/* mantém os cartões com “vidro” por cima do fundo */
.press-article{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
}

/* opcional: para evitar qualquer herança de preto */
body{ background: var(--risco-bg); } /* só aplique se o body ainda estiver #000 */

/* Ajuste fino para SweetAlert no tema do Risco */
.swal2-popup{
  background: var(--risco-bg, #0b1020);
  color: var(--risco-text, #fff);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
}
.swal2-title{ color: var(--risco-text, #fff); }
.swal2-confirm{
  background: var(--risco-accent, #98C1FF) !important;
  color:#000 !important;
  border-radius: 10px !important;
}

/* === Dropdown simples do menu === */
.main-menu { position: relative; display: flex; gap: 14px; flex-wrap: wrap; }

.has-submenu { position: relative; }
.submenu-toggle{
  background: transparent; border: 0; color: inherit; font: inherit;
  padding: 10px 12px; border-radius: 10px; cursor: pointer; display: inline-flex; gap: 6px; align-items: center;
}
.submenu-toggle:hover{ background: rgba(255,255,255,0.06); }

.submenu{
  position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 220px; background: #0d121a; border: 1px solid #1e2430; border-radius: 12px;
  padding: 8px; display: none; box-shadow: 0 10px 30px rgba(0,0,0,.35); z-index: 20;
}
.submenu a{
  display: block; padding: 10px 12px; border-radius: 8px; color: #e6edf3; text-decoration: none;
}
.submenu a:hover{ background: rgba(152,193,255,.12); }

/* abre no hover em telas grandes */
@media (pointer: fine){
  .has-submenu:hover .submenu{ display: block; }
}

/* mobile: faz o dropdown ocupar a largura do nav */
@media (max-width: 900px){
  .has-submenu{ width: 100%; }
  .submenu{ position: static; width: 100%; margin-top: 6px; }
}
.chev{ transition: transform .2s ease; }
.has-submenu[aria-expanded="true"] .chev{ transform: rotate(180deg); }

/* estado padrão (fechado) em mobile */
@media (max-width: 900px){
  .header { position: relative; }
  .main-menu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(0,0,0,0.9);
    padding: 14px 16px;
  }
  .header.nav-open .main-menu{ display:block; }
}
