/* Variáveis customizadas para as cores DUZZ */
:root {
  --duzz-green: #333117;
  --duzz-orange: #FF6A28;
  --duzz-light: #F1EEED;
  --duzz-orange-light: #FF9A5A;

  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;

  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;

  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;

  --primary: 222.2 47.4% 11.2%;
  --primary-foreground: 210 40% 98%;

  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;

  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;

  --accent: 210 40% 96.1%;
  --accent-foreground: 222.2 47.4% 11.2%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;

  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 222.2 84% 4.9%;

  --radius: 0.5rem;

  --sidebar-background: 0 0% 98%;

  --sidebar-foreground: 240 5.3% 26.1%;

  --sidebar-primary: 240 5.9% 10%;

  --sidebar-primary-foreground: 0 0% 98%;

  --sidebar-accent: 240 4.8% 95.9%;

  --sidebar-accent-foreground: 240 5.9% 10%;

  --sidebar-border: 220 13% 91%;

  --sidebar-ring: 217.2 91.2% 59.8%;
}

/* Dark mode variables */
.dark {
  --background: 222.2 84% 4.9%;
  --foreground: 210 40% 98%;

  --card: 222.2 84% 4.9%;
  --card-foreground: 210 40% 98%;

  --popover: 222.2 84% 4.9%;
  --popover-foreground: 210 40% 98%;

  --primary: 210 40% 98%;
  --primary-foreground: 222.2 47.4% 11.2%;

  --secondary: 217.2 32.6% 17.5%;
  --secondary-foreground: 210 40% 98%;

  --muted: 217.2 32.6% 17.5%;
  --muted-foreground: 215 20.2% 65.1%;

  --accent: 217.2 32.6% 17.5%;
  --accent-foreground: 210 40% 98%;

  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 210 40% 98%;

  --border: 217.2 32.6% 17.5%;
  --input: 217.2 32.6% 17.5%;
  --ring: 212.7 26.8% 83.9%;
  --sidebar-background: 240 5.9% 10%;
  --sidebar-foreground: 240 4.8% 95.9%;
  --sidebar-primary: 224.3 76.3% 48%;
  --sidebar-primary-foreground: 0 0% 100%;
  --sidebar-accent: 240 3.7% 15.9%;
  --sidebar-accent-foreground: 240 4.8% 95.9%;
  --sidebar-border: 240 3.7% 15.9%;
  --sidebar-ring: 217.2 91.2% 59.8%;
}

/* Font family */
body {
  font-family: 'Raleway', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

/* Custom colors */
.bg-duzz-green {
  background-color: var(--duzz-green);
}
.text-duzz-green {
  color: var(--duzz-green);
}
.text-duzz-green\/70 {
  color: rgba(51, 49, 23, 0.7);
}
.text-duzz-green\/80 {
  color: rgba(51, 49, 23, 0.8);
}
.text-duzz-green\/60 {
  color: rgba(51, 49, 23, 0.6);
}
.bg-duzz-orange {
  background-color: var(--duzz-orange);
}
.bg-duzz-orange\/10 {
  background-color: rgba(255, 106, 40, 0.1);
}
.bg-duzz-orange\/5 {
  background-color: rgba(255, 106, 40, 0.05);
}
.bg-duzz-orange a{display: block;}
.bg-duzz-orange a svg{display: inline-block;}
.text-duzz-orange {
  color: var(--duzz-orange);
}
.bg-duzz-light {
  background-color: var(--duzz-light);
}
.bg-duzz-light\/50 {
  background-color: rgba(241, 238, 237, 0.5);
}
.bg-duzz-light\/10 {
  background-color: rgba(241, 238, 237, 0.1);
}

/* Scrollbar for mobile menu */
#mobile-menu::-webkit-scrollbar {
  width: 8px;
}
#mobile-menu::-webkit-scrollbar-thumb {
  background-color: var(--duzz-orange);
  border-radius: 4px;
}

/* Prevent content behind header */
body.menu-open {
  overflow: hidden;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}
