/* About Page - Modern Styles */
html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}

* {
  box-sizing: border-box !important;
}

/* Exceções para o menu moderno - não aplicar overflow hidden */
.modern-navbar,
.modern-navbar *,
.modern-navbar .dropdown-menu,
.mobile-menu,
.mobile-menu * {
  overflow-x: visible !important;
  overflow-y: visible !important;
  overflow: visible !important;
  max-width: none !important;
}

.container-fluid,
.container,
.row,
[class*="col-"] {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* Exceção para container dentro do navbar */
.modern-navbar .nav-container {
  max-width: 1400px !important;
  overflow-x: visible !important;
}

.modern-about-section {
  padding: 0;
  background: white;
  min-height: 100vh;
  color: #333;
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box;
}

.modern-about-section *:not(.modern-navbar):not(.modern-navbar *):not(.mobile-menu):not(.mobile-menu *),
.modern-about-section *:not(.modern-navbar):not(.modern-navbar *)::before,
.modern-about-section *:not(.modern-navbar):not(.modern-navbar *)::after {
  box-sizing: border-box !important;
  max-width: 100% !important;
}

/* Prevent any grid or flex items from causing overflow */
.modern-about-section .d-grid,
.modern-about-section .row,
.modern-about-section [class*="col-"],
.modern-about-section .grid,
.modern-about-section .cards-grid,
.modern-about-section .features-grid {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

/* Navbar and fixed elements fix - Exceções para menu moderno */
.navbar:not(.modern-navbar),
.navbar-brand:not(.modern-navbar *),
.navbar-nav:not(.modern-navbar *),
.nav-link:not(.modern-navbar *) {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* Bootstrap container fix */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* General grid overflow prevention */
[class*="grid"],
.grid,
.tech-grid,
.features-grid,
.integrations-grid,
.apps-grid,
.plans-grid,
.security-features,
.team-grid,
.products-grid {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

/* Fix all minmax values to prevent overflow */
[class*="grid"] {
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)) !important;
}

/* Global overflow prevention for all elements */
*, *::before, *::after {
  box-sizing: border-box !important;
}

/* Exceção específica para elementos do menu moderno */
.modern-navbar *,
.modern-navbar *::before,
.modern-navbar *::after,
.mobile-menu *,
.mobile-menu *::before,
.mobile-menu *::after,
.mobile-menu-overlay {
  box-sizing: border-box !important;
  /* Não aplicar max-width nem overflow nos elementos do menu */
}

/* Prevent all elements from exceeding viewport width */
body, html {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

/* Fix navbar positioning issues - Exceção para menu moderno */
.navbar:not(.modern-navbar) {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

/* Ensure main content doesn't exceed viewport */
main {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

.modern-about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.about-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.about-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><path d="M0,100V0c100,0,200,50,300,50s200-50,300-50s200,50,300,50s200-50,300-50v100H0z"/></svg>');
  background-size: cover;
  background-position: bottom;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.about-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Main Content */
.about-content {
  background: white;
  padding: 0;
}

.about-section {
  padding: 80px 0;
  position: relative;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-section:nth-child(even) {
  background: #f8f9fa;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-content.full-width {
  grid-template-columns: 1fr;
}

.section-content.reverse {
  direction: rtl;
}

.section-content.reverse > * {
  direction: ltr;
}

.section-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.section-text h2 i {
  color: #667eea;
  margin-right: 0.5rem;
}

.section-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
}

.section-header-center {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header-center h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.section-header-center p {
  font-size: 1.2rem;
  color: #666;
}

/* Mission Card */
.mission-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-card .card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Timeline */
.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-left: 2rem;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #667eea, #764ba2);
}

.timeline-item {
  position: relative;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #667eea;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #667eea;
  border-radius: 50%;
  border: 3px solid white;
}

.timeline-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.timeline-content p {
  color: #666;
  margin: 0;
}

/* Technology Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .tech-card {
    margin: 0;
    width: 100%;
  }
}

/* Integrations Grid */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.integration-category {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  width: 100%;
  box-sizing: border-box;
}

.integration-category h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.integration-category h3 i {
  color: #667eea;
}

.integration-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.integration-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.integration-item:hover {
  background: #e3f2fd;
  border-color: #667eea;
  transform: translateX(5px);
}

.integration-item i {
  color: #28a745;
  font-size: 1.1rem;
}

.integration-item span {
  color: #2c3e50;
  font-weight: 500;
}

/* Product Types Grid */
.product-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.product-type-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
  width: 100%;
  box-sizing: border-box;
}

.product-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.product-type-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.product-type-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.product-type-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.product-type-card ul li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.product-type-card ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #28a745;
}

/* Plans Overview */
.plans-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  width: 100%;
  box-sizing: border-box;
}

.plan-overview-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
  width: 100%;
  box-sizing: border-box;
}

.plan-overview-card.featured {
  border: 2px solid #667eea;
  transform: scale(1.05);
}

.plan-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.plan-overview-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.plan-badge.free {
  background: #28a745;
}

.plan-badge.popular {
  background: #667eea;
}

.plan-badge.advanced {
  background: #fd7e14;
}

.plan-badge.premium {
  background: #6f42c1;
}

.plan-overview-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0;
  color: #2c3e50;
}

