* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --teal: #14b8a6;
  --cyan: #06b6d4;
  --emerald: #10b981;
  --text-gray: #374151;
  --text-light: #6b7280;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  75%, 100% { transform: scale(2); opacity: 0; }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-slide-up {
  animation: slide-up 0.6s ease-out;
}

.animate-fade-in {
  animation: fade-in 0.8s ease-out;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#landing-header-logo-wrapper {
  all: initial;
  display: inline-block;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

#landing-header-logo-wrapper img {
  all: initial;
  display: block !important;
  height: 40px !important;
  width: auto !important;
  filter: brightness(0) saturate(100%) invert(0) !important;
  -webkit-filter: brightness(0) saturate(100%) invert(0) !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  transition: none !important;
  animation: none !important;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-gray);
}

nav {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  nav {
    display: flex;
  }
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-selector {
  position: relative;
  display: inline-block;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.language-btn:hover {
  background: #f9fafb;
  border-color: var(--teal);
  color: var(--teal);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 100;
}

.language-selector:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-dropdown a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s;
  border-bottom: 1px solid #f3f4f6;
}

.language-dropdown a:last-child {
  border-bottom: none;
}

.language-dropdown a:hover {
  background: #f9fafb;
  color: var(--teal);
}

.language-dropdown a.active {
  background: #f0fdfa;
  color: var(--teal);
  font-weight: 600;
}

.btn-demo {
  padding: 0.5rem 1.5rem;
  background: var(--teal);
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(20, 184, 166, 0.2);
}

.btn-demo:hover {
  background: #0d9488;
  transform: translateY(-1px);
  box-shadow: 0 6px 8px rgba(20, 184, 166, 0.3);
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-gray);
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #f9fafb, #ffffff, #f9fafb);
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .hero {
    padding: 8rem 0;
  }
  
  .floating-badge {
    display: block !important;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(20, 184, 166, 0.1), transparent 50%);
}

.hero-shapes {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(20, 184, 166, 0.3);
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.hero-shapes:nth-child(2) {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(6, 182, 212, 0.3);
  animation-delay: 1s;
  animation-duration: 6s;
}

.hero-shapes:nth-child(3) {
  top: 50%;
  left: 25%;
  width: 16rem;
  height: 16rem;
  background: rgba(16, 185, 129, 0.2);
  animation-delay: 2s;
  animation-duration: 5s;
}

/* Elementos decorativos animados adicionais */
.hero-decorative-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite;
}

.hero-decorative-shape.shape-1 {
  top: 20%;
  left: 10%;
  width: 18rem;
  height: 18rem;
  background: rgba(20, 184, 166, 0.3);
}

.hero-decorative-shape.shape-2 {
  bottom: 20%;
  right: 10%;
  width: 24rem;
  height: 24rem;
  background: rgba(6, 182, 212, 0.3);
  animation-delay: 1s;
  animation-duration: 6s;
}

.hero-decorative-shape.shape-3 {
  top: 50%;
  left: 25%;
  width: 16rem;
  height: 16rem;
  background: rgba(16, 185, 129, 0.2);
  animation-delay: 2s;
  animation-duration: 5s;
}

/* Formas geométricas decorativas */
.decorative-geometric {
  position: absolute;
  opacity: 0.4;
}

.decorative-geometric.spin-slow {
  animation: spin 25s linear infinite;
}

.decorative-geometric.spin-reverse {
  animation: spin 20s linear infinite reverse;
}

.decorative-geometric.float-slow {
  animation: float 4s ease-in-out infinite;
}

/* Badge flutuante */
.floating-badge {
  position: absolute;
  animation: float 3s ease-in-out infinite;
}

.floating-badge.delay-1 {
  animation-delay: 0.5s;
  animation-duration: 4s;
}

.floating-badge.delay-2 {
  animation-delay: 1s;
  animation-duration: 3s;
}

/* Efeito de brilho pulsante */
.pulse-glow {
  animation: pulse 2s ease-in-out infinite;
}