@keyframes float-delayed {
  0%, 100% { transform: translateY(-10px); }
  50% { transform: translateY(-30px); }
}
.animate-float-delayed {
  animation: float-delayed 6s ease-in-out infinite 2s;
}
@keyframes fade-in {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fade-in 0.6s ease-out forwards;
}
@keyframes scale-in {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.animate-scale-in {
  animation: scale-in 0.4s ease-out forwards;
}

/* Utility for line clamp 2 */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Utility for aspect ratio */
.aspect-square {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.aspect-[16/9] {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.aspect-[4/5] {
  position: relative;
  width: 100%;
  padding-bottom: 80%;
}
.aspect-square > img,
.aspect-[16/9] > img,
.aspect-[4/5] > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Utility for skew */
.skew-x-12 {
  transform: skewX(12deg);
}

/* Utility for transform rotate */
.rotate-45 {
  transform: rotate(45deg);
}
.-rotate-12 {
  transform: rotate(-12deg);
}

/* Utility for backdrop blur */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

/* Utility for text opacity */
.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}
.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

/* Utility for border */
.border {
  border-width: 1px;
}
.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}
.border-white\/30 {
  border-color: rgba(255, 255, 255, 0.3);
}
.border-t {
  border-top-width: 1px;
}

/* Utility for max width */
.max-w-4xl {
  max-width: 56rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-md {
  max-width: 28rem;
}

/* Utility for resize none */
.resize-none {
  resize: none;
}

/* Utility for cursor pointer */
.cursor-pointer {
  cursor: pointer;
}

/* Utility for inline block */
.inline-block {
  display: inline-block;
}

/* Utility for inline flex */
.inline-flex {
  display: inline-flex;
}

/* Utility for absolute positioning */
.absolute {
  position: absolute;
}

/* Utility for relative positioning */
.relative {
  position: relative;
}

/* Utility for z-index */
.z-10 {
  z-index: 10;
}
.z-50 {
  z-index: 50;
}

/* Utility for text overflow ellipsis */
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Utility for text underline */
.underline {
  text-decoration: underline;
}

/* Utility for text blue */
.text-blue-500 {
  color: #3b82f6;
}
.text-blue-700:hover {
  color: #1d4ed8;
}

/* Utility for text gray */
.text-gray-600 {
  color: #4b5563;
}

/* Utility for text gray 100 */
.border-gray-100 {
  border-color: #f3f4f6;
}

/* Utility for shadow */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}
.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);
}
.shadow-3xl {
  box-shadow: 0 35px 60px -12px rgba(0,0,0,0.25);
}

/* Utility for hover */
.hover\:text-blue-700:hover {
  color: #1d4ed8;
}
.hover\:underline:hover {
  text-decoration: underline;
}

/* Utility for text center */
.text-center {
  text-align: center;
}

/* Utility for flex wrap */
.flex-wrap {
  flex-wrap: wrap;
}

/* Utility for justify center */
.justify-center {
  justify-content: center;
}

/* Utility for items center */
.items-center {
  align-items: center;
}

/* Utility for gap */
.gap-4 {
  gap: 1rem;
}

/* Utility for margin bottom */
.mb-4 {
  margin-bottom: 1rem;
}

/* Utility for margin top */
.mt-4 {
  margin-top: 1rem;
}

/* Utility for margin bottom */
.mb-6 {
  margin-bottom: 1.5rem;
}

/* Utility for margin top */
.mt-6 {
  margin-top: 1.5rem;
}

/* Utility for margin bottom */
.mb-8 {
  margin-bottom: 2rem;
}

/* Utility for margin top */
.mt-8 {
  margin-top: 2rem;
}

/* Utility for padding */
.p-4 {
  padding: 1rem;
}

/* Utility for padding */
.p-6 {
  padding: 1.5rem;
}

/* Utility for padding */
.p-8 {
  padding: 2rem;
}

/* Utility for padding */
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Utility for padding */
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Utility for width */
.w-full {
  width: 100%;
}

/* Utility for height */
.h-full {
  height: 100%;
}

/* Utility for max height */
.max-h-[90vh] {
  max-height: 90vh;
  overflow-y: auto;
}

/* Utility for cursor pointer */
.cursor-pointer {
  cursor: pointer;
}

/* Utility for text overflow */
.overflow-hidden {
  overflow: hidden;
}

/* Utility for rounded corners */
.rounded-[3rem] {
  border-radius: 3rem;
}

/* Utility for rounded corners */
.rounded-[2rem] {
  border-radius: 2rem;
}

/* Utility for rounded corners */
.rounded-[1.5rem] {
  border-radius: 1.5rem;
}

/* Utility for rounded corners */
.rounded-[1rem] {
  border-radius: 1rem;
}

/* Utility for text opacity */
.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}

/* Utility for text opacity */
.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

/* Utility for text opacity */
.text-duzz-green\/70 {
  color: rgba(51, 49, 23, 0.7);
}

/* Utility for text opacity */
.text-duzz-green\/80 {
  color: rgba(51, 49, 23, 0.8);
}

/* Utility for text opacity */
.text-duzz-green\/60 {
  color: rgba(51, 49, 23, 0.6);
}

/* Utility for text opacity */
.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

/* Utility for text opacity */
.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}

/* Utility for text opacity */
.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

/* Utility for text opacity */
.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}

/* Utility for text opacity */
.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

/* Utility for text opacity */
.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}

/* Utility for text opacity */
.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.rounded-2xl{
  border-radius: 2rem;
}

.rounded-2\.5xl{
  border-radius: 1.5rem;
}

.rounded-4xl{
  border-radius: 3rem;
}