/* CSS Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variáveis CSS */
:root {
  --primary-color: #231758;
  --secondary-color: #ffffff;
  --accent-color: #ffd700;
  --text-dark: #231758;
  --text-light: #ffffff;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --shadow: 0 10px 25px rgba(35, 23, 88, 0.1);
  --shadow-hover: 0 20px 40px rgba(35, 23, 88, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary-color);
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100% !important;
}

/* Top Bar */
.top-bar {
  background-color: #fff;
  padding: 0.75rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  height: 60px;
}

.top-bar-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top-bar-logo {
  display: flex;
  align-items: center;
}

.top-bar-logo a {
  text-decoration: none;
}

.top-bar-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.top-bar-tabs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.top-bar-tab {
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 20px;
  background-color: transparent;
  transition: var(--transition);
}

.top-bar-tab:hover {
  background-color: #f3f4f6;
}

.top-bar-tab.active {
  background-color: var(--primary-color);
  color: #fff;
}

.top-bar-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-left: auto;
}

.top-bar-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 400;
  transition: var(--transition);
  height: 26px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar-link:hover {
  color: var(--primary-color);
}

/* Top Bar Dropdown */
.top-bar-dropdown {
  position: relative;
}

.top-bar-dropdown:hover .top-bar-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-bar-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 280px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1002;
}

.top-bar-dropdown-link {
  display: block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.875rem;
  transition: var(--transition);
}

.top-bar-dropdown-link:hover {
  background-color: #f3f4f6;
  color: var(--primary-color);
}

/* Header */
.header {
  background-color: var(--primary-color);
  padding: 1rem 0;
  position: fixed;
  top: 60px; /* Ajustado para ficar abaixo da top bar */
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 49px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo img {
  width: 130px;
}


/* Navigation */
.nav {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 15px;
 
}

.nav-list {
  width: 100%;
  display: flex;
  list-style: none;
  gap: 65px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-arrow {
  font-size: 0.8em;
  transition: var(--transition);
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius);
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  transition: var(--transition);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding-left: 1.5rem;
}

/* Header CTA */
.header-cta {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

.hamburger {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--secondary-color);
  position: relative;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 3px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Animação do hamburger quando ativo */
.mobile-menu-toggle.active .hamburger {
  background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
  background-color: var(--secondary-color);
}

.mobile-menu-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: var(--secondary-color);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(54, 69, 79, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Container */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a1b5a 100%);
  z-index: 1001;
  padding: 80px 0 40px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

/* Mobile Menu Content */
.mobile-menu-content {
  padding: 0 30px;
}

/* Mobile Menu Logo */
.mobile-menu-logo {
  text-align: center;
  padding: 20px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-20px);
  animation: slideInMobile 0.6s ease 0.2s forwards;
}

.mobile-logo {
  height: 40px;
  width: auto;
  filter: brightness(1.1);
}

/* Mobile Top Bar Tabs */
.mobile-top-bar-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.mobile-top-bar-tab {
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.mobile-top-bar-tab:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.mobile-top-bar-tab.active {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  display: block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 18px 0;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  animation: slideInMobile 0.6s ease forwards;
}

.mobile-nav-item:nth-child(1) .mobile-nav-link { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) .mobile-nav-link { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(3) .mobile-nav-link { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(4) .mobile-nav-link { animation-delay: 0.4s; }
.mobile-nav-item:nth-child(5) .mobile-nav-link { animation-delay: 0.5s; }
.mobile-nav-item:nth-child(6) .mobile-nav-link { animation-delay: 0.6s; }
.mobile-nav-item:nth-child(7) .mobile-nav-link { animation-delay: 0.7s; }

@keyframes slideInMobile {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-nav-link:hover {
  color: var(--accent-color);
  padding-left: 15px;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.mobile-nav-link:hover::before {
  width: 20px;
}

/* Mobile Dropdown */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-dropdown-arrow {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  margin: 10px -15px 0;
  border-radius: 8px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 300px;
}

.mobile-dropdown-link {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 12px 20px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-dropdown-link:hover {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--accent-color);
  padding-left: 25px;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  bottom: 30px;
  left: 30px;
  right: 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.mobile-cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInMobile 0.6s ease 0.8s forwards;
}

.mobile-cta-button:hover {
  background: #f0c14b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Main Content */
.main {
  margin-top: 141px;
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 550px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}





/* Banner Slides */
.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hide radio inputs */
input[type="radio"] {
  display: none;
}

/* Show active slide */
#slide-1:checked ~ .hero-background #banner-1 {
  opacity: 1;
}

#slide-2:checked ~ .hero-background #banner-2 {
  opacity: 1;
}

#slide-3:checked ~ .hero-background #banner-3 {
  opacity: 1;
}

#slide-4:checked ~ .hero-background #banner-4 {
  opacity: 1;
}

#slide-5:checked ~ .hero-background #banner-5 {
  opacity: 1;
}

/* Desktop/Mobile Image Control */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Em telas pequenas (mobile), mostra apenas as versões mobile */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  
  .mobile-only {
    display: block;
  }

  /* Top Bar Mobile - Escondido pois já tem no menu hamburger */
  .top-bar {
    display: none;
  }

  /* Ajuste do header para mobile - Agora no topo sem o top-bar */
  .header {
    top: 0;
  }
}

/* Banner Navigation */
.banner-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 10;
}

