    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
    
    body {
        font-family: 'Inter', sans-serif;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        color: #334155;
        min-height: 100vh;
    }
    
    .logo-wptube {
        color: #B22222;
        font-weight: 700;
    }
    
    .logo-bot {
        color: #1e293b;
        font-weight: 700;
    }
    
    .card-bg {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
    
    .platform-icon {
        transition: all 0.3s ease;
    }
    
    .platform-icon:hover {
        transform: translateY(-5px);
    }
    
    .input-field {
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(178, 34, 34, 0.2);
        transition: all 0.3s ease;
    }
    
    .input-field:focus {
        border-color: rgba(178, 34, 34, 0.5);
        box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.1);
    }
    
    .btn-primary {
        background: linear-gradient(90deg, #B22222 0%, #9A1A1A 100%);
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        background: linear-gradient(90deg, #9A1A1A 0%, #B22222 100%);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(178, 34, 34, 0.3);
    }
    
    .btn-secondary {
        background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 100%);
        color: #334155;
        border: 1px solid #cbd5e1;
        transition: all 0.3s ease;
    }
    
    .btn-secondary:hover {
        background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 100%);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .feature-card {
        transition: all 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .download-btn {
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(178, 34, 34, 0.7);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(178, 34, 34, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(178, 34, 34, 0);
        }
    }
    
    .available-badge {
        animation: gentle-pulse 3s infinite;
    }
    
    @keyframes gentle-pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(178, 34, 34, 0.3);
        }
        70% {
            box-shadow: 0 0 0 8px rgba(178, 34, 34, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(178, 34, 34, 0);
        }
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(90deg, #B22222 0%, #9A1A1A 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: white;
        margin-right: 15px;
    }
    
    .testimonial-card {
        transition: all 0.3s ease;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    /* Header fix - completamente transparente inicialmente */
    #main-header {
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }
    
    .header-scrolled {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
    
    .nav-link {
        position: relative;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #B22222;
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .floating-shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(178, 34, 34, 0.05);
        z-index: -1;
    }
    
    /* Badge "Beta" (exacto al de page.php) */
    .badge-beta {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 22px;
        padding: 0 10px;
        margin-left: 6px;
        border-radius: 999px;
        border: 1px solid rgba(178,34,34,.35);
        background:
            linear-gradient(135deg, rgba(178,34,34,.12) 0%, rgba(178,34,34,.22) 100%),
            #fff;
        color: #B22222;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .04em;
        text-transform: uppercase;
        line-height: 1;
        box-shadow: 0 1px 2px rgba(0,0,0,.04), inset 0 0 0 1px rgba(255,255,255,.5);
        user-select: none;
    }
    .badge-beta::before {
        content: "";
        width: 6px; 
        height: 6px;
        border-radius: 999px;
        background: #B22222;
        box-shadow: 0 0 0 3px rgba(178,34,34,.15);
        margin-right: 6px;
        display: inline-block;
    }
    .badge-beta::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.6) 20%, transparent 40%);
        transform: translateX(-120%);
        pointer-events: none;
        mix-blend-mode: screen;
        animation: betaSheen 2.8s ease-in-out infinite;
    }
    @keyframes betaSheen {
        0% { transform: translateX(-120%); }
        60% { transform: translateX(140%); }
        100% { transform: translateX(140%); }
    }
    @media (prefers-reduced-motion: reduce) {
        .badge-beta::after { animation: none; }
    }

    /* ===== Alignment fix for badge next to logo ===== */
    .logo-container {
        display: flex;
        align-items: center;
    }
    
    .logo-text {
        display: flex;
        align-items: center;
    }
    
    .badge-beta {
        align-self: center;
        margin-left: 8px;
    }
    
    /* Botón de descarga en móvil */
    .mobile-download-btn {
        display: none;
    }
    
    /* Modal styles */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .modal-content {
        background: white;
        border-radius: 16px;
        padding: 30px;
        max-width: 600px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }
    
    .modal-overlay.active .modal-content {
        transform: translateY(0);
    }
    
    .modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #666;
        transition: color 0.3s ease;
    }
    
    .modal-close:hover {
        color: #B22222;
    }
    
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        border-radius: 8px;
        margin-bottom: 20px;
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .thank-you-icon {
        font-size: 64px;
        color: #B22222;
        margin-bottom: 20px;
    }
    
    @media (max-width: 767px) {
        .desktop-download-btn {
            display: none;
        }
        
        .mobile-download-btn {
            display: flex;
            width: 100%;
            justify-content: center;
            margin-top: 16px;
        }
        
        .modal-content {
            padding: 20px;
            width: 95%;
        }
    }
	
	
	
	
