:root {
      --background: oklch(0.985 0 0);
      --foreground: oklch(0 0 0);
      --card: oklch(1 0 0);
      --card-foreground: oklch(0 0 0);
      --popover: oklch(1 0 0);
      --popover-foreground: oklch(0 0 0);
      --primary: #C58B0F;
      --primary-foreground: oklch(1 0 0);
      --secondary: #0161B2;
      --secondary-foreground: oklch(1 0 0);
      --muted: oklch(0.96 0 0);
      --muted-foreground: oklch(0.4 0 0);
      --accent: #0161B2;
      --accent-foreground: oklch(1 0 0);
      --destructive: oklch(0.577 0.245 27.325);
      --destructive-foreground: oklch(0.577 0.245 27.325);
      --border: oklch(0.88 0 0);
      --input: oklch(0.922 0 0);
      --ring: #C58B0F;
      --chart-1: #C58B0F;
      --chart-2: #0161B2;
      --chart-3: oklch(0.3 0 0);
      --chart-4: oklch(0.65 0.1 70);
      --chart-5: oklch(0.5 0.1 230);
      --radius: 0.5rem;
      --sidebar: oklch(0.985 0 0);
      --sidebar-foreground: oklch(0 0 0);
      --sidebar-primary: #C58B0F;
      --sidebar-primary-foreground: oklch(1 0 0);
      --sidebar-accent: #0161B2;
      --sidebar-accent-foreground: oklch(1 0 0);
      --sidebar-border: oklch(0.88 0 0);
      --sidebar-ring: #C58B0F;
      --top-bar: #000000;
      --top-bar-foreground: oklch(0.95 0 0);
    }

    .dark {
      --background: oklch(0.12 0 0);
      --foreground: oklch(0.95 0 0);
      --card: oklch(0.18 0 0);
      --card-foreground: oklch(0.95 0 0);
      --popover: oklch(0.12 0 0);
      --popover-foreground: oklch(0.95 0 0);
      --primary: #C58B0F;
      --primary-foreground: oklch(1 0 0);
      --secondary: #0161B2;
      --secondary-foreground: oklch(1 0 0);
      --muted: oklch(0.22 0 0);
      --muted-foreground: oklch(0.65 0 0);
      --accent: #0161B2;
      --accent-foreground: oklch(1 0 0);
      --destructive: oklch(0.396 0.141 25.723);
      --destructive-foreground: oklch(0.637 0.237 25.331);
      --border: oklch(0.28 0 0);
      --input: oklch(0.22 0 0);
      --ring: #C58B0F;
      --chart-1: #C58B0F;
      --chart-2: #0161B2;
      --chart-3: oklch(0.5 0 0);
      --chart-4: oklch(0.6 0.1 70);
      --chart-5: oklch(0.55 0.1 230);
      --sidebar: oklch(0.15 0 0);
      --sidebar-foreground: oklch(0.95 0 0);
      --sidebar-primary: #C58B0F;
      --sidebar-primary-foreground: oklch(1 0 0);
      --sidebar-accent: #0161B2;
      --sidebar-accent-foreground: oklch(1 0 0);
      --sidebar-border: oklch(0.28 0 0);
      --sidebar-ring: #C58B0F;
      --top-bar: #000000;
      --top-bar-foreground: oklch(0.92 0 0);
    }

    html {
      scroll-behavior: smooth;
      font-size: 18px;
      font-family: 'Inter', sans-serif;
    }

    body {
      background-color: #FCFCFC;
      color: #000000;
    }

    @media (max-width: 768px) {
      html {
        font-size: 16px;
      }
    }

    .carousel-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 0.75rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .carousel-slides {
      display: flex;
      transition: transform 0.5s ease-out;
    }

    .carousel-slide {
      width: 100%;
      flex-shrink: 0;
    }

    .carousel-slide img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(255, 255, 255, 0.8);
      color: #000;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
    }

    .carousel-nav:hover {
      background-color: #fff;
      transform: translateY(-50%) scale(1.1);
    }

    .carousel-nav.prev {
      left: 16px;
    }

    .carousel-nav.next {
      right: 16px;
    }

    .carousel-indicators {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }

    .carousel-indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.6);
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }

    .carousel-indicator.active {
      background-color: #C58B0F;
      transform: scale(1.1);
    }

    .mobile-menu {
      display: none;
    }

    .mobile-menu.open {
      display: block;
    }

    .whatsapp-button {
      position: fixed;
      right: 24px;
      bottom: 120px;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background-color: #25D366;
      color: white;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      transition: all 0.3s;
      text-decoration: none;
    }

    .whatsapp-button:hover {
      transform: scale(1.1);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }