/* Vision DOOH Digital - CSS Estático */
/* Compilado para deploy em Nginx */

:root {
  --background: #000000;
  --foreground: #ffffff;
  --accent: #10B981;
  --accent-hover: #059669;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #1a1a1a;
  --gray-900: #0f0f0f;
  --gray-950: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

main {
  width: 100%;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-900);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-700);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Layout */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.section {
  padding: 5rem 1rem;
  position: relative;
}

/* Text */
.text-white { color: #ffffff; }
.text-gray-300 { color: #d4d4d4; }
.text-gray-400 { color: #a3a3a3; }
.text-gray-500 { color: #737373; }
.text-green-400 { color: #4ade80; }
.text-red-400 { color: #f87171; }
.text-black { color: #000000; }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.italic { font-style: italic; }

/* Spacing */
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pl-11 { padding-left: 2.75rem; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Flexbox */
.flex { display: flex; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

/* Display */
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.hidden { display: none; }

/* Sizing */
.w-2 { width: 0.5rem; }
.w-5 { width: 1.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-full { width: 100%; }

.h-0\.5 { height: 0.125rem; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-5 { height: 1.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-20 { height: 5rem; }
.h-full { height: 100%; }

.min-h-screen { min-height: 100vh; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.max-h-\[70vh\] { max-height: 70vh; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
.-top-4 { top: -1rem; }
.-left-4 { left: -1rem; }
.-right-4 { right: -1rem; }
.-bottom-8 { bottom: -2rem; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Background */
.bg-black { background-color: #000000; }
.bg-white { background-color: #ffffff; }
.bg-green-400 { background-color: #4ade80; }
.bg-green-500 { background-color: #22c55e; }
.bg-gray-900 { background-color: #0f0f0f; }
.bg-transparent { background-color: transparent; }

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-gray-700 { border-color: #404040; }
.border-gray-800 { border-color: #1a1a1a; }
.border-gray-900 { border-color: #0f0f0f; }
.border-green-500 { border-color: #22c55e; }

.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

/* Effects */
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

/* Transforms */
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.translate-x-1 { transform: translateX(0.25rem); }
.rotate-180 { transform: rotate(180deg); }

/* Transitions */
.transition-all { transition: all 0.15s ease; }
.transition-colors { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease; }
.transition-transform { transition: transform 0.15s ease; }
.transition-opacity { transition: opacity 0.15s ease; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* Pointer */
.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }

/* Form */
.resize-none { resize: none; }
.appearance-none { appearance: none; }

input, textarea, select {
  font-family: inherit;
  font-size: 100%;
}

input:focus, textarea:focus, select:focus {
  outline: none;
}

/* Backgrounds gradient */
.bg-gradient-hero {
  background: linear-gradient(to bottom, rgba(20, 83, 45, 0.2), #000000, #000000);
}

.bg-gradient-radial-green {
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1), transparent 70%);
}

.bg-gradient-section {
  background: linear-gradient(to bottom, #000000, #0a0a0a, #000000);
}

.bg-gradient-card {
  background: linear-gradient(to bottom right, #0f0f0f, #000000);
}

.bg-gradient-divider {
  background: linear-gradient(to right, transparent, #4ade80, transparent);
}

.bg-gradient-text {
  background: linear-gradient(to right, #ffffff, #ffffff, #4ade80);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Backdrop blur */
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }

/* Custom components */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  background-color: var(--accent);
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: scale(1.05) translateY(-0.25rem);
  box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.5);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.card {
  background: linear-gradient(to bottom right, #0f0f0f, #000000);
  border: 1px solid #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.1);
  transform: translateY(-0.5rem);
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 9999px;
  color: #4ade80;
  font-size: 0.875rem;
  font-weight: 500;
}

.number-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  font-size: 1.25rem;
  font-weight: 700;
}

.step-badge {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background-color: var(--accent);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.card:hover .step-badge {
  transform: scale(1.1);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-divider {
  width: 6rem;
  height: 0.25rem;
  background: linear-gradient(to right, transparent, #4ade80, transparent);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

/* Input styles */
.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: rgba(15, 15, 15, 0.5);
  border: 1px solid #404040;
  border-radius: 0.75rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-input::placeholder {
  color: #737373;
}

.form-input:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #e5e5e5;
  margin-bottom: 0.5rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(4px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.modal-overlay.hidden {
  display: none;
}

.modal-content {
  max-width: 64rem;
  width: 100%;
  margin: 2rem 0;
  background: linear-gradient(to bottom right, #0f0f0f, #000000);
  border: 2px solid #1a1a1a;
  border-radius: 1rem;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  border-radius: 9999px;
  color: #ffffff;
  font-size: 2.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  color: #4ade80;
  background-color: #171717;
}

/* FAQ Accordion */
.faq-item {
  background: linear-gradient(to bottom right, #0f0f0f, #000000);
  border: 2px solid #1a1a1a;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(34, 197, 94, 0.5);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: rgba(15, 15, 15, 0.5);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1a1a1a;
  color: #d4d4d4;
  line-height: 1.625;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #4ade80;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* Aspect ratios */
.aspect-3-4 {
  aspect-ratio: 3/4;
}

.aspect-4-5 {
  aspect-ratio: 4/5;
}

/* Object fit */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* Alert */
.alert-success {
  padding: 1.25rem;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #4ade80;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Link styles */
a {
  color: inherit;
  text-decoration: none;
}

.link-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4ade80;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
  margin-bottom: 2rem;
}

.link-back:hover {
  color: #86efac;
}

.link-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a3a3a3;
  transition: color 0.2s ease;
}

.link-footer:hover {
  color: #4ade80;
}

/* Exclusivity cards */
.exclusivity-card {
  position: relative;
  background: linear-gradient(to bottom right, #0f0f0f, #000000);
  border: 2px solid #1a1a1a;
  border-radius: 1.5rem;
  padding: 3rem;
  transition: all 0.3s ease;
}

.exclusivity-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.5rem);
}

.exclusivity-card.highlight {
  border-color: #22c55e;
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.2);
}

.exclusivity-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background-color: #22c55e;
  border-radius: 9999px;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 700;
}

/* Spinner */
.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:p-16 { padding: 4rem; }
  .md\:block { display: block; }
  .md\:w-\[calc\(50\%-1rem\)\] { width: calc(50% - 1rem); }
  .section-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:text-left { text-align: left; }
  .lg\:text-6xl { font-size: 3.75rem; }
  .lg\:text-7xl { font-size: 4.5rem; }
  .lg\:w-\[28rem\] { width: 28rem; }
  .section-title { font-size: 3.75rem; }
}

/* Print */
@media print {
  body {
    background: white;
    color: black;
  }
}