/*! tailwindcss v4.1.16 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Noto Color Emoji';
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
    monospace;
    --color-yellow-400: oklch(85.2% 0.199 91.936);
    --color-gray-300: oklch(87.2% 0.01 258.338);
    --color-gray-500: oklch(55.1% 0.027 264.364);
    --color-gray-600: oklch(44.6% 0.03 256.802);
    --color-gray-700: oklch(37.3% 0.034 259.733);
    --color-white: #fff;
    --spacing: 0.25rem;
    --container-4xl: 56rem;
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji');
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type='button'], [type='reset'], [type='submit']), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden='until-found'])) {
    display: none!important;
  }
}
@layer utilities {
  .absolute {
    position: absolute;
  }
  .fixed {
    position: fixed;
  }
  .relative {
    position: relative;
  }
  .-top-32 {
    top: calc(var(--spacing) * -32);
  }
  .-right-48 {
    right: calc(var(--spacing) * -48);
  }
  .-bottom-48 {
    bottom: calc(var(--spacing) * -48);
  }
  .-left-32 {
    left: calc(var(--spacing) * -32);
  }
  .z-50 {
    z-index: 50;
  }
  .container {
    width: 100%;
    @media (width >= 40rem) {
      max-width: 40rem;
    }
    @media (width >= 48rem) {
      max-width: 48rem;
    }
    @media (width >= 64rem) {
      max-width: 64rem;
    }
    @media (width >= 80rem) {
      max-width: 80rem;
    }
    @media (width >= 96rem) {
      max-width: 96rem;
    }
  }
  .mx-auto {
    margin-inline: auto;
  }
  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }
  .mr-1 {
    margin-right: calc(var(--spacing) * 1);
  }
  .mr-2 {
    margin-right: calc(var(--spacing) * 2);
  }
  .mr-3 {
    margin-right: calc(var(--spacing) * 3);
  }
  .mr-4 {
    margin-right: calc(var(--spacing) * 4);
  }
  .mb-1 {
    margin-bottom: calc(var(--spacing) * 1);
  }
  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }
  .mb-3 {
    margin-bottom: calc(var(--spacing) * 3);
  }
  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }
  .mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
  }
  .mb-10 {
    margin-bottom: calc(var(--spacing) * 10);
  }
  .mb-12 {
    margin-bottom: calc(var(--spacing) * 12);
  }
  .mb-16 {
    margin-bottom: calc(var(--spacing) * 16);
  }
  .block {
    display: block;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .inline-block {
    display: inline-block;
  }
  .h-10 {
    height: calc(var(--spacing) * 10);
  }
  .h-12 {
    height: calc(var(--spacing) * 12);
  }
  .h-14 {
    height: calc(var(--spacing) * 14);
  }
  .h-64 {
    height: calc(var(--spacing) * 64);
  }
  .h-96 {
    height: calc(var(--spacing) * 96);
  }
  .min-h-screen {
    min-height: 100vh;
  }
  .w-10 {
    width: calc(var(--spacing) * 10);
  }
  .w-12 {
    width: calc(var(--spacing) * 12);
  }
  .w-14 {
    width: calc(var(--spacing) * 14);
  }
  .w-64 {
    width: calc(var(--spacing) * 64);
  }
  .w-96 {
    width: calc(var(--spacing) * 96);
  }
  .w-full {
    width: 100%;
  }
  .max-w-4xl {
    max-width: var(--container-4xl);
  }
  .flex-grow {
    flex-grow: 1;
  }
  .flex-col {
    flex-direction: column;
  }
  .items-center {
    align-items: center;
  }
  .items-start {
    align-items: flex-start;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }
  .gap-6 {
    gap: calc(var(--spacing) * 6);
  }
  .space-y-2 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
      margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .space-y-4 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
      margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .space-y-6 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
      margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .space-x-3 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(calc(var(--spacing) * 3) * var(--tw-space-x-reverse));
      margin-inline-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-x-reverse)));
    }
  }
  .space-x-6 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(calc(var(--spacing) * 6) * var(--tw-space-x-reverse));
      margin-inline-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-x-reverse)));
    }
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .rounded-2xl {
    border-radius: var(--radius-2xl);
  }
  .rounded-full {
    border-radius: calc(infinity * 1px);
  }
  .rounded-lg {
    border-radius: var(--radius-lg);
  }
  .rounded-xl {
    border-radius: var(--radius-xl);
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-t {
    border-top-style: var(--tw-border-style);
    border-top-width: 1px;
  }
  .border-gray-300 {
    border-color: var(--color-gray-300);
  }
  .p-6 {
    padding: calc(var(--spacing) * 6);
  }
  .p-8 {
    padding: calc(var(--spacing) * 8);
  }
  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }
  .px-5 {
    padding-inline: calc(var(--spacing) * 5);
  }
  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }
  .px-8 {
    padding-inline: calc(var(--spacing) * 8);
  }
  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }
  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }
  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }
  .py-12 {
    padding-block: calc(var(--spacing) * 12);
  }
  .pt-12 {
    padding-top: calc(var(--spacing) * 12);
  }
  .pt-32 {
    padding-top: calc(var(--spacing) * 32);
  }
  .pb-12 {
    padding-bottom: calc(var(--spacing) * 12);
  }
  .text-center {
    text-align: center;
  }
  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }
  .text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
  }
  .text-4xl {
    font-size: var(--text-4xl);
    line-height: var(--tw-leading, var(--text-4xl--line-height));
  }
  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }
  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }
  .text-xl {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }
  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }
  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }
  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }
  .text-gray-500 {
    color: var(--color-gray-500);
  }
  .text-gray-600 {
    color: var(--color-gray-600);
  }
  .text-gray-700 {
    color: var(--color-gray-700);
  }
  .text-white {
    color: var(--color-white);
  }
  .text-yellow-400 {
    color: var(--color-yellow-400);
  }
  .antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .duration-300 {
    --tw-duration: 300ms;
    transition-duration: 300ms;
  }
  .sm\:flex-row {
    @media (width >= 40rem) {
      flex-direction: row;
    }
  }
  .md\:mb-0 {
    @media (width >= 48rem) {
      margin-bottom: calc(var(--spacing) * 0);
    }
  }
  .md\:flex {
    @media (width >= 48rem) {
      display: flex;
    }
  }
  .md\:hidden {
    @media (width >= 48rem) {
      display: none;
    }
  }
  .md\:w-1\/2 {
    @media (width >= 48rem) {
      width: calc(1/2 * 100%);
    }
  }
  .md\:grid-cols-2 {
    @media (width >= 48rem) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .md\:flex-row {
    @media (width >= 48rem) {
      flex-direction: row;
    }
  }
  .md\:p-12 {
    @media (width >= 48rem) {
      padding: calc(var(--spacing) * 12);
    }
  }
  .md\:pl-10 {
    @media (width >= 48rem) {
      padding-left: calc(var(--spacing) * 10);
    }
  }
  .md\:text-right {
    @media (width >= 48rem) {
      text-align: right;
    }
  }
  .md\:text-5xl {
    @media (width >= 48rem) {
      font-size: var(--text-5xl);
      line-height: var(--tw-leading, var(--text-5xl--line-height));
    }
  }
  .lg\:grid-cols-3 {
    @media (width >= 64rem) {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
}
@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-space-x-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}
@property --tw-duration {
  syntax: "*";
  inherits: false;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-space-y-reverse: 0;
      --tw-space-x-reverse: 0;
      --tw-border-style: solid;
      --tw-font-weight: initial;
      --tw-duration: initial;
    }
  }
}
	
:root {

  --color-light-100: #f8fafc;
  --color-light-200: #f1f5f9;
  --color-light-300: #e2e8f0;

  --color-accent-red: #b22222;
  --color-accent-red-dark: #9a1a1a;
}

.bg-light-100 { background-color: var(--color-light-100); }
.bg-light-200 { background-color: var(--color-light-200); }
.bg-light-300 { background-color: var(--color-light-300); }

.bg-accent-red { background-color: var(--color-accent-red); }
.bg-accent-red-dark { background-color: var(--color-accent-red-dark); }

.text-light-100 { color: var(--color-light-100); }
.text-light-200 { color: var(--color-light-200); }
.text-light-300 { color: var(--color-light-300); }

.text-accent-red { color: var(--color-accent-red); }
.text-accent-red-dark { color: var(--color-accent-red-dark); }

.border-light-100 { border-color: var(--color-light-100); }
.border-light-200 { border-color: var(--color-light-200); }
.border-light-300 { border-color: var(--color-light-300); }

.border-accent-red { border-color: var(--color-accent-red); }
.border-accent-red-dark { border-color: var(--color-accent-red-dark); }
	
.bg-accent-red\/10 {
  background-color: rgba(178, 34, 34, 0.1) !important;
}

.text-accent-red {
  color: #b22222 !important;
}

.w-12 { width: 3rem !important; }
.h-12 { height: 3rem !important; }
.rounded-full { border-radius: 9999px !important; }
.flex { display: flex !important; }
.items-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.mr-3 { margin-right: 0.75rem !important; }
.text-xl { font-size: 1.25rem !important; }

.text-accent-red.font-semibold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;                        
  height: 2.6rem;                    
  border-radius: 50%;
  background-color: rgba(178, 34, 34, 0.1);
  color: #b22222 !important;
  font-weight: 600 !important;
  font-size: 1.1rem;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
}

.border-accent-red\/20 {
  border-color: rgba(178, 34, 34, 0.2) !important; 
}
	

@media (max-width: 768px) {
  .badge-beta {
    display: none !important;
  }
}
/* === Step numbers === */
.step-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 50%;
  background-color: var(--accent-color, #b22222);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1rem;
}

/* Asegura que sigan siendo perfectamente redondos en móvil */
@media (max-width: 768px) {
  .step-number {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    border-radius: 50%;
  }
}

		
/* ===== Supported Sites Section ===== */
.supported-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 22px;
  justify-items: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.supported-bubble {
  position: relative;
  background: rgba(178, 34, 34, 0.05);
  border: 1px solid rgba(178, 34, 34, 0.1);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.supported-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ocupa todo el círculo sin deformarse */
  object-position: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 50%;
}

.supported-bubble:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(178, 34, 34, 0.15);
}

.supported-bubble:hover img {
  transform: scale(1.08);
  opacity: 1;
}

@media (max-width: 640px) {
  .supported-bubble {
    width: 70px;
    height: 70px;
  }
}


/* Footer link spacing + hover color */
.footer-links a {
  margin: 0 8px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--accent-color, #b22222);
}

/* Center links on mobile */
@media (max-width: 768px) {
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    margin-bottom: 10px;
  }
}





/* ===== Early Version Notice ===== */
.early-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(178, 34, 34, 0.05);
  border: 1px solid rgba(178, 34, 34, 0.25);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 40px auto;
  transition: all 0.25s ease;
}

.early-alert:hover {
  border-color: rgba(178, 34, 34, 0.4);
  box-shadow: 0 5px 16px rgba(178, 34, 34, 0.1);
  transform: translateY(-2px);
}

.early-alert-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(178, 34, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.early-alert-icon i {
  color: #b22222;
  font-size: 20px;
}

.early-alert-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: #b22222;
  margin-bottom: 4px;
}

.early-alert-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 600px) {
  .early-alert {
    flex-direction: column;
    text-align: center;
    padding: 16px 18px;
  }

  .early-alert-icon {
    margin: 0 auto 10px;
  }
}

.feedback-link {
  color: #b22222;
  font-weight: 600;
  text-decoration: none;
  margin-left: 6px;
  transition: color 0.25s ease, text-decoration 0.25s ease;
}

.feedback-link:hover {
  color: #8b1a1a;
  text-decoration: underline;
}
		