@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --primary: #059669;
  --secondary: #2563EB;
  --dark-grey: #2A2A2A;
  --charcoal-gray: #36454F;
  --teal-green: #059669;
  --upback-blue: #2563EB;
  --upback-green: #059669;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #0A0A0A;
  color: #FFFFFF;
  line-height: 1.6;
}

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

/* Custom Tailwind Classes */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.border-primary { border-color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.border-secondary { border-color: var(--secondary) !important; }
.text-darkmode { color: #0A0A0A; }
.bg-dark_grey { background-color: var(--dark-grey); }
.bg-charcoalGray { background-color: var(--charcoal-gray); }
.bg-tealGreen { background-color: var(--teal-green); }
.text-upback-blue { color: var(--upback-blue); }
.bg-upback-blue { background-color: var(--upback-blue); }
/* Modal Styles - Versão Funcionando */
.modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
}

.modal-overlay.hidden {
  display: none !important;
}

/* Font Sizes */
.text-18 { font-size: 18px; }
.text-21 { font-size: 21px; }
.text-24 { font-size: 24px; }
.text-28 { font-size: 28px; }
.text-54 { font-size: 54px; }
.text-70 { font-size: 70px; }
.text-76 { font-size: 76px; }

/* Blur Effects */
.blur-400 { filter: blur(400px); }

/* Z-index */
.z-1 { z-index: 1; }
.z-50 { z-index: 50; }
.z-999 { z-index: 999; }
.-z-1 { z-index: -1; }

/* Spacing */
.w-50 { width: 50rem; }
.h-50 { height: 50rem; }
.-top-64 { top: -16rem; }
.-right-14 { right: -3.5rem; }

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

/* Hover Effects */
.hover-scale:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 0.5rem;
  font-size: 21px;
  font-weight: 500;
  color: #0A0A0A;
  padding: 0.5rem 1.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--primary);
  border-radius: 0.5rem;
  font-size: 21px;
  font-weight: 500;
  color: var(--primary);
  padding: 0.5rem 1.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: #0A0A0A;
}

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

.modal-overlay.hidden {
  display: none !important;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 28rem;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 3.5rem 2rem 2rem;
  z-index: 999;
  text-align: center;
  background-color: rgba(42, 42, 42, 0.9);
  backdrop-filter: blur(12px);
}

/* Responsive */
@media (max-width: 768px) {
  .text-54 { font-size: 36px; }
  .text-70 { font-size: 48px; }
  .text-76 { font-size: 52px; }
}

@media (max-width: 640px) {
  .text-54 { font-size: 28px; }
  .text-70 { font-size: 36px; }
  .text-76 { font-size: 40px; }
}