.ping-effect {
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-text {
  animation: fade-in 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: #ccfbf1;
  color: #0f766e;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  font-size: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title span {
  background: linear-gradient(to right, var(--teal), var(--cyan), var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 36rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--teal);
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 10px 15px rgba(20, 184, 166, 0.3);
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #0d9488;
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(20, 184, 166, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid #d1d5db;
  color: var(--text-gray);
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.hero-features-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-features-item i {
  color: var(--teal);
  font-size: 1.25rem;
}

.hero-image {
  position: relative;
  animation: slide-up 0.6s ease-out 0.2s both;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #ccfbf1, #cffafe);
  border-radius: 50%;
  filter: blur(80px);
  transform: scale(1.1);
  animation: pulse 4s ease-in-out infinite;
}

.hero-image-placeholder {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 1rem;
  display: block;
  overflow: hidden;
}

.hero-image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 1rem;
  transition: opacity 0.3s ease;
}

.hero-image-placeholder img[loading="lazy"] {
  opacity: 0;
}

.hero-image-placeholder img[loading="lazy"].loaded {
  opacity: 1;
}

/* Produtos Section */
.produtos {
  padding: 5rem 0;
  background: white;
}

.produtos-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 42rem;
  margin: 0 auto;
}

.produtos-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.produto-card {
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  background: white;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.produto-card {
  position: relative;
  overflow: hidden;
}

.produto-card::before {
  content: '';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(to bottom right, rgba(20, 184, 166, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: 50%;
  filter: blur(2rem);
  opacity: 0;
  transition: opacity 0.3s;
}

.produto-card:hover::before {
  opacity: 1;
}

.produto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--teal);
}

.produto-icon {
  transition: transform 0.3s;
}

.produto-card:hover .produto-icon {
  transform: scale(1.1);
}

.produto-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, #ccfbf1, #cffafe);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.produto-icon i {
  font-size: 2rem;
  color: var(--teal);
}

.produto-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.produto-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.produto-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.produto-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.produto-features li i {
  color: var(--teal);
  font-size: 1.25rem;
}

.produto-status {
  margin-bottom: 1.5rem;
}

.status-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.status-available {
  background: #ccfbf1;
  color: #0f766e;
}

.produto-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--teal);
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: auto;
}

.produto-link:hover {
  background: #0d9488;
  transform: translateX(4px);
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.features-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  padding: 2rem;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  background: white;
  transition: all 0.3s;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(to bottom right, rgba(20, 184, 166, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: 50%;
  filter: blur(2rem);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--teal);
}

.feature-icon {
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, #ccfbf1, #cffafe);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--teal);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Section */
.cta-banner {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(to right, var(--teal), var(--cyan), var(--emerald));
  overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(3rem);
  animation: pulse 4s ease-in-out infinite;
}

.cta-banner::before {
  top: 0;
  left: 0;
}

.cta-banner::after {
  bottom: 0;
  right: 0;
  animation-delay: 1s;
  animation-duration: 6s;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 70%);
}

.cta-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  text-align: center;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

/* Lead Capture Section */
.lead-capture {
  padding: 5rem 0;
  background: white;
}

.lead-capture-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lead-capture-content {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .lead-capture-content {
    grid-template-columns: 1fr 1fr;
  }
}

.lead-capture-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .lead-capture-text h2 {
    font-size: 3rem;
  }
}

.lead-capture-description {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.lead-capture-benefits {
  list-style: none;
  padding: 0;
}

.lead-capture-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-gray);
  font-size: 1.125rem;
}

