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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1e293b;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utilitários */
.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, #7dd3fc, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-blue {
  color: #1d4ed8;
}

/* Botões */
.btn-primary {
  background: transparent;
  border: 2px solid rgba(96, 165, 250, 0.5);
  color: #60a5fa;
  padding: 1.5rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.btn-primary:hover {
  background: #60a5fa;
  color: white;
  transform: scale(1.05);
}

.btn-cta {
  background: #60a5fa;
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-cta:hover {
  background: #3b82f6;
  transform: scale(1.05);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 1rem;
  width: 90%;
  max-width: 1000px;
  height: 80vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.modal-close:hover {
  background: #dc2626;
}

.modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a, #1e3a8a, #0f172a);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fillRule='evenodd'%3E%3Cg fill='%23ffffff' fillOpacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-logo {
  height: 400px;
  width: auto;
  filter: brightness(0) invert(1);
}

.hero-logo-small {
  height: 67px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.hero-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 600px;
}

.katia-highlight {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.katia-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
  border-radius: 1rem;
  blur: 40px;
}

.katia-icon {
  background: linear-gradient(135deg, #60a5fa, #06b6d4);
  border-radius: 50%;
  padding: 0.5rem;
  color: white;
}

.katia-text {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
}

.katia-name {
  background: linear-gradient(135deg, #60a5fa, #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-actions {
  padding-top: 1.5rem;
}

/* Compliance Card */
.hero-right {
  position: relative;
}

.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 1.5rem;
  filter: blur(60px);
  opacity: 0.3;
  animation: pulse 2s infinite;
}

.compliance-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.compliance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.compliance-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
}

.compliance-title i {
  color: #60a5fa;
  font-size: 2rem;
}

.status-indicator {
  width: 0.75rem;
  height: 0.75rem;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.compliance-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid;
}

.feature-green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
  border-color: rgba(52, 211, 153, 0.3);
  color: #6ee7b7;
}

.feature-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
  border-color: rgba(96, 165, 250, 0.3);
  color: #93c5fd;
}

.feature-purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
  border-color: rgba(167, 139, 250, 0.3);
  color: #c4b5fd;
}

.progress-section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.progress-value {
  color: #60a5fa;
  font-weight: 700;
}

.progress-bar {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  height: 0.5rem;
}