.banner-arrow {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.banner-arrow:hover {
  transform: scale(1.1);
  background-color: var(--accent-color);
  color: var(--primary-color);
  box-shadow: var(--shadow-hover);
}

.banner-indicators {
  display: flex;
  gap: 0.75rem;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  display: block;
}

.banner-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Active state for radio buttons */
#slide-1:checked ~ .banner-nav .banner-indicators label[for="slide-1"],
#slide-2:checked ~ .banner-nav .banner-indicators label[for="slide-2"],
#slide-3:checked ~ .banner-nav .banner-indicators label[for="slide-3"],
#slide-4:checked ~ .banner-nav .banner-indicators label[for="slide-4"],
#slide-5:checked ~ .banner-nav .banner-indicators label[for="slide-5"] {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.about-cta {	
  margin-top: 1rem;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 3rem 0;
  background-color: var(--secondary-color);
}


.about-text p {
  font-size: 1.125rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Solutions Section */
.solutions {
  padding: 3rem 0;
  background-color: #f8fafc;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.solution-card {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.solution-icon {
  margin-bottom: 1.5rem;
}

.solution-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.solution-description {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Audience Section */
.audience {
  padding: 3 0;
  background-color: var(--secondary-color);
}

.audience-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.audience-item {
  padding: 2rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.audience-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
}



.audience-item p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Nova seção de público-alvo para a página dedicada */
.audience-section {
  padding: 3rem 0;
  background-color: var(--primary-color);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.audience-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.audience-grid .audience-item {
  flex: 1;
  min-width: 200px;
  max-width: 220px;
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.audience-image {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 3px solid var(--accent-color);
}

.audience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.audience-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: var(--accent-color);
  opacity: 0.8;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}

.audience-title {
  color: var(--secondary-color);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

/* Responsividade para a seção de público-alvo */
@media (max-width: 1200px) {
  .audience-grid {
      justify-content: center;
      gap: 3rem;
  }
  
  .audience-grid .audience-item {
      min-width: 180px;
      max-width: 200px;
  }
  
  .audience-image {
      width: 180px;
      height: 180px;
  }
}

@media (max-width: 768px) {
  .audience-grid {
      flex-direction: column;
      gap: 2rem;
  }
  
  .audience-grid .audience-item {
      min-width: 160px;
      max-width: 180px;
  }
  
  .audience-image {
      width: 160px;
      height: 160px;
  }
  
  .audience-title {
      font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .audience-section {
      padding: 4rem 0;
  }
  
  .audience-grid .audience-item {
      min-width: 140px;
      max-width: 160px;
  }
  
  .audience-image {
      width: 140px;
      height: 140px;
  }
  
  .audience-title {
      font-size: 1rem;
  }
}

/* Contact Section */
.contact {
  padding: 3rem 0;
  background-color: #f8fafc;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--secondary-color);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-submit {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.form-submit:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a0f3a 100%);
  color: var(--secondary-color);
  padding: 0 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-brand {
  grid-column: 1;
}

.footer-logo {
  color: var(--accent-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.footer-description {
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Garantir que os SVGs herdem a cor definida (evita sumir quando color é branco) */
.footer .social-link svg,
.footer .social-link svg path,
.footer .social-link svg rect,
.footer .social-link svg circle,
.footer .social-link svg line,
.social-section .social-link svg,
.social-section .social-link svg path,
.social-section .social-link svg rect,
.social-section .social-link svg circle,
.social-section .social-link svg line {
  fill: currentColor;
}

/* Linhas de ícones (ex.: ponto do Instagram) devem usar a mesma cor */
.footer .social-link svg line,
.social-section .social-link svg line {
  stroke: currentColor;
}

/* Tornar a cor padrão dos ícones no footer visível sem hover */
.footer .social-link {
  color: var(--primary-color);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 1px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
  opacity: 0.9;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: var(--transition);
  color: var(--accent-color);
}

.footer-links a:hover {
  color: var(--accent-color);
  opacity: 1;
  padding-left: 20px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact p::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--secondary-color);
  opacity: 0.8;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--secondary-color);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  opacity: 1;
  color: var(--accent-color);
}

/* Footer Responsivo */
@media (max-width: 1024px) {
  .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
  }
  
  .footer-brand {
      grid-column: 1 / -1;
      text-align: center;
  }
  
  .footer-social {
      justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
      padding: 3rem 0 1.5rem;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
  }
  
  .footer-links h4::after,
  .footer-contact h4::after {
      left: 50%;
      transform: translateX(-50%);
  }
  
  .footer-bottom-content {
      flex-direction: column;
      text-align: center;
  }
  
  .footer-bottom-links {
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
      padding: 2rem 0 1rem;
  }
  
  .footer-logo {
      font-size: 2rem;
  }
  
  .footer-social {
      gap: 0.75rem;
  }
  
  .social-link {
      width: 35px;
      height: 35px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
      opacity: 0;
      transform: translateX(30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
      height: 450px;
  }
  
  .banner-nav {
      bottom: 1.5rem;
      gap: 1.5rem;
      display: none;
  }
}

@media (max-width: 768px) {
  /* Completely hide desktop navigation */
  .nav,
  .nav-list,
  .nav-item,
  .nav-link,
  .dropdown,
  .dropdown-toggle,
  .dropdown-menu,
  .dropdown-link,
  .dropdown-arrow {
      display: none !important;
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
      z-index: -1 !important;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
      display: block !important;
  }
  
  /* Hide desktop CTA */
  .header-cta {
      display: none !important;
  }
  
  /* Ensure no hover effects work */
  .dropdown:hover .dropdown-menu,
  .nav-item:hover,
  .nav-link:hover {
      display: none !important;
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
  }
  
  .main {
      margin-top: 70px;
  }
  
  .hero {
      height: 145px;
  }
  
  /* Evitar corte dos banners no mobile */
  .hero-bg-image {
      object-fit: contain !important;
  }
  
  .hero-title {
      font-size: 2.5rem;
  }
  
  .hero-description {
      font-size: 1.125rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
  


  .about-content,
  .audience-content {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .solutions-grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }
  
  /* Evitar corte dos banners no mobile muito pequeno */
  .hero-bg-image {
      object-fit: contain !important;
  }
  
  .hero-title {
      font-size: 2rem;
  }
  
  .hero-description {
      font-size: 1rem;
  }
  
  .hero-cta {
      padding: 1rem 2rem;
      font-size: 1.125rem;
  }
  
  .section-title {
      font-size: 1.75rem;
  }
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
  html {
      scroll-behavior: smooth;
  }
}

/* Cadastro Section */
.cadastro {
  padding: 3rem 0;
  background-color: var(--secondary-color);
}

.cadastro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.cadastro-text h3 {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.cadastro-benefits {
  list-style: none;
  padding: 0;
}

.cadastro-benefits li {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
}

.cadastro-benefits li:last-child {
  border-bottom: none;
}

.cadastro-form {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Cliente Section */
.cliente {
  padding: 3rem 0;
  background-color: #f8fafc;
}

.cliente-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.cliente-login {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.cliente-login h3 {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.login-form {
  margin-bottom: 1.5rem;
}

.cliente-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cliente-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.cliente-link:hover {
  text-decoration: underline;
}

.cliente-info h3 {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cliente-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cliente-support {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--secondary-color);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.support-icon {
  font-size: 2rem;
}

.support-item div strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.support-item div p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .cadastro-content,
  .cliente-content {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .cliente-links {
      flex-direction: column;
      align-items: center;
  }
}

/* Quem Somos Page Styles */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a1b5a 100%);
  padding: 6rem 0 4rem;
  color: var(--secondary-color);
  position: relative;
}

.page-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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}

/* Page Navigation */
.page-navigation {
  background-color: var(--secondary-color);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.page-nav-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.page-nav-item {
  position: relative;
}

.page-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.page-nav-link:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

.page-nav-link.active {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

.nav-number {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.page-nav-link:hover .nav-number,
.page-nav-link.active .nav-number {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.nav-text {
  font-size: 0.95rem;
}

/* Content Sections */
.content-section {
  padding: 5rem 0;
}

.content-section.alt-bg {
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Layout */
.content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.content-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.lead-paragraph {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
}

.content-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a2a7a 100%);
  border-radius: 16px;
  color: var(--secondary-color);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

.content-sidebar {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.company-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--text-dark);
}

.info-list li:last-child {
  border-bottom: none;
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background-color: var(--secondary-color);
}

.comparison-table-content {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.comparison-table-content th,
.comparison-table-content td {
  padding: 1.25rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table-content th {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.comparison-table-content th:first-child {
  border-top-left-radius: 16px;
}

.comparison-table-content th:last-child {
  border-top-right-radius: 16px;
}

.comparison-table-content td {
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparison-table-content td:first-child {
  font-weight: 500;
  color: var(--text-dark);
}

.comparison-table-content .positive {
  color: #059669;
  font-weight: 600;
  text-align: center;
}

.comparison-table-content .negative {
  color: #dc2626;
  font-weight: 600;
  text-align: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
}

.feature-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.feature-item p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* MVV Layout */
.mvv-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mvv-item {
  background-color: var(--secondary-color);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition);
}

.mvv-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px 2px 0 0;
}

.mvv-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.mvv-item.mission::before {
  background: linear-gradient(90deg, #059669, #10b981);
}

.mvv-item.vision::before {
  background: linear-gradient(90deg, #3b82f6, #6366f1);
}

.mvv-item.values::before {
  background: linear-gradient(90deg, #f59e0b, #f97316);
}

.mvv-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.mvv-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
  line-height: 1.5;
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list strong {
  color: var(--text-dark);
}

/* Commitment Layout */
.commitment-layout {
  max-width: 800px;
  margin: 0 auto;
}

.commitment-intro {
  text-align: center;
}

.commitment-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.commitment-intro .lead-paragraph {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Compliance Layout */
.compliance-layout {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.compliance-intro {
  margin-bottom: 3rem;
}

.compliance-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.compliance-intro .lead-paragraph {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
}

.compliance-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.compliance-actions .btn-secondary {
  min-width: 200px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a1b5a 100%);
  padding: 6rem 0;
  color: var(--secondary-color);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
      padding: 4rem 0 3rem;
  }
  
  .page-title {
      font-size: 2.5rem;
  }
  
  .page-subtitle {
      font-size: 1.1rem;
  }
  
  .page-navigation {
      padding: 1rem 0;
      position: relative;
      background: var(--secondary-color);
      border-bottom: 1px solid var(--border-color);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .page-nav-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      padding: 0 1rem;
  }
  
  .page-nav-item:nth-child(5) {
      grid-column: 1 / -1;
      justify-self: center;
  }
  
  .page-nav-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 0.75rem;
      text-align: center;
      border-radius: 12px;
      background: #f8f9fa;
      border: 2px solid transparent;
      transition: all 0.3s ease;
      min-height: 80px;
      justify-content: center;
  }
  
  .page-nav-link:hover {
      background: var(--primary-color);
      color: var(--secondary-color);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(54, 69, 79, 0.2);
  }
  
  .nav-number {
      width: 28px;
      height: 28px;
      font-size: 0.85rem;
      margin-bottom: 0.25rem;
  }
  
  .nav-text {
      font-size: 0.8rem;
      line-height: 1.2;
      font-weight: 500;
  }
  
  .content-section {
      padding: 3rem 0;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .content-layout {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .content-stats {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 1.5rem;
  }
  
  .comparison-table-content th,
  .comparison-table-content td {
      padding: 1rem 0.75rem;
      font-size: 0.9rem;
  }
  
  .mvv-layout {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .mvv-item {
      padding: 2rem 1.5rem;
  }
  
  .compliance-actions {
      flex-direction: column;
      align-items: center;
  }
  
  .compliance-actions .btn-secondary {
      min-width: 250px;
  }
  
  .cta-section {
      padding: 4rem 0;
  }
  
  .cta-content h2 {
      font-size: 2rem;
  }
  
  .cta-actions {
      flex-direction: column;
      align-items: center;
  }
}

@media (max-width: 480px) {
  .page-title {
      font-size: 2rem;
  }
  
  .page-subtitle {
      font-size: 1rem;
  }
  
  .section-title {
      font-size: 1.75rem;
  }
  
  .content-text p {
      font-size: 1rem;
  }
  
  .lead-paragraph {
      font-size: 1.1rem;
  }
  
  .comparison-table-content {
      font-size: 0.85rem;
  }
  
  .comparison-table-content th,
  .comparison-table-content td {
      padding: 0.75rem 0.5rem;
  }
  
  .cta-content h2 {
      font-size: 1.75rem;
  }
  
  .cta-content p {
      font-size: 1.1rem;
  }
}

/* ===== PÁGINA DE SERVIÇOS ===== */

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ffffff 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  width: 23%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
}

.service-card:hover .service-icon::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.service-icon svg {
  color: white;
  z-index: 1;
  position: relative;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.service-card p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.service-card:hover .feature-tag {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Platform Showcase */
.platform-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.platform-info h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.platform-features {
  list-style: none;
  padding: 0;
}

.platform-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-medium);
  line-height: 1.6;
}

.platform-features li:last-child {
  border-bottom: none;
}

.platform-features strong {
  color: var(--text-dark);
  font-weight: 600;
}

.tech-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tech-item {
  background: linear-gradient(135deg, var(--secondary-color), #ffffff);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.tech-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.tech-item:hover::before {
  opacity: 0.1;
}

.tech-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.tech-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.tech-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

/* Consulting Grid */
.consulting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.consulting-card {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ffffff 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.consulting-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  transform: translate(50%, -50%) scale(0);
  transition: transform 0.4s ease;
  opacity: 0.1;
}

.consulting-card:hover::after {
  transform: translate(50%, -50%) scale(1);
}

.consulting-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.consulting-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.consulting-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  position: relative;
  overflow: hidden;
}

.consulting-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
}

.consulting-card:hover .consulting-icon::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.consulting-icon svg {
  color: white;
  z-index: 1;
  position: relative;
}

.consulting-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.consulting-card p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.consulting-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-item {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.benefit-item::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

/* Support Layout */
.support-layout {
  max-width: 1000px;
  margin: 0 auto;
}

.support-intro {
  margin-bottom: 3rem;
  text-align: center;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.support-item {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ffffff 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.support-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.support-item:hover::before {
  opacity: 0.05;
}

.support-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.support-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.support-item:hover .support-icon {
  transform: scale(1.1) rotate(5deg);
}

.support-icon svg {
  color: white;
}

.support-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.support-item p {
  color: var(--text-medium);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Integration Showcase */
.integration-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.integration-info h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.integration-info p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.integration-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.integration-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--secondary-color), #ffffff);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.integration-feature:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 1.5rem;
}

.integration-feature span:last-child {
  font-weight: 500;
  color: var(--text-dark);
}

.system-connections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.system-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.system-name {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: all 0.2s ease;
}

.system-item:hover .system-name {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.connection-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  position: relative;
  overflow: hidden;
}

.connection-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: connectionFlow 2s infinite;
}

@keyframes connectionFlow {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
  .services-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .service-card {
    width: 90%;
      padding: 2rem;
  }
  
  .platform-showcase {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .tech-stack {
      grid-template-columns: 1fr;
  }
  
  .consulting-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .consulting-card {
      padding: 2rem;
  }
  
  .support-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .support-item {
      padding: 1.5rem;
  }
  
  .integration-showcase {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .system-connections {
      gap: 1.5rem;
  }
  
  .connection-line {
      width: 40px;
  }
}

@media (max-width: 480px) {
  .service-card,
  .consulting-card,
  .support-item {
      padding: 1.5rem;
  }
  
  .service-icon,
  .support-icon {
      width: 48px;
      height: 48px;
  }
  
  .tech-item {
      padding: 1rem;
  }
  
  .integration-feature {
      padding: 0.75rem;
  }
  
  .system-name {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
  }
}

/* Serviços Cards Section */
.services-cards-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a0f3a 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.services-cards-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(74, 58, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services-cards-grid {
  display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.service-card {
  position: relative;
  background: linear-gradient(145deg, #2a1f5a 0%, #1e1640 100%);
  border-radius: 20px;
  padding: 1.5rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-25px) scale(1.08);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.service-card.card-hovered {
  transform: translateY(-25px) scale(1.08);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 20%, rgba(255, 215, 0, 0.15) 40%, rgba(255, 215, 0, 0.25) 50%, rgba(255, 215, 0, 0.15) 60%, transparent 80%);
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.service-card:hover::before {
  transform: translateX(100%);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.card-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-logo .logo-text {
  color: var(--accent-color);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.card-logo .logo-subtitle {
  color: var(--secondary-color);
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: -2px;
}

.card-category {
  color: var(--secondary-color);
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 1.5rem 0;
}

.card-number {
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Courier New', monospace;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-name {
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 58, 255, 0.15) 0%, rgba(142, 68, 173, 0.15) 50%, rgba(255, 215, 0, 0.1) 100%);
  opacity: 0.4;
  z-index: -1;
  transition: all 0.2s ease;
}

.service-card:hover .card-background {
  opacity: 0.6;
  background: linear-gradient(135deg, rgba(74, 58, 255, 0.2) 0%, rgba(142, 68, 173, 0.2) 50%, rgba(255, 215, 0, 0.15) 100%);
}

.card-label {
  color: var(--secondary-color);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  margin-top: auto;
  padding: 0.875rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.service-card:hover .card-label {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Modal de Serviços */
.service-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  background: var(--secondary-color);
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-modal.show .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--border-color);
  color: var(--text-dark);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a0f3a 100%);
  color: var(--secondary-color);
  padding: 2rem;
  border-radius: 20px 20px 0 0;
  text-align: center;
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.modal-category {
  color: var(--accent-color);
  font-size: 1.125rem;
  font-weight: 500;
}

.modal-body {
  padding: 2rem;
}

.modal-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.modal-features {
  margin-bottom: 2rem;
}

.modal-features h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-features ul {
  list-style: none;
  padding: 0;
}

.modal-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  position: relative;
  padding-left: 2rem;
}

.modal-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.25rem;
}

.modal-benefits {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
}

.modal-benefits h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-benefits ul {
  list-style: none;
  padding: 0;
}

.modal-benefits li {
  padding: 0.5rem 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 1.5rem;
}

.modal-benefits li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.modal-footer {
  padding: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 200px;
}

.btn-primary {
  background: var(--accent-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  .services-cards-section {
      padding: 3rem 0;
  }
  

  
  .service-card {
      min-height: 350px;
      padding: 1.5rem;
  }
  
  .modal-content {
      width: 95%;
      margin: 1rem;
  }
  
  .modal-header {
      padding: 1.5rem;
  }
  
  .modal-body {
      padding: 1.5rem;
  }
  
  .modal-footer {
      padding: 1.5rem;
      flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
      min-width: 100%;
  }
}

@media (max-width: 480px) {
  .service-card {
      min-height: 300px;
      padding: 1rem;
  }
  
  .card-number {
      font-size: 1rem;
      letter-spacing: 1px;
  }
  
  .card-name {
      font-size: 1rem;
  }
  
  .card-label {
      font-size: 1.125rem;
  }
  
  .modal-title {
      font-size: 1.5rem;
  }
  
  .modal-header {
      padding: 1rem;
  }
  
  .modal-body {
      padding: 1rem;
  }
  
  .modal-footer {
      padding: 1rem;
  }
}

/* Página Cadastre seu Negócio */

.cadastro-page-header .page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.cadastro-page-header .page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.cadastro-hero {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.cadastro-hero::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.cadastro-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-text {
  margin-bottom: 3rem;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-cta {
  text-align: center;
}

.btn-hero {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.btn-hero:hover .btn-icon {
  transform: translateX(4px);
}

.cta-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Seção do Formulário */
.cadastro-formulario {
  padding: 6rem 0;
  background: var(--secondary-color);
}

.formulario-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--secondary-color);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.formulario-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
  color: var(--secondary-color);
  padding: 3rem;
  text-align: center;
}

.form-header-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.form-header-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

/* Progress Steps */
.form-progress {
  margin-top: 3rem;
}

.progress-steps {
  display: flex;
  justify-content: center;
  gap: 3rem;
  position: relative;
}

.progress-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
  border-radius: 2px;
  transition: all 0.5s ease;
  backdrop-filter: blur(2px);
}

.progress-steps::after {
  content: '';
  position: absolute;
  top: 25px;
  left: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #10b981);
  z-index: 1;
  border-radius: 2px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  transform-origin: left center;
}

/* Progresso da linha baseado na etapa atual */
.progress-steps[data-current-step="1"]::after {
  width: 15%;
}

.progress-steps[data-current-step="2"]::after {
  width: 35%;
}

.progress-steps[data-current-step="3"]::after {
  width: 55%;
}

.progress-steps[data-current-step="4"]::after {
  width: 75%;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 122px;
}

.step:hover {
  transform: translateY(-2px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: rgb(34 29 96);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--secondary-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.125rem;
}

.step.active .step-number {
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
  transform: scale(1.1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
  }
  50% {
      box-shadow: 0 0 35px rgba(255, 215, 0, 0.8);
  }
  100% {
      box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
  }
}

.step.completed .step-number {
  background: #10b981;
  border-color: #10b981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
  transform: scale(1.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step.completed .step-number {
  position: relative;
}

.step.completed .step-number::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  animation: checkmarkAppear 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes checkmarkAppear {
  0% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.5);
  }
  50% {
      transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
  }
}

.step.completed .step-number span {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-label {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.7;
  text-align: center;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step.active .step-label {
  opacity: 1;
  color: var(--accent-color);
  transform: scale(1.05);
}

.step.completed .step-label {
  opacity: 0.9;
  color: #10b981;
  transform: scale(1.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Formulário */
.formulario-cadastro {
  padding: 3rem;
}

.form-step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.step-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.step-title h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.step-title p {
  color: var(--text-muted);
  font-size: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  background: var(--secondary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  position: relative;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15);
  transform: translateY(-2px);
}

.form-input:active {
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

/* Radio e Checkbox personalizados */
.radio-group,
.checkbox-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-dark);
  padding: 0.75rem;
  border-radius: 10px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.radio-option:hover,
.checkbox-option:hover {
  background-color: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
  display: none;
}

.radio-custom,
.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.checkbox-custom {
  border-radius: 6px;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Terms checkbox */
.terms-checkbox {
  background: rgba(59, 130, 246, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.terms-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.terms-link:hover {
  text-decoration: underline;
}

/* Navegação do formulário */
.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.nav-right {
  display: flex;
  gap: 1rem;
}

.btn-prev,
.btn-next,
.btn-submit {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-prev {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--border-color);
}

.btn-prev:hover {
  background: var(--border-color);
  color: var(--text-dark);
  transform: translateY(-1px);
}

.btn-next,
.btn-submit {
  background: var(--accent-color);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-next:hover,
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Mensagem de sucesso */
.form-success {
  padding: 4rem 3rem;
  text-align: center;
}

.success-content {
  max-width: 500px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.form-success h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.form-success p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.success-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  color: var(--text-dark);
}

.detail-icon {
  font-size: 1.25rem;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsividade */
@media (max-width: 1024px) {
  .cadastro-hero-content {
      max-width: 700px;
  }
  
  .hero-title {
      font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .cadastro-page-header .page-title {
      font-size: 2.5rem;
  }
  
  .hero-title {
      font-size: 2.5rem;
  }
  
  .hero-text p {
      font-size: 1.125rem;
  }
  
  .form-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .formulario-header,
  .formulario-cadastro {
      padding: 2rem;
  }
  
  .progress-steps {
      flex-wrap: wrap;
      gap: 2rem;
  }
  
  .progress-steps::before,
  .progress-steps::after {
      display: none;
  }
  
  .step {
      min-width: 120px;
  }
  
  .step-number {
      width: 45px;
      height: 45px;
      font-size: 1rem;
  }
  
  .step-label {
      font-size: 0.75rem;
  }
  
  .radio-group,
  .checkbox-group {
      flex-direction: column;
      gap: 1rem;
  }
  
  .form-navigation {
      flex-direction: column;
      gap: 1rem;
  }
  
  .nav-right {
      width: 100%;
      justify-content: center;
  }
  
  .btn-prev,
  .btn-next,
  .btn-submit {
      width: 100%;
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .cadastro-page-header {
      padding: 3rem 0;
  }
  
  .cadastro-page-header .page-title {
      font-size: 2rem;
  }
  
  .cadastro-hero {
      padding: 4rem 0;
  }
  
  .hero-title {
      font-size: 2rem;
  }
  
  .hero-text p {
      font-size: 1rem;
  }
  
  .formulario-wrapper {
      margin: 0 1rem;
  }
  
  .formulario-header,
  .formulario-cadastro {
      padding: 1.5rem;
  }
  
  .step-title h3 {
      font-size: 1.5rem;
  }
  
  .progress-steps {
      gap: 1rem;
  }
  
  .step {
      min-width: 100px;
  }
  
  .step-number {
      width: 40px;
      height: 40px;
      font-size: 0.875rem;
  }
  
  .step-label {
      font-size: 0.7rem;
  }
}

/* ===== ESTILOS PARA PÁGINA "FALE COM A GENTE" ===== */

/* Hero Section de Contato */
.contato-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d1f6b 100%);
  padding: 6rem 0;
  color: var(--secondary-color);
  text-align: center;
}

.contato-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contato-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contato-hero .hero-text {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.contato-hero .hero-text p {
  margin-bottom: 1.5rem;
}

.contato-hero .hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contato-hero .cta-note {
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
}

/* Formulário de Contato */
.contato-formulario {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.formulario-empresa-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.formulario-section {
  background: var(--secondary-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.formulario-contato {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.empresa-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Card Unificado da Empresa */
.empresa-card-unificado {
  background: var(--secondary-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 2px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-header-unificado {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d1f6b 100%);
  color: var(--secondary-color);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
}

.logo-empresa {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  font-size: 3rem;
  background: var(--accent-color);
  color: var(--primary-color);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.logo-texto h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--accent-color);
}

.logo-texto .subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0.5rem 0 0 0;
}

.card-content-unificado {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* Seções de Informação */
.info-section {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.info-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}



/* Seção de Contato */
.contato-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contato-item:hover {
  background: #f1f5f9;
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.contato-icon {
  font-size: 1.5rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-info strong {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.contato-info p {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.contato-info small {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Seção de Localização */
.endereco-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.endereco-principal {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.endereco-principal strong {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.endereco-principal p {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.endereco-detalhes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.detalhe-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.detalhe-icon {
  font-size: 1.25rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detalhe-item strong {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.detalhe-item p {
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  font-size: 0.9rem;
}

/* Seção de Redes Sociais */
.redes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.social-item:hover {
  background: #f1f5f9;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.social-icon {
  font-size: 1.25rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-info strong {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
}

.social-info p {
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Seção de Informações da Empresa */
.empresa-info {
  padding: 5rem 0;
  background: var(--secondary-color);
}

.empresa-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.empresa-header {
  text-align: center;
  margin-bottom: 4rem;
}

.empresa-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.empresa-header p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.empresa-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.empresa-card {
  background: var(--secondary-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.empresa-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d1f6b 100%);
  color: var(--secondary-color);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-icon {
  font-size: 2rem;
  background: var(--accent-color);
  color: var(--primary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.card-content {
  padding: 2rem;
}

/* Estilos para Localização */
.endereco h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.endereco h4:first-child {
  margin-top: 0;
}

.endereco p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.mapa {
  margin-top: 2rem;
}

.mapa-placeholder {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 2px dashed var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.mapa-placeholder:hover {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.mapa-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mapa-placeholder p {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.mapa-placeholder small {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Estilos para Contato Direto */
.contato-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.contato-item:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

.contato-item:last-child {
  margin-bottom: 0;
}

.contato-icon {
  font-size: 1.5rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contato-info h4 {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contato-info p {
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

/* Estilos para Redes Sociais */
.redes-sociais {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}

.social-item:hover {
  background: #f1f5f9;
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.social-icon {
  font-size: 1.5rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-info h4 {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.social-info p {
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

/* Estilos específicos para cada rede social */
.social-item.linkedin:hover {
  border-color: #0077b5;
  background: #f0f8ff;
}

.social-item.instagram:hover {
  border-color: #e4405f;
  background: #fff0f3;
}

.social-item.facebook:hover {
  border-color: #1877f2;
  background: #f0f8ff;
}

.social-item.youtube:hover {
  border-color: #ff0000;
  background: #fff0f0;
}

/* Seção FAQ */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.faq-header p {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--secondary-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary-color);
  transition: var(--transition);
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-color);
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--accent-color);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8fafc;
}

.faq-answer p {
  padding: 0 2rem 2rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Seção do Mapa */
.mapa-section {

  background: var(--secondary-color);
}

.mapa-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.mapa-header {
  text-align: center;
  margin-bottom: 3rem;
}

.mapa-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.mapa-header p {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.mapa-container {
  margin-bottom: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mapa-container iframe {
  display: block;
  width: 100%;
  height: 450px;
}

.mapa-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mapa-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.mapa-info-item:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.mapa-info-icon {
  font-size: 2rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mapa-info-item h4 {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mapa-info-item p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsividade para a página de contato */
@media (max-width: 768px) {
  .contato-hero {
      padding: 4rem 0;
  }
  
  .contato-hero .hero-title {
      font-size: 2.5rem;
  }
  
  .formulario-empresa-wrapper {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .empresa-section {
      order: -1;
  }
  
  .contresa-header h2,
  .faq-header h2,
  .mapa-header h2 {
      font-size: 2.5rem;
  }
  
  .empresa-content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .card-header {
      padding: 1.5rem;
  }
  
  .card-content {
      padding: 1.5rem;
  }
  
  .empresa-card-unificado .card-header-unificado {
      padding: 2rem 1.5rem 1.5rem;
  }
  
  .empresa-card-unificado .card-content-unificado {
      padding: 2rem;
  }
  
  .logo-icon {
      width: 60px;
      height: 60px;
      font-size: 2.5rem;
  }
  
  .logo-texto h3 {
      font-size: 2rem;
  }
  
  .endereco-detalhes {
      grid-template-columns: 1fr;
      gap: 1rem;
  }
  
  .redes-grid {
      grid-template-columns: 1fr;
      gap: 0.75rem;
  }
  
  .contato-item,
  .social-item {
      padding: 0.75rem;
  }
  
  .faq-question {
      padding: 1.5rem;
  }
  
  .faq-answer p {
      padding: 0 1.5rem 1.5rem;
  }
  
  .mapa-info {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contato-hero .hero-title {
      font-size: 2rem;
  }
  
  .contato-hero .hero-text {
      font-size: 1rem;
  }
  
  .empresa-header h2,
  .faq-header h2,
  .mapa-header h2 {
      font-size: 2rem;
  }
  
  .empresa-header p,
  .faq-header p,
  .mapa-header p {
      font-size: 1rem;
  }
  
  .card-header {
      padding: 1rem;
  }
  
  .card-content {
      padding: 1rem;
  }
  
  .empresa-card-unificado .card-header-unificado {
      padding: 1.5rem 1rem 1rem;
  }
  
  .empresa-card-unificado .card-content-unificado {
      padding: 1.5rem;
  }
  
  .logo-icon {
      width: 50px;
      height: 50px;
      font-size: 2rem;
  }
  
  .logo-texto h3 {
      font-size: 1.75rem;
  }
  
  .info-grid {
      gap: 2rem;
  }
  
  .section-title {
      font-size: 1.25rem;
      margin-bottom: 1rem;
  }
  
  .contato-item {
      padding: 1rem;
      gap: 1rem;
  }
  
  .contato-icon {
      width: 45px;
      height: 45px;
      font-size: 1.25rem;
  }
  
  .endereco-detalhes {
      grid-template-columns: 1fr;
      gap: 1rem;
  }
  
  .redes-grid {
      grid-template-columns: 1fr;
      gap: 0.75rem;
  }
  
  .contato-icon,
  .social-icon {
      width: 40px;
      height: 40px;
      font-size: 1.25rem;
  }
  
  .faq-question h3 {
      font-size: 1.1rem;
  }
  
  .formulario-section {
      padding: 1.5rem;
  }
  
  .mapa-container iframe {
      height: 300px;
  }
  
  .mapa-info-item {
      padding: 1rem;
  }
  
  .mapa-info-icon {
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
  }
}

/* ===== Sidebar profissional para página Fale com a Gente ===== */

/* Coluna direita sticky */
.contato-formulario .empresa-section {
  position: sticky;
  top: 100px;
}

/* Container principal da sidebar */
.contact-sidebar {
  background: var(--secondary-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

/* Header da sidebar */
.sidebar-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d1f6b 100%);
  color: var(--secondary-color);
  padding: 2rem;
  text-align: center;
}

.company-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.company-info p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* CTA WhatsApp */
.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  background: #22c55e;
}

/* Detalhes de contato */
.contact-details {
  padding: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(35, 23, 88, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Seção do mapa */
.map-section {
  padding: 0 2rem 2rem;
}

.map-section iframe {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Seção de redes sociais */
.social-section {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--border-color);
  background: #f8fafc;
}

.social-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
}

.social-link.linkedin {
  color: #0077b5;
}

.social-link.instagram {
  color: #e4405f;
}

.social-link.facebook {
  color: #1877f2;
}

.social-link.youtube {
  color: #ff0000;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link.linkedin:hover {
  background: #0077b5;
  color: white;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-link.facebook:hover {
  background: #1877f2;
  color: white;
}

.social-link.youtube:hover {
  background: #ff0000;
  color: white;
}

/* Media Query para telas muito pequenas */
@media (max-width: 480px) {
  /* Page Navigation para telas muito pequenas */
  .page-nav-list {
      grid-template-columns: 1fr !important;
      gap: 0.5rem;
      padding: 0 0.5rem;
  }
  
  .page-nav-item:nth-child(5) {
      grid-column: 1;
      justify-self: stretch;
  }
  
  .page-nav-link {
      flex-direction: row !important;
      justify-content: flex-start !important;
      text-align: left !important;
      padding: 0.75rem 1rem !important;
      min-height: 60px !important;
      gap: 1rem !important;
  }
  
  .nav-number {
      width: 24px !important;
      height: 24px !important;
      font-size: 0.75rem !important;
      margin-bottom: 0 !important;
      flex-shrink: 0;
  }
  
  .nav-text {
      font-size: 0.9rem !important;
      line-height: 1.3 !important;
  }
}

/* Mobile: ajustes responsivos */
@media (max-width: 768px) {
  .contato-formulario .empresa-section {
      position: static;
      top: auto;
  }
  
  .sidebar-header {
      padding: 1.5rem;
  }
  
  .contact-details {
      padding: 1.5rem;
  }
  
  .map-section {
      padding: 0 1.5rem 1.5rem;
  }
  
  .social-section {
      padding: 1.25rem 1.5rem 1.5rem;
  }
  
  .map-section iframe {
      height: 180px !important;
  }
  
  .social-links {
      justify-content: center;
  }
}


.text-danger {
    color: #f44336;
}