.lead-capture-benefits li i {
  color: var(--teal);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.lead-capture-form-wrapper {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  background: white;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lead-capture-form-header {
  margin-bottom: 1.5rem;
}

.lead-capture-form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-gray);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.btn-submit {
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: 'Poppins', sans-serif;
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 6px rgba(20, 184, 166, 0.3);
}

.btn-submit:hover {
  background: #0d9488;
  transform: translateY(-1px);
  box-shadow: 0 6px 8px rgba(20, 184, 166, 0.4);
}

/* Footer */
footer {
  background: #111827;
  color: #9ca3af;
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  color: white;
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link i,
.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
  fill: currentColor;
}

.social-link-linkedin {
  background: #0a66c2;
}

.social-link-linkedin:hover {
  background: #084298;
}

.social-link-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.social-link-instagram:hover {
  opacity: 0.9;
}

.social-link-spotify {
  background: #1db954;
}

.social-link-spotify:hover {
  background: #1ed760;
}

.social-link-reviiv {
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.social-link-reviiv:hover {
  opacity: 0.9;
}

.social-link-reviiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-item i {
  color: var(--teal);
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.contact-item-text {
  color: #9ca3af;
  line-height: 1.5;
}

.contact-item a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--teal);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-bottom-links {
    justify-content: flex-end;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

#landing-footer-logo-wrapper {
  all: initial;
  display: inline-block;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

#landing-footer-logo-wrapper img {
  all: initial;
  display: block !important;
  max-width: 40px !important;
  max-height: 40px !important;
  width: auto !important;
  height: auto !important;
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  transition: none !important;
  animation: none !important;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.footer-description {
  color: #6b7280;
  max-width: 28rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--teal);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom > div {
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center !important;
  }
}

/* Animações de entrada com scroll */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fade-in-up 0.6s ease-out forwards;
}

/* Efeito de brilho nos ícones ao hover */
.feature-icon,
.produto-icon {
  position: relative;
}

.feature-icon::after,
.produto-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, rgba(20, 184, 166, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover .feature-icon::after,
.produto-card:hover .produto-icon::after {
  opacity: 1;
}

/* Efeito de gradiente animado no texto */
.gradient-text {
  background: linear-gradient(to right, var(--teal), var(--cyan), var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

/* BC Feed Section */
.bc-feed {
  padding: 4rem 0;
  background: #f9fafb;
}

.bc-feed-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bc-feed .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.bc-feed .section-header-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, #ccfbf1, #cffafe);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.bc-feed .section-header-icon i {
  font-size: 2rem;
  color: var(--teal);
}

.bc-feed-loading,
.bc-feed-error {
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
}

.bc-feed-loading i {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 1rem;
  display: block;
}

.bc-feed-error i {
  font-size: 2rem;
  color: #ef4444;
  margin-bottom: 1rem;
  display: block;
}

.bc-feed-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.bc-feed-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s;
  cursor: pointer;
  overflow: hidden;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.bc-feed-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--teal);
}

.bc-feed-item-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
  flex-shrink: 0;
  min-width: 0;
}

.bc-feed-item-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  background: #f0fdfa;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  flex-shrink: 1;
  min-width: 0;
}

.bc-feed-item-date {
  font-size: 0.875rem;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.bc-feed-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 0.75rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  min-width: 0;
  flex-shrink: 0;
}

.bc-feed-item-content {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  min-width: 0;
  flex: 1;
}

.bc-feed-item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s;
  flex-shrink: 0;
  margin-top: auto;
}

.bc-feed-item-link:hover {
  gap: 0.75rem;
}

.bc-feed-footer {
  text-align: center;
  margin-top: 2rem;
}

.bc-feed-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: gap 0.3s;
}

.bc-feed-link:hover {
  gap: 0.75rem;
  color: #0d9488;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .bc-feed-list {
    grid-template-columns: 1fr;
  }
  
  .bc-feed-item-header {
    flex-direction: column;
    align-items: start;
  }
}

/* Blog Feed Section */
.blog-feed {
  padding: 4rem 0;
  background: white;
}

.blog-feed-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blog-feed .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-feed .section-header-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, #ccfbf1, #cffafe);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.blog-feed .section-header-icon i {
  font-size: 2rem;
  color: var(--teal);
}

.blog-feed-loading,
.blog-feed-error {
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
}

.blog-feed-loading i {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 1rem;
  display: block;
}

.blog-feed-error i {
  font-size: 2rem;
  color: #ef4444;
  margin-bottom: 1rem;
  display: block;
}

.blog-feed-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.blog-feed-item {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s;
  cursor: pointer;
  overflow: hidden;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.blog-feed-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--teal);
}

.blog-feed-item-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
  flex-shrink: 0;
  min-width: 0;
}

.blog-feed-item-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  background: #ecfeff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  flex-shrink: 1;
  min-width: 0;
}

.blog-feed-item-date {
  font-size: 0.875rem;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.blog-feed-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 0.75rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  min-width: 0;
  flex-shrink: 0;
}

.blog-feed-item-content {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  min-width: 0;
  flex: 1;
}

.blog-feed-item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s;
  flex-shrink: 0;
  margin-top: auto;
}

.blog-feed-item-link:hover {
  gap: 0.75rem;
}

.blog-feed-footer {
  text-align: center;
  margin-top: 2rem;
}

.blog-feed-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: gap 0.3s;
}

.blog-feed-link:hover {
  gap: 0.75rem;
  color: #0d9488;
}

@media (max-width: 768px) {
  .blog-feed-list {
    grid-template-columns: 1fr;
  }
  
  .blog-feed-item-header {
    flex-direction: column;
    align-items: start;
  }
}

/* Efeito de partículas decorativas */
.decorative-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
  animation-duration: 8s;
}

.particle:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
  animation-duration: 7s;
}

/* Responsive */
@media (max-width: 768px) {
  nav.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .floating-badge {
    display: none !important;
  }
  
  .hero-decorative-shape {
    display: none;
  }
}