.progress-fill {
  background: linear-gradient(135deg, #60a5fa, #06b6d4);
  height: 100%;
  width: 85%;
  border-radius: 9999px;
}

/* Seções Gerais */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

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

.badge-green {
  background: #dcfce7;
  color: #166534;
}

.badge-purple {
  background: #f3e8ff;
  color: #7c3aed;
}

.badge-white {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(4px);
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.section-description {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Como Funciona */
.how-it-works {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8fafc, white);
}

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

.step-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f8fafc, white);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.step-icons {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-icon i {
  font-size: 1.75rem;
}

.step-blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.step-purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.step-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.step-orange {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.step-title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.step-card:hover .step-title {
  color: #1d4ed8;
}

.step-description {
  position: relative;
  color: #64748b;
  line-height: 1.6;
}

/* Para quem é o DATTIX */
.target-audience {
  padding: 6rem 0;
  background: white;
}

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

.target-left .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.target-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.target-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #bbf7d0;
  transition: all 0.3s ease;
}

.target-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.target-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  padding: 0.25rem;
  color: white;
}

.target-item span {
  font-size: 1.125rem;
  font-weight: 500;
  color: #374151;
}

.b2s-highlight {
  position: relative;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border: 2px solid #93c5fd;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.b2s-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: 1rem;
  filter: blur(40px);
}

.b2s-icon {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 0.75rem;
  padding: 0.75rem;
  color: white;
}

.b2s-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.b2s-description {
  color: #374151;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Autonomy Card */
.target-right {
  position: relative;
}

.target-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 1.5rem;
  filter: blur(60px);
  opacity: 0.2;
}

.autonomy-card {
  position: relative;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.autonomy-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.autonomy-icon {
  background: linear-gradient(135deg, #60a5fa, #06b6d4);
  border-radius: 1rem;
  padding: 1rem;
  font-size: 2.5rem;
}

.autonomy-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.autonomy-subtitle {
  color: #93c5fd;
}

.autonomy-description {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #cbd5e1;
}

/* Benefícios */
.benefits {
  padding: 6rem 0;
  background: linear-gradient(180deg, #e2e8f0, #f1f5f9);
}

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

.benefit-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.benefit-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.benefit-icon i {
  font-size: 1.75rem;
}

.benefit-blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.benefit-purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.benefit-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.benefit-orange {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.benefit-cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
  color: #1d4ed8;
}

.benefit-description {
  color: #64748b;
  line-height: 1.6;
}

/* Sobre a plataforma */
.about-platform {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a, #1e3a8a, #0f172a);
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fillRule='evenodd'%3E%3Cg fill='%23ffffff' fillOpacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-title {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.about-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-size: 0.875rem;
  color: #cbd5e1;
}

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

.feature-item-detailed {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

.feature-item-detailed:hover {
  background: rgba(255, 255, 255, 0.2);
}

.feature-icon-detailed {
  border-radius: 0.75rem;
  padding: 0.75rem;
  color: white;
  transition: transform 0.3s ease;
}

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

.feature-icon-detailed i {
  font-size: 1.5rem;
}

.feature-title-detailed {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.feature-description-detailed {
  color: #cbd5e1;
  line-height: 1.6;
}

/* CTA Final */
.cta-final {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #2563eb, #1d4ed8, #1e40af);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fillRule='evenodd'%3E%3Cg fill='%23ffffff' fillOpacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-content {
  position: relative;
  text-align: center;
  color: white;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.25rem;
  color: #bfdbfe;
  line-height: 1.6;
  max-width: 768px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #bfdbfe;
  font-weight: 500;
}

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 6rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo-small {
  height: 2rem;
  width: 128px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: #94a3b8;
  line-height: 1.6;
}

.footer-icons {
  display: flex;
  gap: 1rem;
}

.footer-icon {
  background: #1e293b;
  border-radius: 0.5rem;
  padding: 0.75rem;
  transition: background 0.3s ease;
  cursor: pointer;
}

.footer-icon:hover {
  background: #374151;
}

.footer-icon:nth-child(1) i {
  color: #60a5fa;
}

.footer-icon:nth-child(2) i {
  color: #a78bfa;
}

.footer-icon:nth-child(3) i {
  color: #34d399;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.team-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-subtitle:nth-child(1) {
  color: #60a5fa;
}

.team-section:nth-child(2) .team-subtitle {
  color: #a78bfa;
}

.team-members {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  transition: color 0.3s ease;
  cursor: pointer;
}

.team-member:hover {
  color: white;
}

.team-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.team-dot-blue {
  background: #2563eb;
}

.team-dot-purple {
  background: #7c3aed;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: white;
  transform: translateX(0.25rem);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: #94a3b8;
}

.footer-made {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 50;
  max-width: 24rem;
  display: block;
}

.cookie-modal.hidden {
  display: none;
}

.cookie-content {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cookie-icon {
  background: #dbeafe;
  border-radius: 50%;
  padding: 0.5rem;
  color: #2563eb;
}

.cookie-title {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.cookie-description {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.cookie-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.cookie-link {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-buttons-row {
  display: flex;
  gap: 0.5rem;
}

.btn-cookie-outline {
  flex: 1;
  background: transparent;
  border: 1px solid #d1d5db;
  color: #374151;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-outline:hover {
  background: #f9fafb;
}

.btn-cookie-primary {
  width: 100%;
  background: #2563eb;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-cookie-primary:hover {
  background: #1d4ed8;
}

/* Cookie Options Modal */
.cookie-options-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}

.cookie-options-modal.active {
  display: flex;
}

.cookie-options-content {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 90%;
  max-width: 42rem;
  max-height: 80vh;
  overflow-y: auto;
  margin: 1rem;
}

.cookie-options-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 0;
}

.cookie-options-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.cookie-options-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cookie-options-close:hover {
  color: #64748b;
}

.cookie-options-close i {
  font-size: 1.5rem;
}

.cookie-options-description {
  padding: 0 2rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cookie-categories {
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  gap: 1rem;
}

.cookie-necessary {
  background: #f8fafc;
}

.cookie-category-content {
  flex: 1;
}

.cookie-category-title {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.cookie-category-description {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

.cookie-toggle {
  width: 3rem;
  height: 1.5rem;
  background: #cbd5e1;
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0.25rem;
}

.cookie-toggle.active {
  background: #10b981;
  justify-content: flex-end;
}

.cookie-toggle-on {
  background: #10b981;
  justify-content: flex-end;
}

.cookie-toggle-slider {
  width: 1rem;
  height: 1rem;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-options-actions {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  justify-content: flex-end;
}

.btn-cookie-accept {
  background: #2563eb;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-cookie-accept:hover {
  background: #1d4ed8;
}

/* Animações */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero-content,
  .target-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 3rem;
    text-align: center;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .about-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-logo {
    height: 300px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cta-actions {
    align-items: stretch;
  }

  .btn-cta {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .about-title {
    font-size: 1.75rem;
  }

  .cookie-modal {
    left: 0.5rem;
    right: 0.5rem;
    max-width: none;
  }

  .modal-content {
    margin: 1rem;
    width: calc(100% - 2rem);
  }

  .cookie-options-content {
    margin: 0.5rem;
    width: calc(100% - 1rem);
  }
}
