/* ============================
   SANTORY ATACADO - LANDING PAGE
   Premium Dark Theme with Gold
   ============================ */

/* CSS Variables */
:root {
    /* Colors */
    --background: #000000;
    --foreground: hsl(45, 10%, 95%);
    --card: hsl(0, 0%, 3%);
    --card-foreground: hsl(45, 10%, 95%);
    --border: hsl(0, 0%, 18%);
    --muted: hsl(0, 0%, 10%);
    --muted-foreground: hsl(0, 0%, 60%);
    --secondary: hsl(0, 0%, 8%);
    
    /* Gold Palette */
    --gold: hsl(43, 74%, 49%);
    --gold-light: hsl(45, 93%, 65%);
    --gold-dark: hsl(38, 65%, 35%);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    --gradient-gold-subtle: linear-gradient(90deg, var(--gold) 0%, hsl(45, 93%, 58%) 100%);
    
    /* Shadows */
    --shadow-gold: 0 4px 30px hsla(43, 74%, 49%, 0.15);
    --shadow-gold-glow: 0 0 40px hsla(43, 74%, 49%, 0.3);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --container-padding: 1rem;
    --container-max: 1400px;
  }
  
  /* Reset */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    touch-action: pan-y;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100vw;
    touch-action: pan-y;
    -moz-osx-font-smoothing: grayscale;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  img, video, iframe {
    max-width: 100%;
    height: auto;
  }
  
  /* Container */
  .container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  * {
    box-sizing: border-box;
    max-width: 100vw;
  }
  
  section, div {
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  section.vendor-section, 
  section.testimonials-section, 
  section.hero,
  div.vendor-card-wrapper,
  div.seller-card-vendor,
  div.vendor-avatar-image,
  div.testimonials-carousel,
  div.testimonials-track,
  div.testimonial-video-wrapper {
    overflow-x: visible;
  }
  
  /* Utilities */
  .hidden { display: none !important; }
  
  .text-gold { color: var(--gold); font-weight: 600; }
  
  .text-gradient-gold {
    background: var(--gradient-gold-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes pulseGold {
    0%, 100% { 
      box-shadow: 0 0 20px hsla(43, 74%, 49%, 0.3);
    }
    50% { 
      box-shadow: 0 0 40px hsla(43, 74%, 49%, 0.5);
    }
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  
  .animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
  }
  
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }
  .delay-4 { animation-delay: 0.4s; }
  .delay-5 { animation-delay: 0.5s; }
  
  /* ============================
     BUTTONS
     ============================ */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
  }
  
  .btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
  .btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
  .btn-full { width: 100%; }
  
  .btn-gold {
    background: var(--gradient-gold);
    color: var(--background);
    box-shadow: var(--shadow-gold);
  }
  
  .btn-gold:hover {
    opacity: 0.9;
    box-shadow: var(--shadow-gold-glow);
    transform: scale(1.02);
  }
  
  .btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    min-width: 200px;
    height: auto;
    box-sizing: border-box;
  }
  
  .btn-gold-outline:hover {
    background: hsla(43, 74%, 49%, 0.1);
  }
  
  .btn-xl {
    padding: 1rem 2rem;
    font-size: 1.rem;
    font-weight: 700;
    min-width: 200px;
    box-sizing: border-box;
  }
  
  .btn-hero {
    background: var(--gradient-gold);
    color: var(--background);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    box-shadow: var(--shadow-gold-glow);
    border: 2px solid transparent;
    min-width: 200px;
    height: auto;
    box-sizing: border-box;
  }
  
  .btn-hero:hover {
    opacity: 0.9;
    box-shadow: 0 0 60px hsla(43, 74%, 49%, 0.4);
    transform: scale(1.02);
  }
  
  .btn-dark {
    background: var(--secondary);
    color: var(--foreground);
    border: 1px solid var(--border);
  }
  
  .btn-dark:hover {
    background: hsla(0, 0%, 12%, 0.8);
    border-color: hsla(43, 74%, 49%, 0.3);
  }
  
  /* ============================
     ANNOUNCEMENT BAR
     ============================ */
  .announcement-bar {
    width: 100%;
    background: linear-gradient(135deg, #F4D03F 0%, #F39C12 50%, #D68910 100%);
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
  }
  
  @keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
  }
  
  .announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  .announcement-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    letter-spacing: 0.05em;
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
  }
  
  .announcement-text svg {
    flex-shrink: 0;
    opacity: 0.95;
    width: 16px;
    height: 16px;
  }
  
  .announcement-text.fade-out {
    opacity: 0;
    transform: translateY(-8px);
  }
  
  @media (min-width: 640px) {
    .announcement-content {
      height: 3.75rem;
      padding: 0 2rem;
    }
    
    .announcement-text {
      font-size: 0.8125rem;
      gap: 0.625rem;
    }
    
    .announcement-text svg {
      width: 18px;
      height: 18px;
    }
  }
  
  @media (min-width: 768px) {
    .announcement-content {
      height: 4rem;
      padding: 0 3rem;
    }
    
    .announcement-text {
      font-size: 0.875rem;
      gap: 0.75rem;
      letter-spacing: 0.05em;
    }
    
    .announcement-text svg {
      width: 20px;
      height: 20px;
    }
  }
  
  @media (min-width: 1024px) {
    .announcement-text {
      font-size: 0.9375rem;
    }
    
    .announcement-text svg {
      width: 22px;
      height: 22px;
    }
  }
  
  /* ============================
     HERO SECTION
     ============================ */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: visible;
    background: var(--background);
    width: 100%;
    max-width: 100vw;
  }
  
  .hero-header-banner {
    width: 100%;
    max-width: 100vw;
    background-image: url('assets/hero-background.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    padding: 2rem 0;
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .hero-header-banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, 
      rgba(0, 0, 0, 0.836) 0%, 
      rgba(0, 0, 0, 0.74) 50%,
      rgba(0, 0, 0, 0.61) 70%,
      rgba(0, 0, 0, 0.842) 85%,
      rgb(0, 0, 0) 95%,
      var(--background) 100%
    );
    pointer-events: none;
    z-index: 1;
  }
  
  .hero-header-banner .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-header-banner .hero-content {
    padding: 0 1rem;
  }
  
  @media (min-width: 640px) {
    .hero-header-banner {
      padding: 2.5rem 0;
    }
    
    .hero-header-banner .hero-content {
      padding: 0 2rem;
    }
  }
  
  @media (min-width: 768px) {
    .hero-header-banner {
      padding: 3rem 0;
    }
    
    .hero-header-banner .hero-content {
      padding: 0 3rem;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-header-banner {
      padding: 3.5rem 0;
    }
    
    .hero-header-banner .hero-content {
      padding: 0 4rem;
    }
  }
  
  .hero-content {
    position: relative;
    z-index: 10;
    padding: 0 1rem 5rem 1rem;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    width: 100%;
  }
  
  .hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  
  .hero-logo-image {
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  @media (min-width: 640px) {
    .hero-logo-image {
      max-width: 220px;
    }
  }
  
  @media (min-width: 768px) {
    .hero-logo-image {
      max-width: 260px;
    }
  }
  
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(43, 74%, 49%, 0.1);
    border: 1px solid hsla(43, 74%, 49%, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 0.75rem;
  }
  
  .badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
  
  .badge span:last-child {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold);
  }
  
  .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    color: hsla(45, 10%, 95%, 0.7);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
  }
  
  @media (min-width: 640px) {
    .hero-subtitle {
      padding: 0 2rem;
    }
  }
  
  @media (min-width: 768px) {
    .hero-subtitle {
      padding: 0 3rem;
    }
  }
  
  /* VSL */
  .vsl-container {
    max-width: 20rem;
    margin: 0 auto 2.5rem;
    width: calc(100% - 2rem);
    padding: 0 1rem;
    margin-bottom: 60px;
  }
  
  .vsl-wrapper {
    position: relative;
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid hsla(43, 74%, 49%, 0.5);
    box-shadow: 0 0 20px hsla(43, 74%, 49%, 0.1);
    background: var(--card);
  }
  
  .vsl-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 35rem;
    display: block;
    aspect-ratio: 9/16;
    object-fit: contain;
    background: var(--card);
    cursor: pointer;
  }
  
  .vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(0, 0%, 4%, 0.7);
    backdrop-filter: blur(2px);
    z-index: 10;
    transition: opacity 0.3s ease;
  }
  
  .vsl-overlay.hidden {
    display: none;
  }
  
  .vsl-play-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, #F4D03F 0%, #F39C12 50%, #D68910 100%);
    border: none;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
      0 20px 60px rgba(243, 156, 18, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.1) inset,
      0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 11rem;
    width: auto;
    margin: 0 auto;
  }
  
  .vsl-play-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .vsl-play-button:hover::before {
    opacity: 1;
  }
  
  .vsl-play-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
      0 25px 70px rgba(243, 156, 18, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.15) inset,
      0 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  .vsl-play-button:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 
      0 15px 40px rgba(243, 156, 18, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  }
  
  .play-icon-circle {
    width: 5rem;
    height: 5rem;
    border-radius: 0.5rem;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  .vsl-play-button:hover .play-icon-circle {
    transform: scale(1.1);
  }
  
  .play-icon-circle svg {
    width: 3.5rem;
    height: 3.5rem;
    color: #FFFFFF;
    fill: #FFFFFF;
    stroke: #FFFFFF;
    transition: transform 0.3s ease;
  }
  
  .play-icon-circle.pause-icon svg {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .vsl-play-button:hover .play-icon-circle svg {
    transform: scale(1.1);
  }
  
  .play-button-text {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
  }
  
  @media (min-width: 640px) {
    .vsl-container {
      max-width: 22rem;
      width: calc(100% - 4rem);
      padding: 0 2rem;
    }
    
    .vsl-video {
      max-height: 40rem;
    }
    
    .play-button-text {
      font-size: 0.875rem;
    }
    
    .vsl-play-button {
      padding: 1.75rem 2rem;
      max-width: 12rem;
      gap: 1.125rem;
    }
    
    .play-icon-circle {
      width: 6rem;
      height: 6rem;
    }
    
    .play-icon-circle svg {
      width: 4rem;
      height: 4rem;
    }
    
    .play-icon-circle.pause-icon svg {
      width: 4rem;
      height: 4rem;
    }
  }
  
  @media (min-width: 768px) {
    .vsl-container {
      max-width: 24rem;
      width: calc(100% - 6rem);
      padding: 0 3rem;
    }
    
    .vsl-video {
      max-height: 45rem;
    }
    
    .vsl-play-button {
      padding: 2rem 2.25rem;
      max-width: 13rem;
      gap: 1.25rem;
    }
    
    .play-icon-circle {
      width: 7rem;
      height: 7rem;
    }
    
    .play-icon-circle svg {
      width: 4.5rem;
      height: 4.5rem;
    }
    
    .play-icon-circle.pause-icon svg {
      width: 4.5rem;
      height: 4.5rem;
    }
    
    .play-button-text {
      font-size: 0.9375rem;
    }
    
    .play-icon-wrapper {
      width: 5rem;
      height: 5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .vsl-container {
      max-width: 26rem;
    }
  }
  
  /* ============================
     TESTIMONIALS SECTION
     ============================ */
  .testimonials-section {
    margin-top: 4rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  .testimonials-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.3;
  }
  
  /* Vendor Section */
  .vendor-section {
    padding: 0 1rem;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  .vendor-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.3;
  }
  
  .vendor-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Brands Carousel Section */
  .brands-section {
    width: 100%;
    max-width: 100vw;
    padding: 1rem 0;
    margin: 1rem 0;
    background: linear-gradient(
      39deg, #000000 0%, #000000 50%, #D68910 150%);
    overflow: hidden;
    position: relative;
    margin-bottom: 60px;
    box-sizing: border-box;
  }
  
  .brands-carousel-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
  }
  
  .brands-carousel-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: scrollBrands 20s linear infinite;
    will-change: transform;
    width: max-content;
  }
  
  @keyframes scrollBrands {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-50% - 1.5rem));
    }
  }
  
  .brand-item {
    flex-shrink: 0;
    width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(4px);
  }
  
  .brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.95;
  }
  
  .brand-item img[src$=".svg"] {
    filter: brightness(0) invert(1);
  }
  
  .brand-item img[src$=".png"] {
    filter: brightness(0) invert(1);
  }
  
  .brand-item img[src*="Nike-logo"],
  .brand-item img[src*="Logo_Adidas"] {
    max-width: 85%;
    max-height: 85%;
  }
  
  @media (min-width: 640px) {
    .brands-section {
      padding: 2.5rem 0;
    }
    
    .brand-item {
      width: 140px;
      height: 90px;
    }
    
    .brands-carousel-track {
      gap: 4rem;
    }
  }
  
  @media (min-width: 768px) {
    .brands-section {
      padding: 3rem 0;
    }
    
    .brand-item {
      width: 120px;
      height: 75px;
    }
    
    .brands-carousel-track {
      gap: 5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .brands-section {
      padding: 3.5rem 0;
    }
    
    .brand-item {
      width: 140px;
      height: 85px;
    }
    
    .brands-carousel-track {
      gap: 6rem;
    }
  }
  
  .seller-card-vendor {
    position: relative;
    padding-top: 3.5rem;
    overflow: visible;
  }
  
  .vendor-avatar-image {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #F4D03F 0%, #F39C12 50%, #D68910 100%);
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .vendor-avatar-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }
  
  .testimonials-carousel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
    box-sizing: border-box;
  }
  
  .testimonials-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
  }
  
  .counter-current {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 1.5rem;
    text-align: center;
  }
  
  .counter-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
  }
  
  .counter-total {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
  }
  
  .testimonials-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    cursor: grab;
    user-select: none;
    will-change: transform;
    position: relative;
  }
  
  .testimonials-track:active {
    cursor: grabbing;
  }
  
  .testimonial-video-wrapper {
    flex: 0 0 12rem;
    max-width: 12rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    transform: scale(0.75);
    position: relative;
  }
  
  .testimonial-video-wrapper.active {
    flex: 0 0 16rem;
    max-width: 16rem;
    opacity: 1;
    transform: scale(1);
    z-index: 2;
  }
  
  .testimonial-video {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    border: 2px solid hsla(43, 74%, 49%, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    background: var(--card);
    aspect-ratio: 9/16;
    object-fit: cover;
    display: block;
    background-color: #000;
  }
  
  .testimonial-video::-webkit-media-controls-panel {
    display: flex !important;
    opacity: 1 !important;
  }
  
  .testimonial-video-wrapper.active .testimonial-video {
    border-color: hsla(43, 74%, 49%, 0.6);
    box-shadow: 0 12px 40px hsla(43, 74%, 49%, 0.3);
  }
  
  @media (min-width: 640px) {
    .testimonials-section {
      padding: 0 2rem;
    }
    
    .testimonials-title {
      font-size: 1.75rem;
    }
    
    .testimonials-counter {
      font-size: 1.25rem;
      margin-bottom: 2.5rem;
    }
    
    .counter-current {
      font-size: 1.75rem;
    }
    
    .vendor-section {
      padding: 0 2rem;
    }
    
    .vendor-title {
      font-size: 1.75rem;
    }
    
    .vendor-avatar-image {
      width: 8rem;
      height: 8rem;
      top: -4rem;
      border-width: 5px;
      border-color: #F4D03F;
    }
    
    .seller-card-vendor {
      padding-top: 4rem;
    }
    
    .testimonials-carousel {
      padding: 2rem 0;
      overflow: hidden;
    }
    
    .testimonials-track {
      gap: 1.5rem;
    }
    
    .testimonial-video-wrapper {
      flex: 0 0 14rem;
      max-width: 14rem;
    }
    
    .testimonial-video-wrapper.active {
      flex: 0 0 18rem;
      max-width: 18rem;
    }
  }
  
  @media (min-width: 768px) {
    .testimonials-section {
      margin-top: 5rem;
      padding: 0 3rem;
    }
    
    .testimonials-title {
      font-size: 2rem;
      margin-bottom: 3rem;
    }
    
    .testimonials-counter {
      font-size: 1.375rem;
      margin-bottom: 3rem;
    }
    
    .counter-current {
      font-size: 2rem;
    }
    
    .vendor-title {
      font-size: 2rem;
      margin-bottom: 2.5rem;
    }
    
    .vendor-avatar-image {
      width: 9rem;
      height: 9rem;
      top: -4.5rem;
      border-width: 6px;
      border-color: #F4D03F;
    }
    
    .seller-card-vendor {
      padding-top: 4.5rem;
    }
    
    .testimonials-carousel {
      padding: 2rem 0;
      overflow: hidden;
    }
    
    .testimonials-track {
      gap: 2rem;
    }
    
    .testimonial-video-wrapper {
      flex: 0 0 16rem;
      max-width: 16rem;
    }
    
    .testimonial-video-wrapper.active {
      flex: 0 0 20rem;
      max-width: 20rem;
    }
  }
  
  @media (min-width: 1024px) {
    .testimonials-title {
      font-size: 2.25rem;
    }
    
    .testimonials-counter {
      font-size: 1.5rem;
      margin-bottom: 3.5rem;
    }
    
    .counter-current {
      font-size: 2.25rem;
    }
    
    .vendor-title {
      font-size: 2.25rem;
    }
    
    .vendor-section {
      padding: 0 4rem;
    }
    
    .vendor-avatar-image {
      width: 10rem;
      height: 10rem;
      top: -5rem;
      border-width: 6px;
      border-color: #F4D03F;
    }
    
    .seller-card-vendor {
      padding-top: 5rem;
    }
    
    .testimonials-carousel {
      padding: 2rem 0;
      overflow: hidden;
    }
    
    .testimonial-video-wrapper {
      flex: 0 0 18rem;
      max-width: 18rem;
    }
    
    .testimonial-video-wrapper.active {
      flex: 0 0 24rem;
      max-width: 24rem;
    }
  }
  
  .video-error {
    margin-top: 1rem;
    padding: 1rem;
    background: hsla(0, 60%, 50%, 0.1);
    border: 1px solid hsla(0, 60%, 50%, 0.3);
    border-radius: 0.5rem;
    text-align: center;
    color: hsl(0, 60%, 70%);
    font-size: 0.875rem;
  }
  
  .video-error.hidden {
    display: none;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  /* Stats */
  .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
  }
  
  @media (min-width: 768px) {
    .stats {
      margin-top: 5rem;
      margin-bottom: 8rem;
    }
  }
  
  @media (min-width: 1024px) {
    .stats {
      margin-top: 6rem;
      margin-bottom: 10rem;
    }
  }
  
  .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .stat-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
  }
  
  .stat-value svg {
    color: var(--gold);
  }
  
  .stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
  }
  
  @media (min-width: 640px) {
    .cta-buttons { flex-direction: row; }
  }
  
  @media (min-width: 768px) {
    .hero-content { padding: 1.5rem 0 8rem 0; }
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.25rem; }
    .stat-value { font-size: 2.25rem; }
    .stats { gap: 4rem; }
  }
  
  @media (min-width: 1024px) {
    .hero-title { font-size: 4.5rem; }
  }
  
  /* ============================
     BENEFITS SECTION
     ============================ */
  .benefits {
    background: #000000;
    padding-top: 5rem;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  @media (min-width: 768px) {
    .benefits {
      padding-top: 8rem;
    }
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-tag {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-card {
    position: relative;
    background: hsla(0, 0%, 7%, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--gold);
    transition: var(--transition);
  }
  
  .benefit-card:hover {
    border-color: hsla(43, 74%, 49%, 0.3);
    box-shadow: var(--shadow-gold);
  }
  
  .benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: hsla(43, 74%, 49%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
  }
  
  .benefit-card:hover .benefit-icon {
    background: hsla(43, 74%, 49%, 0.2);
  }
  
  .benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: var(--transition);
  }
  
  .benefit-card:hover .benefit-title {
    color: var(--gold);
  }
  
  .benefit-description {
    color: var(--muted-foreground);
    line-height: 1.7;
  }
  
  @media (min-width: 768px) {
    .benefits { padding: 8rem 0; }
    .section-title { font-size: 3rem; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  }
  
  @media (min-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  }
  
  /* ============================
     SELLERS SECTION
     ============================ */
  .sellers {
    padding: 5rem 0;
    background: hsla(0, 0%, 7%, 0.3);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  .sellers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Sellers grid dentro do hero-content precisa respeitar o padding do container */
  .hero-content .sellers-grid {
    padding: 0 var(--container-padding);
  }
  
  @media (min-width: 640px) {
    .hero-content .sellers-grid {
      padding: 0 calc(var(--container-padding) * 2);
    }
  }
  
  @media (min-width: 768px) {
    .hero-content .sellers-grid {
      padding: 0 calc(var(--container-padding) * 3);
    }
  }
  
  .seller-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
  }
  
  .seller-card:hover {
    border-color: hsla(43, 74%, 49%, 0.3);
    box-shadow: var(--shadow-gold);
  }
  
  .seller-card-highlight {
    background: linear-gradient(135deg, hsla(43, 74%, 49%, 0.2) 0%, hsla(43, 74%, 49%, 0.05) 100%);
    border-color: hsla(43, 74%, 49%, 0.3);
  }
  
  .seller-card-highlight:hover {
    box-shadow: var(--shadow-gold-glow);
  }
  
  .seller-card-vendor {
    background: linear-gradient(135deg, #F4D03F 0%, #F39C12 50%, #D68910 100%);
    border-color: hsla(43, 74%, 49%, 0.6);
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.4);
  }
  
  .seller-card-vendor:hover {
    box-shadow: 0 12px 40px rgba(243, 156, 18, 0.5);
    transform: translateY(-3px);
  }
  
  .seller-avatar-vendor {
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .seller-avatar-vendor svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  }
  
  .seller-name-vendor {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.9375rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.02em;
    text-transform: none;
    white-space: nowrap;
    margin-top: 0.5rem;
  }
  
  .seller-text-vendor {
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.9375rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
    opacity: 1;
  }
  
  .btn-vendor {
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    border: none;
    font-weight: 700;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .btn-vendor:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), inset 0 2px 4px rgba(0, 0, 0, 0.4);
  }
  
  .seller-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .seller-card-vendor .seller-header {
    margin-top: 1rem;
  }
  
  .seller-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--background);
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
  }
  
  .seller-card:hover .seller-avatar {
    box-shadow: var(--shadow-gold-glow);
  }
  
  .seller-avatar-pulse {
    animation: pulseGold 2s ease-in-out infinite;
    color: var(--background);
  }
  
  .seller-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .seller-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--foreground);
    letter-spacing: 0.05em;
  }
  
  .seller-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
  }
  
  .seller-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
  }
  
  @media (min-width: 640px) {
    .sellers-grid { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (min-width: 768px) {
    .sellers { padding: 8rem 0; }
  }
  
  @media (min-width: 1024px) {
    .sellers-grid { grid-template-columns: repeat(3, 1fr); }
  }
  
  /* ============================
     CTA SECTION
     ============================ */
  .cta-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
  }
  
  .cta-background {
    position: absolute;
    inset: 0;
    background: #000000;
  }
  
  .cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: hsla(43, 74%, 49%, 0.1);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
  }
  
  .cta-card {
    position: relative;
    background: hsla(0, 0%, 7%, 0.8);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid hsla(43, 74%, 49%, 0.2);
    box-shadow: var(--shadow-gold-glow);
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .cta-card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: var(--gradient-gold);
    opacity: 0.1;
    border-bottom-left-radius: 100%;
  }
  
  .cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .cta-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
  }
  
  .cta-buttons-final {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-trust {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  @media (min-width: 640px) {
    .cta-buttons-final { flex-direction: row; justify-content: center; }
  }
  
  @media (min-width: 768px) {
    .cta-section { padding: 8rem 0; }
    .cta-card { padding: 3rem; }
    .cta-title { font-size: 3rem; }
    .cta-text { font-size: 1.25rem; }
  }
  
  /* ============================
     FOOTER
     ============================ */
  .footer {
    background: hsla(0, 0%, 7%, 0.5);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .footer-logo-image {
    max-width: 200px;
    height: auto;
    object-fit: contain;
  }
  
  .social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsla(45, 10%, 95%, 0.6);
    transition: var(--transition);
  }
  
  .social-link:hover {
    color: var(--gold);
    background: hsla(43, 74%, 49%, 0.1);
  }
  
  .copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }
    
    .footer-logo-image {
      max-width: 250px;
    }
  }
  