
    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: #1D1D1B;
      margin: 0;
      color: white;
      font-family: 'Montserrat', sans-serif;
      overflow-x: hidden;
    }

    ::selection {
      background-color: #C5A059;
      color: #1D1D1B;
    }

    /* Enhanced Gold Filter */
    .filter-gold {
      filter: brightness(0) saturate(100%) invert(68%) sepia(28%) saturate(928%) hue-rotate(4deg) brightness(95%) contrast(89%);
    }

    /* Gradient Text */
    .gradient-text {
      background: linear-gradient(135deg, #C5A059 0%, #D4B373 50%, #C5A059 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Glass Effect */
    .glass-effect {
      background: rgba(29, 29, 27, 0.4); border: 1px solid rgba(197, 160, 89, 0.1);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    }

    /* Smooth Hover Transitions */
    .smooth-hover {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .smooth-hover:hover {
      transform: translateY(-4px);
    }

    .showcase-card {
      width: 100%;
      max-width: 560px;
      padding: 12px;
      border-radius: 1rem;
      border: 1px solid rgba(197, 160, 89, 0.28);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    }

    .showcase-card img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 0.85rem;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: #1D1D1B;
    }

    ::-webkit-scrollbar-thumb {
      background: #C5A059;
      border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #A88842;
    }

    /* Animated Gradient Border */
    .animated-border {
      position: relative;
      background: linear-gradient(45deg, transparent, transparent);
    }

    .animated-border::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: inherit;
      padding: 2px;
      background: linear-gradient(45deg, #C5A059, #D4B373, #C5A059);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .animated-border:hover::before {
      opacity: 1;
    }

    /* Shine Effect */
    .shine-effect {
      position: relative;
      overflow: hidden;
    }

    .shine-effect::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(to bottom right,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.1) 50%,
          rgba(255, 255, 255, 0) 100%);
      transform: rotate(45deg);
      transition: all 0.6s ease;
    }

    .shine-effect:hover::after {
      left: 100%;
    }

    /* Pulse Animation */
    @keyframes pulse-glow {

      0%,
      100% {
        box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
      }

      50% {
        box-shadow: 0 0 25px rgba(197, 160, 89, 0.35);
      }
    }

    .pulse-glow {
      animation: pulse-glow 3.5s ease-in-out infinite;
    }

    /* Enhanced Card Hover */
    .card-hover {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .card-hover:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
    }

    /* Mobile Menu */
    .mobile-menu {
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    /* Urgency Strip Pulse */
    @keyframes urgencyPulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.85;
      }
    }

    /* Sticky mobile bottom CTA */
    .sticky-mobile-cta {
      display: none;
    }

    @media (max-width: 767px) {

      /* Make hero gradient more vibrant on mobile */
      .hero-mobile-overlay {
        background: linear-gradient(180deg,
            rgba(29, 29, 27, 0.92) 0%,
            rgba(29, 29, 27, 0.75) 60%,
            rgba(29, 29, 27, 0.95) 100%) !important;
      }

      /* Hide the red urgency bar on mobile - the sticky CTA bar is enough */
      .mini-urgency-bar {
        display: none !important;
      }

      /* ========== MOBILE HERO - MÉTODO IP STYLE ========== */

      /* Hero: stack vertically, no min-height */
      .hero-section {
        min-height: auto !important;
        padding: 0 !important;
        margin-top: 0 !important;
        flex-direction: column;
        display: flex;
        overflow: visible;
      }

      /* Hero background image: full-bleed at top */
      .hero-bg-wrapper {
        position: relative !important;
        width: 100%;
        height: 38vh;
        z-index: 0 !important;
        flex-shrink: 0;
      }

      .hero-bg-wrapper img {
        object-position: center 20% !important;
        opacity: 1 !important;
      }

      /* Gradient overlay: fade to dark at bottom of image */
      .hero-overlay {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 38vh;
        z-index: 1 !important;
        background: linear-gradient(180deg,
            rgba(29, 29, 27, 0) 0%,
            rgba(29, 29, 27, 0.1) 35%,
            rgba(29, 29, 27, 0.7) 75%,
            rgba(29, 29, 27, 1) 100%) !important;
      }

      /* Content wrapper: overlapping the image deeply */
      .hero-content-wrapper {
        position: relative;
        z-index: 5 !important;
        margin-top: -15rem;
        padding: 0 1rem !important;
      }

      /* Inner card - glassmorphism */
      .hero-content-card {
        max-width: 100% !important;
        background: rgba(29, 29, 27, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(197, 160, 89, 0.25);
        border-radius: 1.25rem;
        padding: 2rem 1.5rem !important;
        text-align: center;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
      }

      /* Badges centered */
      .hero-content-card .flex.flex-wrap {
        justify-content: center;
        margin-bottom: 1rem;
      }

      /* Hero title */
      .hero-content-card h1 {
        font-size: 2rem !important;
        line-height: 1.15;
        margin-bottom: 0.75rem;
        text-align: center;
      }

      /* Hero subtitle */
      .hero-content-card .text-base {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: center;
        max-width: 100%;
      }

      /* CTA buttons stacked full-width */
      .hero-content-card .flex.flex-col {
        gap: 0.65rem;
        margin-bottom: 1rem;
      }

      .hero-content-card .flex.flex-col a {
        width: 100%;
        padding: 16px 20px;
        font-size: 0.85rem;
        justify-content: center;
        border-radius: 0.6rem;
      }

      /* 100% Hands-On tagline centered */
      .hero-content-card .inline-flex.border-l-4 {
        display: flex;
        justify-content: center;
        border-left: none;
        border-top: 1px solid rgba(197, 160, 89, 0.3);
        padding: 1rem 0 0;
        margin-top: 0.5rem;
        width: 100%;
      }

      .hero-content-card .border-l-4 .text-primary.font-serif {
        font-size: 1rem;
      }

      .hero-content-card .border-l-4 .text-white\/60 {
        font-size: 0.75rem;
      }

      /* ========== REST OF MOBILE STYLES ========== */

      /* Feature cards: tighter */
      .grid.grid-cols-2 .glass-effect {
        padding: 0.75rem 0.5rem;
        gap: 0.5rem;
      }

      .grid.grid-cols-2 .glass-effect i {
        font-size: 1.5rem;
      }

      .grid.grid-cols-2 .glass-effect h3 {
        font-size: 0.75rem;
      }

      /* Section titles */
      .gradient-text.font-serif {
        font-size: 1.75rem;
      }

      /* Cronograma day cards */
      .glass-effect.border-2.rounded-lg {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
      }

      .glass-effect.border-2 h3 {
        font-size: 1.15rem;
      }

      .glass-effect.border-2 p {
        font-size: 0.8rem;
      }

      /* Enlarge CTA on mobile for thumb tap */
      #urgency-cta {
        font-size: 1rem;
        padding: 18px 28px;
      }

      /* Compact countdown on mobile */
      .countdown-box {
        min-width: 60px !important;
        padding: 10px 12px !important;
        font-size: clamp(1.8rem, 7vw, 3rem) !important;
      }

      /* Sticky mobile bottom CTA - single clean bar */
      .sticky-mobile-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        padding: 10px 16px;
        background: linear-gradient(90deg, #1D1D1B 0%, #2C2624 100%);
        border-top: 2px solid rgba(197, 160, 89, 0.5);
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        backdrop-filter: blur(12px);
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
      }

      /* Move WhatsApp button above sticky bar */
      a.fixed.bottom-6.right-6 {
        bottom: 75px !important;
      }

      /* Add bottom padding to body so sticky bar doesn't cover content */
      body {
        padding-bottom: 70px;
      }

      /* General section padding reduction */
      section {
        padding-left: 0;
        padding-right: 0;
      }

      .container {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      /* Pilares section cards */
      .card-hover {
        transform: none !important;
      }
    }

    /* Mini urgency bar */
    .mini-urgency-bar {
      background: linear-gradient(90deg, #7b1010 0%, #c0392b 40%, #7b1010 100%);
      padding: 10px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      text-align: center;
    }
  
    
    /* Elegant Page Transition & Smoothness */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Refined Button Shine */
    .shine-effect::after {
        transition: all 0.8s ease-in-out;
        background: linear-gradient(to bottom right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    }
    