    /* ========================================
       CSS Variables & Reset
    ======================================== */
    :root {
      --background: #fafafa;
      --foreground: #171717;
      --card: #ffffff;
      --card-foreground: #171717;
      --primary: #171717;
      --primary-foreground: #fafafa;
      --secondary: #f5f5f5;
      --secondary-foreground: #171717;
      --muted: #f5f5f5;
      --muted-foreground: #737373;
      --accent: #8b5cf6;
      --accent-light: rgba(139, 92, 246, 0.1);
      --border: #e5e5e5;
      --radius: 0.5rem;
      --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
      --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
      --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
      --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    }

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    /* ========================================
       Utilities
    ======================================== */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* ========================================
       Buttons
    ======================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      font-weight: 500;
      border-radius: var(--radius);
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .btn-primary {
      background-color: var(--primary);
      color: var(--primary-foreground);
      border-color: var(--primary);
    }

    .btn-primary:hover {
      opacity: 0.9;
    }

    .btn-outline {
      background-color: transparent;
      color: var(--foreground);
      border-color: var(--border);
    }

    .btn-outline:hover {
      background-color: var(--secondary);
    }

    .btn-lg {
      padding: 1rem 2rem;
      font-size: 1rem;
    }

    /* ========================================
       Header
    ======================================== */
    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background-color: rgba(250, 250, 250, 0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 4rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.25rem;
      font-weight: 700;
    }

    .logo-icon {
      width: 2rem;
      height: 2rem;
      background-color: var(--foreground);
      border-radius: 0.375rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-icon svg {
      width: 1.25rem;
      height: 1.25rem;
      color: white;
    }

    .nav-desktop {
      display: none;
    }

    .nav-desktop ul {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .nav-desktop a {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      transition: color 0.2s;
    }

    .nav-desktop a:hover {
      color: var(--foreground);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .btn-header {
      display: none;
    }

    .mobile-menu-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      background: none;
      border: none;
      cursor: pointer;
    }

    .mobile-menu-btn svg {
      width: 1.5rem;
      height: 1.5rem;
    }

    @media (min-width: 768px) {
      .nav-desktop {
        display: block;
      }
      .btn-header {
        display: inline-flex;
      }
      .mobile-menu-btn {
        display: none;
      }
    }

    /* ========================================
       Hero Section
    ======================================== */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 4rem 1rem;
    }

    .hero-grid {
      display: grid;
      gap: 3rem;
      align-items: center;
    }

    .hero-content {
      text-align: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 1rem;
      background-color: var(--secondary);
      border: 1px solid var(--border);
      border-radius: 9999px;
      font-size: 0.875rem;
      margin-bottom: 1.5rem;
    }

    .hero-badge svg {
      width: 1rem;
      height: 1rem;
      color: var(--accent);
    }

    .hero-badge span {
      color: var(--muted-foreground);
    }

    .hero h1 {
      font-size: 2.25rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      text-wrap: balance;
    }

    .hero-highlight {
      position: relative;
      display: inline;
    }

    .hero-highlight::after {
      content: '';
      position: absolute;
      bottom: 0.25rem;
      left: 0;
      width: 100%;
      height: 0.75rem;
      background-color: var(--accent-light);
      z-index: -1;
    }

    .hero p {
      font-size: 1.125rem;
      color: var(--muted-foreground);
      margin-bottom: 2rem;
      max-width: 32rem;
      margin-left: auto;
      margin-right: auto;
      text-wrap: pretty;
    }

    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }

    .hero-note {
      margin-top: 1.5rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .hero-image {
      position: relative;
    }

    .hero-image-wrapper {
      position: relative;
      aspect-ratio: 4/3;
      max-width: 32rem;
      margin: 0 auto;
      border-radius: 1rem;
      border: 1px solid var(--border);
      background-color: var(--card);
      box-shadow: var(--shadow-xl);
      overflow: hidden;
    }

    .hero-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-floating-badge {
      position: absolute;
      bottom: -1rem;
      left: -1rem;
      background-color: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      padding: 0.75rem 1rem;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .hero-floating-badge .score-circle {
      width: 2.5rem;
      height: 2.5rem;
      background-color: #dcfce7;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #16a34a;
    }

    .hero-floating-badge .score-text p:first-child {
      font-size: 0.875rem;
      font-weight: 500;
    }

    .hero-floating-badge .score-text p:last-child {
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    .hero-bg {
      position: absolute;
      top: -10rem;
      right: 0;
      width: 37.5rem;
      height: 37.5rem;
      background-color: var(--accent-light);
      border-radius: 50%;
      filter: blur(64px);
      z-index: -1;
      pointer-events: none;
    }

    @media (min-width: 640px) {
      .hero-buttons {
        flex-direction: row;
        justify-content: center;
      }
    }

    @media (min-width: 768px) {
      .hero {
        padding: 6rem 1.5rem;
      }
      .hero h1 {
        font-size: 3rem;
      }
      .hero-highlight::after {
        height: 1rem;
      }
    }

    @media (min-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
      }
      .hero-content {
        text-align: left;
      }
      .hero p {
        margin-left: 0;
        margin-right: 0;
      }
      .hero-buttons {
        justify-content: flex-start;
      }
      .hero h1 {
        font-size: 3.5rem;
      }
      .hero-image-wrapper {
        max-width: none;
      }
    }

    /* ========================================
       Stats Section
    ======================================== */
    .stats {
      padding: 3rem 1rem;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      text-align: center;
    }

    .stat-item h3 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .stat-item p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    @media (min-width: 768px) {
      .stats-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .stat-item h3 {
        font-size: 2.5rem;
      }
    }

    /* ========================================
       Features Section
    ======================================== */
    .features {
      padding: 5rem 1rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-header h2 {
      font-size: 1.875rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-wrap: balance;
    }

    .section-header p {
      font-size: 1.125rem;
      color: var(--muted-foreground);
      max-width: 42rem;
      margin: 0 auto;
    }

    .features-grid {
      display: grid;
      gap: 1.5rem;
    }

    .feature-card {
      padding: 1.5rem;
      background-color: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: box-shadow 0.2s;
    }

    .feature-card:hover {
      box-shadow: var(--shadow-lg);
    }

    .feature-icon {
      width: 3rem;
      height: 3rem;
      background-color: var(--secondary);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .feature-icon svg {
      width: 1.5rem;
      height: 1.5rem;
      color: var(--foreground);
    }

    .feature-card h3 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .feature-card p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .features {
        padding: 7rem 1.5rem;
      }
      .section-header h2 {
        font-size: 2.25rem;
      }
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* ========================================
       How It Works Section
    ======================================== */
    .how-it-works {
      padding: 5rem 1rem;
      background-color: var(--secondary);
    }

    .how-it-works-grid {
      display: grid;
      gap: 3rem;
      align-items: center;
    }

    .how-it-works-image {
      order: 2;
    }

    .how-it-works-image-wrapper {
      position: relative;
      aspect-ratio: 1/1;
      max-width: 28rem;
      margin: 0 auto;
      border-radius: 1rem;
      overflow: hidden;
    }

    .how-it-works-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .how-it-works-steps {
      order: 1;
    }

    .steps-list {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .step-item {
      display: flex;
      gap: 1rem;
      position: relative;
    }

    .step-number {
      width: 3.5rem;
      height: 3.5rem;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--foreground);
      border-radius: 50%;
      background-color: var(--background);
      font-size: 1.25rem;
      font-weight: 700;
    }

    .step-content {
      padding-top: 0.5rem;
    }

    .step-content h3 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .step-content p {
      color: var(--muted-foreground);
    }

    .step-line {
      position: absolute;
      left: 1.75rem;
      top: 4rem;
      width: 1px;
      height: 2rem;
      background-color: var(--border);
    }

    @media (min-width: 768px) {
      .how-it-works {
        padding: 7rem 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .how-it-works-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
      }
      .how-it-works-image {
        order: 1;
      }
      .how-it-works-steps {
        order: 2;
      }
    }

    /* ========================================
       Report Preview Section
    ======================================== */
    .report-preview {
      padding: 5rem 1rem;
    }

    .report-header-grid {
      display: grid;
      gap: 2rem;
      align-items: center;
      margin-bottom: 3rem;
    }

    .report-image-wrapper {
      position: relative;
      aspect-ratio: 4/3;
      border-radius: 1rem;
      overflow: hidden;
    }

    .report-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .report-content h2 {
      font-size: 1.875rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-wrap: balance;
    }

    .report-content > p {
      font-size: 1.125rem;
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
    }

    .report-features {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .report-features li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .report-features svg {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--accent);
      flex-shrink: 0;
    }

    .report-card {
      max-width: 48rem;
      margin: 0 auto;
      background-color: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      padding: 1rem;
      box-shadow: var(--shadow-xl);
    }

    .report-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: 1rem;
    }

    .report-card-header .label {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .report-card-header .value {
      font-size: 1.875rem;
      font-weight: 700;
    }

    .report-card-header .value.error {
      color: #ef4444;
    }

    .report-items {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .report-item {
      display: flex;
      gap: 0.75rem;
      padding: 0.75rem;
      background-color: var(--background);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: background-color 0.2s;
    }

    .report-item:hover {
      background-color: var(--secondary);
    }

    .report-item svg {
      width: 1.25rem;
      height: 1.25rem;
      flex-shrink: 0;
      margin-top: 0.125rem;
    }

    .report-item svg.icon-error {
      color: #ef4444;
    }

    .report-item svg.icon-warning {
      color: #f59e0b;
    }

    .report-item svg.icon-success {
      color: #22c55e;
    }

    .report-item-content h4 {
      font-weight: 500;
      margin-bottom: 0.25rem;
    }

    .report-item-content p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    @media (min-width: 768px) {
      .report-preview {
        padding: 7rem 1.5rem;
      }
      .report-header-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
      .report-content h2 {
        font-size: 2.25rem;
      }
      .report-card {
        padding: 1.5rem;
      }
    }

    /* ========================================
       Testimonials Section
    ======================================== */
    .testimonials {
      padding: 5rem 1rem;
      background-color: var(--secondary);
    }

    .testimonials-grid {
      display: grid;
      gap: 1.5rem;
    }

    .testimonial-card {
      background-color: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
    }

    .testimonial-stars {
      display: flex;
      gap: 0.25rem;
      margin-bottom: 1rem;
    }

    .testimonial-stars svg {
      width: 1.25rem;
      height: 1.25rem;
      fill: #facc15;
      color: #facc15;
    }

    .testimonial-card blockquote {
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      color: var(--foreground);
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .testimonial-avatar {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      overflow: hidden;
    }

    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .testimonial-info h4 {
      font-weight: 600;
      font-size: 0.875rem;
    }

    .testimonial-info p {
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    @media (min-width: 768px) {
      .testimonials {
        padding: 7rem 1.5rem;
      }
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* ========================================
       Pricing Section
    ======================================== */
    .pricing {
      padding: 5rem 1rem;
    }

    .pricing-grid {
      display: grid;
      gap: 1.5rem;
      max-width: 64rem;
      margin: 0 auto;
    }

    .pricing-card {
      background-color: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
    }

    .pricing-card.featured {
      border-color: var(--foreground);
      border-width: 2px;
      position: relative;
    }

    .pricing-badge {
      position: absolute;
      top: -0.75rem;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--foreground);
      color: var(--background);
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 500;
    }

    .pricing-header {
      margin-bottom: 1.5rem;
    }

    .pricing-header h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .pricing-header p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .pricing-price {
      margin-bottom: 1.5rem;
    }

    .pricing-price .amount {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .pricing-price .period {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .pricing-features {
      flex: 1;
      margin-bottom: 1.5rem;
    }

    .pricing-features ul {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.875rem;
    }

    .pricing-features svg {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--foreground);
      flex-shrink: 0;
      margin-top: 0.125rem;
    }

    .pricing-card .btn {
      width: 100%;
    }

    @media (min-width: 768px) {
      .pricing {
        padding: 7rem 1.5rem;
      }
      .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
      }
      .pricing-card {
        padding: 2rem;
      }
    }

    /* ========================================
       CTA Section
    ======================================== */
    .cta {
      position: relative;
      padding: 5rem 1rem;
      background-color: var(--foreground);
      color: var(--background);
      overflow: hidden;
    }

    .cta-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: 0.1;
    }

    .cta-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cta-content {
      position: relative;
      z-index: 1;
      max-width: 48rem;
      margin: 0 auto;
      text-align: center;
    }

    .cta h2 {
      font-size: 1.875rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-wrap: balance;
    }

    .cta > .cta-content > p {
      font-size: 1.125rem;
      color: rgba(250, 250, 250, 0.7);
      margin-bottom: 2rem;
    }

    .cta-form {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      max-width: 32rem;
      margin: 0 auto;
    }

    .cta-form input {
      height: 3rem;
      padding: 0 1rem;
      border-radius: var(--radius);
      border: 1px solid rgba(250, 250, 250, 0.2);
      background-color: rgba(250, 250, 250, 0.1);
      color: var(--background);
      font-size: 1rem;
    }

    .cta-form input::placeholder {
      color: rgba(250, 250, 250, 0.5);
    }

    .cta-form input:focus {
      outline: none;
      border-color: rgba(250, 250, 250, 0.4);
    }

    .cta-form .btn {
      background-color: var(--background);
      color: var(--foreground);
    }

    .cta-form .btn:hover {
      opacity: 0.9;
    }

    .cta-note {
      margin-top: 1.5rem;
      font-size: 0.875rem;
      color: rgba(250, 250, 250, 0.6);
    }

    .cta-brands {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(250, 250, 250, 0.1);
    }

    .cta-brands p {
      font-size: 0.875rem;
      color: rgba(250, 250, 250, 0.5);
      margin-bottom: 1.5rem;
    }

    .cta-brand-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
    }

    .cta-brand-list span {
      font-size: 1.125rem;
      font-weight: 600;
      color: rgba(250, 250, 250, 0.4);
    }

    @media (min-width: 640px) {
      .cta-form {
        flex-direction: row;
      }
      .cta-form input {
        flex: 1;
      }
    }

    @media (min-width: 768px) {
      .cta {
        padding: 7rem 1.5rem;
      }
      .cta h2 {
        font-size: 2.25rem;
      }
    }

    /* ========================================
       Footer
    ======================================== */
    .footer {
      padding: 3rem 1rem;
      border-top: 1px solid var(--border);
    }

    .footer-grid {
      display: grid;
      gap: 2rem;
    }

    .footer-brand .logo {
      margin-bottom: 1rem;
    }

    .footer-brand > p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      max-width: 20rem;
    }

    .footer-links h4 {
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .footer-links ul {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-links a {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--foreground);
    }

    .footer-bottom {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      text-align: center;
    }

    .footer-bottom p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .footer-social {
      display: flex;
      gap: 1rem;
    }

    .footer-social a {
      width: 2rem;
      height: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted-foreground);
      transition: color 0.2s;
    }

    .footer-social a:hover {
      color: var(--foreground);
    }

    .footer-social svg {
      width: 1.25rem;
      height: 1.25rem;
    }

    @media (min-width: 640px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 768px) {
      .footer {
        padding: 4rem 1.5rem;
      }
      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
      }
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    /* Ejemplo para estilos-front.css */
@media (max-width: 768px) {
  /* Ocultar menú por defecto en móvil */
  .nav-desktop {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    /* otros estilos de posicionamiento */
  }

  /* Mostrar menú cuando tenga la clase active */
  .nav-desktop.active {
    display: block; /* o flex, según tu layout */
    border-bottom: #bdbdbd 1px solid;
    ul{
      flex-direction: column;
      justify-content: center;
      gap: 1.5rem;
      li{
        padding: 15px;  
        border-bottom: #bdbdbd 1px solid; 
      }
      :first-child{
          padding-top: 25px;
        }
      :last-child{
          padding-bottom: 25px;
          border-bottom: none
        }  
    }
  }
}

/* Aseguramos que los iconos tengan el tamaño correcto */
.mobile-menu-btn svg {
  width: 24px;  /* Ajusta según tu diseño */
  height: 24px;
}

/* --- Lógica del intercambio --- */

/* 1. Por defecto, ocultamos la X (icon-close) */
.mobile-menu-btn .icon-close {
  display: none;
}

/* 2. Cuando el botón tiene la clase .active (menú abierto): */

/* Ocultamos la hamburguesa */
.mobile-menu-btn.active .icon-hamburger {
  display: none;
}

/* Y mostramos la X */
.mobile-menu-btn.active .icon-close {
  display: block;
}