/* Estilos globais para o website AIGENIA */
:root {
  /* Paleta de cores */
  --primary: #7B2CBF;
  --primary-light: #9D4EDD;
  --secondary: #5EEAD4;
  --accent: #FF0099;
  --dark: #333333;
  --light: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-medium: #CCCCCC;
  
  /* Tipografia */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Poppins', sans-serif;
}

/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Seções */
section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  color: var(--primary);
  margin-bottom: 10px;
}

.section-title p {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--dark);
  opacity: 0.8;
}

/* Botões */
.primary-button {
  display: inline-block;
  background-color: var(--primary);
  color: #FFF;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 10px rgba(123, 44, 191, 0.3);
}

.primary-button:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(123, 44, 191, 0.4);
  color: var(--light);
}

.secondary-button {
  display: inline-block;
  background-color: transparent;
  color: var(--primary);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.secondary-button:hover {
  background-color: rgba(123, 44, 191, 0.1);
  transform: translateY(-2px);
  color: var(--primary);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  align-items: center;
  height: 80px; /* ou outro valor fixo adequado */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  flex-wrap: wrap; /* opcional para responsivo */
}


.logo img {
  height: 50px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Navegação */

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
}

.nav-menu li {
  margin: 0 15px;
}

.nav-menu a {
  font-family: var(--font-accent);
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.nav-cta {
  margin-left: auto;
  
}

.nav-cta a {
  
  color: var(--light);
}

/* Main Content */
.main-content {
  padding-top: 80px; /* Espaço para o header fixo */
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1f1d2e, #3f2f66);
  /*background-color: var(--dark);*/
  color: var(--light);
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 0 0 100%;
  max-width: 250px;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-around;
}

.footer-column {
  flex: 0 0 auto;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--light);
}

.footer-column ul {
  list-style: none;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--gray-medium);
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--light);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease;
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--gray-medium);
  font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: var(--light);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
  color: var(--light);
}

.whatsapp-icon {
  font-size: 1.5rem;
  margin-right: 8px;
}

/* Utilitários */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

/* Gradientes e efeitos */
.gradient-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--light);
}

.neon-text {
  text-shadow: 0 0 5px rgba(123, 44, 191, 0.5);
}

.card {
  background-color: var(--light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: all 0.3s ease;
}

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


/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1f1d2e, #3f2f66);
  color: #ffffff;
  padding: 0 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(123, 44, 191, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(to right, #a470ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease-in-out;
}

.hero-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #ccc;
  margin-bottom: 30px;
  animation: fadeInUp 1.1s ease-in-out;
}

.hero-cta .primary-button {
  background-color: #7a5fff;
  color: white;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(123, 44, 191, 0.5);
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-cta .primary-button:hover {
  background-color: #9f7bff;
  transform: scale(1.05);
}

.floating-highlights {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.floating-highlights span {
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.context-highlights {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.context-card {
  flex: 1;
  min-width: 260px;
  width: 48%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
}



.hero-intro {
  margin-bottom: 40px;
}

.hero-benefits {
  margin-top: 30px;
}

.hero-usecases {
  margin-top: 40px;
}

.hero-integration {
  margin-top: 40px;
}

.hero-differentials {
  margin-top: 30px;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 50%;
  max-width: 600px;
}

.hero-avatar {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
}

.hero-avatar img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}


/* Casos de Uso Section */
.caso-section {
  background-color: #ffffff;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.caso-context-highlights {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  
}
.caso-context-card {
  flex: 1;
  min-width: 260px;
  width: 30%;
  background: linear-gradient(135deg, #1f1d2e, #3f2f66);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
}

.caso-box {
  width: 28%;
  background: #2D2350;
  color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: left;
}

.caso-avatar {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.caso-avatar img {
  max-width: 300px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.caso-content {
  position: relative;
  z-index: 1;
  flex: 1 1 100%;
  /*max-width: 600px;*/
}

.caso-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap; /* opcional para responsivo */
  padding: 2rem 0;
}





/* Feature Section */
.feature-section {
  background: linear-gradient(135deg, #1f1d2e, #3f2f66);
  color: #ffffff;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}


.feature-icon:hover {
  background-color: #3C2C6A;
  transform: scale(1.05);
  transition: all 0.2s ease;
}

.integration-badge {
  margin-top: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-block;
}

.feature-icons {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.feature-icon {
  background: rgba(255,255,255,0.05);
  padding: 10px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.feature-icon .icon {
  font-size: 1.2rem;
}

.feature-icon:hover {
  background-color: #3C2C6A;
  transform: scale(1.05);
  transition: all 0.2s ease;
}

.feature-content {
  position: relative;
  z-index: 1;
  
  flex: 1 1 100%;
}


.feature-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap; /* opcional para responsivo */
  padding: 2rem 0;
}



/* WP Simulation */

.sim-avatar {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sim-avatar img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
}


/* Unique Section */

.unique-section {
  padding: 30px 0;
}

.unique-features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 40px;
}

.unique-box {
  background-color: #2D2350;
  color: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease-in-out;
  cursor: default;
  transform: translateY(0) scale(1);
}

.unique-box:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  background-color: #3A2F5C; /* tom mais claro para o roxo */
}


.unique-box .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}


/* Market Section */

.market-section {
  padding: 80px 0;
}

.market-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 40px;
}

.market-card {
  background-color: #2D2350;
  color: #fff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  width: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.market-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  background-color: #3A2F5C;
}

.market-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}


/* Contact Section */

.contact-hero {
  padding: 80px 40px;
  background: linear-gradient(135deg, #2D2350, #3A2F5C);
  color: white;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 50px;
}

.contact-hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  padding: 1rem 2rem;
  border-radius: 32px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #20b658;
}

.contact-details {
  padding: 60px 0;
  background: #f9f9f9;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.contact-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
}