.plan-overview-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.plan-overview-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.plan-overview-card ul li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.plan-overview-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
  margin-top: auto;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

.plans-cta {
  text-align: center;
  margin-top: 2rem;
}

.tech-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tech-icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.tech-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.tech-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.tech-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-card ul li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.tech-card ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #667eea;
}

/* Features Deep Dive */
.features-deep {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.feature-category {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.feature-category h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-category h3 i {
  color: #667eea;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item i {
  color: #28a745;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.feature-item p {
  color: #666;
  margin: 0;
}

/* Apps Grid */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.app-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.app-icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.app-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.app-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.app-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
}

.app-card ul li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.app-card ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #667eea;
}

.app-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Security Features */
.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.security-item i {
  font-size: 1.5rem;
  color: #28a745;
}

.security-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #2c3e50;
}

.security-item p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

.security-visual {
  text-align: center;
  padding: 2rem;
}

.shield-icon {
  font-size: 6rem;
  color: #28a745;
  margin-bottom: 2rem;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.security-badges .badge {
  background: #28a745;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Support Grid */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.support-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.support-icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.support-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.support-card p {
  color: #666;
  margin: 0;
}

/* Team Values */
.team-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.value-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.value-item p {
  color: #666;
  margin: 0;
}

/* Call to Action */
.about-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.about-cta .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.05"><path d="M0,0v100c100,0,200-50,300-50s200,50,300,50s200-50,300-50s200,50,300,50V0H0z"/></svg>');
  background-size: cover;
  background-position: top;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: white;
  color: #667eea;
}

.btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  opacity: 0.9;
}

.cta-features i {
  color: #28a745;
}

/* Proteção específica para o menu moderno contra interferências da página About */
.modern-navbar .dropdown-menu {
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
  max-width: none !important;
  width: 280px !important;
  position: absolute !important;
  z-index: 1001 !important;
}

.modern-navbar .nav-item,
.modern-navbar .dropdown {
  overflow: visible !important;
  position: relative !important;
}

/* Proteger mobile menu contra estilos globais */
.mobile-menu,
.mobile-menu-overlay {
  max-width: none !important;
  width: 400px !important;
  overflow-y: auto !important;
  overflow-x: visible !important;
}

.mobile-menu-overlay {
  width: 100vw !important;
}

/* Regra de alta prioridade para garantir que dropdowns funcionem */
.modern-navbar .dropdown-menu,
.modern-navbar .dropdown.active .dropdown-menu {
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
  max-width: none !important;
  width: 280px !important;
  position: absolute !important;
  z-index: 1001 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.modern-navbar .dropdown-menu:not(.active) {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
}

/* Força o dropdown a aparecer apenas quando ativo */
.modern-navbar .dropdown:not(.active) .dropdown-menu {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
}

.modern-navbar .dropdown.active .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Exceções para mobile menu dropdowns */
.mobile-menu .mobile-dropdown,
.mobile-menu .mobile-dropdown-menu,
.mobile-menu .mobile-dropdown-toggle {
  overflow: visible !important;
  max-height: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  max-width: none !important;
}

.mobile-menu .mobile-dropdown-menu:not(.active) {
  max-height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
}

.mobile-menu .mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 200px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Exceções para mobile user dropdown */
.mobile-menu .mobile-user-dropdown,
.mobile-menu .mobile-user-toggle,
.mobile-menu .mobile-user-menu,
.mobile-menu .mobile-user-chevron {
  overflow: visible !important;
  max-height: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  max-width: none !important;
}

.mobile-menu .mobile-user-menu:not(.active) {
  max-height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
}

.mobile-menu .mobile-user-dropdown.active .mobile-user-menu {
  max-height: 300px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-title {
    font-size: 2.5rem;
  }
  
  .about-subtitle {
    font-size: 1.1rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .about-section .container {
    padding: 0 20px;
  }
  
  .section-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-text h2 {
    font-size: 2rem;
  }
  
  .section-header-center h2 {
    font-size: 2rem;
  }
  
  .about-section {
    padding: 40px 0;
  }
  
  .tech-grid,
  .features-deep,
  .apps-grid,
  .support-grid,
  .team-values,
  .integrations-grid,
  .product-types-grid,
  .plans-overview {
    grid-template-columns: 1fr;
  }
  
  .plan-overview-card.featured {
    transform: none;
  }
  
  .security-features {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
  }
  
  .story-timeline {
    padding-left: 1rem;
  }
  
  .timeline-item::before {
    left: -1.5rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 2rem;
  }
  
  .about-header {
    padding: 60px 0;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .about-section {
    padding: 30px 0;
  }
  
  .about-section .container {
    padding: 0 15px;
  }
  
  .section-text h2 {
    font-size: 1.8rem;
  }
  
  .section-header-center h2 {
    font-size: 1.8rem;
  }
  
  .tech-card,
  .app-card,
  .support-card,
  .value-item,
  .product-type-card,
  .plan-overview-card,
  .integration-category {
    padding: 1.5rem;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .tech-grid,
  .integrations-grid,
  .product-types-grid,
  .plans-overview,
  .features-deep,
  .apps-grid,
  .support-grid,
  .team-values {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .about-cta {
    padding: 60px 0;
  }
}
