  /* ==================== CSS Variables ==================== */
    :root {
      --green: #22c55e;
      --green-dark: #16a34a;
      --gold: #d4a418;
      --gold-dark: #b8860b;
      --bg-dark: #0a0f0a;
      --bg-card: #0d1a0d;
      --bg-card-light: #112211;
      --text-primary: #ffffff;
      --text-secondary: #9ca3af;
      --border-color: rgba(34, 197, 94, 0.3);
    }

    /* ==================== Reset & Base ==================== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ==================== Utility Classes ==================== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .text-green {
      color: var(--green);
      filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
    }

    .text-gold {
      color: var(--gold);
      filter: drop-shadow(0 0 10px rgba(212, 164, 24, 0.5));
    }

    .hidden {
      display: none !important;
    }

    /* ==================== Particles Canvas ==================== */
    #particles-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }

    /* ==================== Navbar ==================== */
    .navbar {
      position: fixed;
      top: 1rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 50;
      width: 90%;
      max-width: 900px;
    }

    .navbar-container {
      background: rgba(13, 26, 13, 0.95);
      backdrop-filter: blur(12px);
      border: 2px solid rgba(34, 197, 94, 0.4);
      border-radius: 9999px;
      padding: 0.75rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
    }

    .logo-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }

    .logo-container {
      width: 3.5rem;
      height: 3.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
    }

    .logo-image {
      width: 3.5rem;
      height: 3.5rem;
      object-fit: contain;
      transform-origin: center center;
      transition: transform 0.15s ease-in-out;
    }

    .logo-text {
      font-weight: 700;
      font-size: 1.25rem;
    }

    .nav-links {
      display: none;
      align-items: center;
      gap: 0.25rem;
    }

    @media (min-width: 768px) {
      .nav-links {
        display: flex;
      }
    }

    .nav-link {
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      text-decoration: none;
      color: var(--text-primary);
      border: 1px solid transparent;
      transition: all 0.3s ease;
    }

    .nav-link:hover {
      color: var(--green);
      background: rgba(34, 197, 94, 0.1);
      border-color: rgba(34, 197, 94, 0.5);
      box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
    }

    .nav-link.active {
      color: var(--green);
      font-weight: 500;
      background: rgba(34, 197, 94, 0.1);
      border-color: var(--gold);
      box-shadow: 0 0 10px rgba(212, 164, 24, 0.3);
    }

    .menu-toggle {
      display: block;
      background: none;
      border: none;
      color: var(--text-primary);
      cursor: pointer;
      padding: 0.5rem;
    }

    @media (min-width: 768px) {
      .menu-toggle {
        display: none;
      }
    }

    .menu-icon, .close-icon {
      width: 24px;
      height: 24px;
    }

    .mobile-menu {
      position: absolute;
      top: 100%;
      left:0% ;
      margin-top: 0.5rem;
      background: rgba(13, 26, 13, 0.98);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(#d4a418);
      border-radius: 1rem;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      min-width: 100%;
      box-shadow: 0 10px 30px rgba(232, 228, 1, 0.3);
    }

    .mobile-nav-link {
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      text-decoration: none;
      color: var(--text-primary);
      border: 1px solid transparent;
      transition: all 0.3s ease;
      text-align: center;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.active {
      color: var(--gold);
      background: rgba(212, 164, 24, 0.15);
      border-color: var(--gold);
    }

    /* ==================== Hero Section ==================== */
    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 10;
      padding: 1rem;
    }

    .hero-glow-1 {
      position: absolute;
      top: 25%;
      left: 25%;
      width: 24rem;
      height: 24rem;
      background: rgba(34, 197, 94, 0.1);
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
    }

    .hero-glow-2 {
      position: absolute;
      bottom: 25%;
      right: 25%;
      width: 16rem;
      height: 16rem;
      background: rgba(212, 164, 24, 0.1);
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }

    .hero-content {
      text-align: center;
    }

    .hero-title {
      font-size: 3rem;
      font-weight: 900;
      margin-bottom: 1.5rem;
      min-height: 1.2em;
    }

    @media (min-width: 768px) {
      .hero-title {
        font-size: 6rem;
      }
    }

    .hero-subtitle {
      color: var(--text-secondary);
      font-size: 1rem;
      margin-bottom: 2.5rem;
      max-width: 32rem;
      margin-left: auto;
      margin-right: auto;
      min-height: 1.5em;
    }

    @media (min-width: 768px) {
      .hero-subtitle {
        font-size: 1.25rem;
      }
    }

    .cta-button {
      display: inline-block;
      padding: 1rem 2.5rem;
      border: 2px solid var(--gold);
      color: var(--gold);
      font-weight: 700;
      border-radius: 0.5rem;
      background: rgba(212, 164, 24, 0.1);
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 0 20px rgba(212, 164, 24, 0.3);
    }

    .cta-button:hover {
      background: var(--gold);
      color: var(--bg-dark);
      box-shadow: 0 0 30px rgba(212, 164, 24, 0.6);
    }

    /* Typewriter Cursor */
    .typewriter-cursor {
      display: inline-block;
      width: 3px;
      height: 1em;
      background-color: var(--green);
      margin-left: 2px;
      animation: blink 0.7s infinite;
      vertical-align: text-bottom;
    }

    @keyframes blink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0; }
    }

    /* ==================== Servicios Section ==================== */
    .servicios-section {
      padding: 5rem 0;
      position: relative;
      z-index: 10;
    }

    .section-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: rgba(34, 197, 94, 0.05);
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .section-title {
        font-size: 3rem;
      }
    }

    .section-subtitle {
      color: var(--text-secondary);
      text-align: center;
      margin-bottom: 3rem;
      max-width: 42rem;
      margin-left: auto;
      margin-right: auto;
      font-size: 0.9rem;
    }

    @media (min-width: 768px) {
      .section-subtitle {
        font-size: 1rem;
      }
    }

    .servicios-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 640px) {
      .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .servicios-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .servicio-card {
      background: var(--bg-card);
      border: 2px solid var(--border-color);
      border-radius: 0.75rem;
      padding: 1.5rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .servicio-extra {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: all 0.3s ease;
      margin-top: 0;
    }

    .servicio-card.expanded .servicio-extra {
      max-height: 200px;
      opacity: 1;
      margin-top: 1rem;
    }

    .servicio-card:hover {
      border-color: var(--green);
      box-shadow: 0 0 25px rgba(34, 197, 94, 0.2);
    }

    @media (min-width: 768px) {
      .servicio-card:hover .servicio-extra {
        max-height: 200px;
        opacity: 1;
        margin-top: 1rem;
      }
    }

    .servicio-icon {
      width: 3.5rem;
      height: 3.5rem;
      background: var(--green);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      transition: box-shadow 0.3s ease;
    }

    .servicio-card:hover .servicio-icon {
      box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    }

    .servicio-icon svg {
      width: 1.75rem;
      height: 1.75rem;
      color: var(--bg-dark);
    }

    .servicio-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 0.5rem;
    }

    .servicio-description {
      color: var(--text-secondary);
      font-size: 0.875rem;
    }

    .servicio-line {
      margin-top: 1rem;
      height: 4px;
      width: 3rem;
      background: linear-gradient(to right, var(--green), var(--gold));
      border-radius: 9999px;
      opacity: 0.6;
      transition: all 0.5s ease;
    }

    .servicio-card:hover .servicio-line {
      opacity: 1;
      width: 100%;
    }

    .servicio-more-btn {
      display: none;
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold);
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
      margin-top: 1rem;
      cursor: pointer;
      font-size: 0.75rem;
      transition: all 0.3s ease;
      width: 100%;
      text-align: center;
    }

    .servicio-more-btn:hover {
      background: rgba(212, 164, 24, 0.2);
    }

    @media (max-width: 767px) {
      .servicio-more-btn {
        display: block;
      }
    }

    .servicio-extra p {
      color: var(--text-secondary);
      font-size: 0.8rem;
      line-height: 1.5;
      border-top: 1px solid rgba(34, 197, 94, 0.2);
      padding-top: 0.75rem;
    }

    /* ==================== Proyectos Section ==================== */
    .proyectos-section {
      padding: 5rem 0;
      position: relative;
      z-index: 10;
    }

    .decorative-line-left,
    .decorative-line-right {
      position: absolute;
      top: 0;
      width: 2px;
      height: 100%;
      background: linear-gradient(to bottom, transparent, var(--green), transparent);
      opacity: 0.3;
    }

    .decorative-line-left { left: 0; }
    .decorative-line-right { right: 0; }

    .tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }

    .tab-button {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      border-radius: 9999px;
      border: 2px solid var(--border-color);
      background: transparent;
      color: var(--text-secondary);
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    @media (min-width: 768px) {
      .tab-button {
        font-size: 1rem;
      }
    }

    .tab-button:hover {
      border-color: rgba(34, 197, 94, 0.6);
      color: var(--green);
    }

    .tab-button.active {
      border-color: var(--green);
      background: rgba(34, 197, 94, 0.2);
      color: var(--green);
      box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
    }

    .proyectos-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 640px) {
      .proyectos-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .proyecto-card {
      background: var(--bg-card);
      border: 2px solid var(--border-color);
      border-radius: 0.75rem;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .proyecto-card:hover {
      border-color: var(--green);
      box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
    }

    .proyecto-image {
      height: 12rem;
      background: #1a2e1a;
      position: relative;
      overflow: hidden;
      border-bottom: 2px solid rgba(34, 197, 94, 0.2);
    }

    .proyecto-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.8;
      transition: all 0.5s ease;
    }

    /* Skeleton loader para imágenes */
    .proyecto-image img.loading {
      opacity: 0.3;
    }

    .proyecto-card:hover .proyecto-image img {
      opacity: 1;
      transform: scale(1.05);
    }

    .proyecto-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 15, 10, 0.85);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

   /* ==================== Botones transparentes con estilo original ==================== */

/* Móviles: botones siempre visibles, fondo transparente, estilo original */
@media (max-width: 767px) {
  .proyecto-overlay {
    background: transparent !important;
    backdrop-filter: none !important;
    opacity: 1 !important;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem;
    pointer-events: none;
  }
  
  .proyecto-overlay-btn {
    pointer-events: auto;
  }
  
  /* Botón primario (Ver Demo) - estilo original verde */
  .proyecto-overlay-btn.primary {
    background: var(--green) !important;
    color: var(--bg-dark) !important;
    border: none !important;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5) !important;
    font-weight: 700;
  }
  
  .proyecto-overlay-btn.primary:hover {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.7) !important;
  }
  
  /* Botón secundario (Comprar) - estilo original */
  .proyecto-overlay-btn.secondary {
    background: transparent !important;
    color: var(--green) !important;
    border: 2px solid var(--green) !important;
    font-weight: 600;
  }
  
  .proyecto-overlay-btn.secondary:hover {
    background: rgba(34, 197, 94, 0.1) !important;
  }
  
  /* Ajuste de padding en móvil */
  .proyecto-overlay-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  /* Imagen completamente visible detrás */
  .proyecto-image img {
    opacity: 1 !important;
  }
}

/* Tablet: mantiene hover pero con estilo original */
@media (min-width: 768px) and (max-width: 1024px) {
  .proyecto-overlay {
    background: rgba(10, 15, 10, 0.7);
    backdrop-filter: blur(4px);
  }
  
  .proyecto-overlay-btn.primary {
    background: var(--green);
    color: var(--bg-dark);
    border: none;
  }
  
  .proyecto-overlay-btn.secondary {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
  }
}

/* Desktop: overlay aparece solo al hover con estilo original */
@media (min-width: 1025px) {
  .proyecto-overlay {
    background: rgba(10, 15, 10, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .proyecto-card:hover .proyecto-overlay {
    opacity: 1;
  }
  
  .proyecto-overlay-btn.primary {
    background: var(--green);
    color: var(--bg-dark);
    border: none;
  }
  
  .proyecto-overlay-btn.secondary {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
  }
}

    .proyecto-card:hover .proyecto-overlay {
      opacity: 1;
    }

    .proyecto-overlay-btn {
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      font-size: 0.8rem;
    }

    @media (min-width: 768px) {
      .proyecto-overlay-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
      }
    }

    .proyecto-overlay-btn.primary {
      background: var(--green);
      color: var(--bg-dark);
      border: none;
      box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    }

    .proyecto-overlay-btn.primary:hover {
      box-shadow: 0 0 30px rgba(34, 197, 94, 0.7);
    }

    .proyecto-overlay-btn.secondary {
      background: transparent;
      color: var(--green);
      border: 2px solid var(--green);
    }

    .proyecto-overlay-btn.secondary:hover {
      background: rgba(34, 197, 94, 0.1);
    }

    .proyecto-content {
      padding: 1.5rem;
    }

    .proyecto-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 0.5rem;
      filter: drop-shadow(0 0 10px rgba(212, 164, 24, 0.3));
      cursor: pointer;
      text-decoration: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 4px;
      text-decoration-color: rgba(212, 164, 24, 0.5);
      transition: all 0.3s ease;
      display: inline-block;
    }

    .proyecto-title:hover {
      color: var(--green);
      text-decoration-color: var(--green);
      transform: translateX(5px);
    }

    .proyecto-description {
      color: var(--text-secondary);
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }

    .proyecto-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .proyecto-tag {
      padding: 0.25rem 0.75rem;
      font-size: 0.7rem;
      border: 1px solid var(--green);
      color: var(--green);
      border-radius: 9999px;
      background: rgba(34, 197, 94, 0.1);
    }

    .proyecto-price {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--gold);
      filter: drop-shadow(0 0 10px rgba(212, 164, 24, 0.4));
    }

    /* ==================== Reseñas Section ==================== */
    .resenas-section {
      padding: 5rem 0;
      position: relative;
      z-index: 10;
      overflow: hidden;
    }

    .resenas-glow-1 {
      position: absolute;
      top: 50%;
      left: 25%;
      width: 16rem;
      height: 16rem;
      background: rgba(34, 197, 94, 0.05);
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
      transform: translateY(-50%);
    }

    .resenas-glow-2 {
      position: absolute;
      top: 50%;
      right: 25%;
      width: 16rem;
      height: 16rem;
      background: rgba(212, 164, 24, 0.05);
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
      transform: translateY(-50%);
    }

    .resenas-title {
      background: linear-gradient(90deg, #22c55e, #d4a418);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 2rem;
      font-weight: 900;
    }

    @media (min-width: 768px) {
      .resenas-title {
        font-size: 2.5rem;
      }
    }

    .resenas-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 3rem;
    }

    @media (min-width: 640px) {
      .resenas-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .resenas-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .review-card {
      background: rgba(13, 26, 13, 0.8);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(34, 197, 94, 0.2);
      border-radius: 1rem;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .review-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .review-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
      border-color: rgba(34, 197, 94, 0.5);
    }

    .review-quote p {
      color: #d1d5db;
      font-style: italic;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      font-size: 0.9rem;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .avatar-ring {
      background: linear-gradient(135deg, #22c55e, #d4a418);
      padding: 2px;
      border-radius: 50%;
    }

    .avatar {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background: #0a0f0a;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #22c55e;
      font-weight: 700;
    }

    .author-name {
      color: #fff;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .author-role {
      color: #6b7280;
      font-size: 0.75rem;
    }

    .star-rating {
      display: flex;
      gap: 0.25rem;
      margin-top: 1rem;
    }

    .star {
      width: 1rem;
      height: 1rem;
      fill: #d4a418;
      filter: drop-shadow(0 0 4px rgba(212, 164, 24, 0.5));
      transition: all 0.3s ease;
    }

    /* ==================== Comment Box ==================== */
    .comment-box-wrapper {
      margin-top: 4rem;
      display: flex;
      justify-content: center;
    }

    .comment-box {
      width: 100%;
      max-width: 700px;
      background: linear-gradient(135deg, rgba(13, 26, 13, 0.9) 0%, rgba(10, 20, 10, 0.95) 100%);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(34, 197, 94, 0.3);
      border-radius: 1.5rem;
      padding: 1.5rem;
      position: relative;
    }

    @media (min-width: 768px) {
      .comment-box {
        padding: 2rem;
      }
    }

    .comment-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #22c55e, #d4a418, #22c55e);
      background-size: 200% 100%;
      animation: shimmer 3s linear infinite;
    }

    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }

    .comment-box-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(34, 197, 94, 0.15);
    }

    .comment-box-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: linear-gradient(135deg, #22c55e, #d4a418);
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .comment-box-icon svg {
      width: 1.25rem;
      height: 1.25rem;
      stroke: #0a0f0a;
    }

    .comment-box-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.25rem;
    }

    @media (min-width: 768px) {
      .comment-box-title {
        font-size: 1.25rem;
      }
    }

    .comment-box-subtitle {
      font-size: 0.75rem;
      color: #9ca3af;
    }

    .review-form .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    @media (min-width: 640px) {
      .review-form .form-row {
        grid-template-columns: 1fr 1fr;
      }
    }

    .review-form .form-group {
      margin-bottom: 1rem;
    }

    .review-form label {
      display: block;
      font-size: 0.75rem;
      font-weight: 500;
      color: #d1d5db;
      margin-bottom: 0.5rem;
    }

    .review-form input,
    .review-form textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      background: rgba(10, 15, 10, 0.8);
      border: 1px solid rgba(34, 197, 94, 0.2);
      border-radius: 0.75rem;
      color: #fff;
      font-family: inherit;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }

    .review-form input:focus,
    .review-form textarea:focus {
      outline: none;
      border-color: #22c55e;
      box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
    }

    .star-selector {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .star-select {
      width: 1.5rem;
      height: 1.5rem;
      fill: #374151;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    @media (min-width: 768px) {
      .star-select {
        width: 2rem;
        height: 2rem;
      }
    }

    .star-select.active {
      fill: #d4a418;
      filter: drop-shadow(0 0 6px rgba(212, 164, 24, 0.6));
    }

    .rating-text {
      font-size: 0.75rem;
      color: #9ca3af;
      margin-left: 0.5rem;
    }

    .rating-text.selected {
      color: #d4a418;
      font-weight: 500;
    }

    .submit-review-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      width: 100%;
      padding: 0.875rem 1rem;
      background: linear-gradient(135deg, #f0bd26, #3f3106);
      border: none;
      border-radius: 0.75rem;
      color: #fff;
      font-family: inherit;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 0.5rem;
    }

    .submit-review-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    }

    .new-reviews-container {
      margin-top: 3rem;
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 640px) {
      .new-reviews-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .new-reviews-container {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .new-review-card {
      background: rgba(13, 26, 13, 0.8);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(212, 164, 24, 0.3);
      border-radius: 1rem;
      padding: 1.5rem;
      position: relative;
    }

    .new-review-card::before {
      content: 'NUEVO';
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      font-size: 0.6rem;
      font-weight: 700;
      color: #d4a418;
      background: rgba(212, 164, 24, 0.15);
      padding: 0.2rem 0.5rem;
      border-radius: 0.25rem;
    }

     /* ========================================
       CONTACTO SECTION
       ======================================== */
    .contacto-section {
      padding: 5rem 1rem;
      position: relative;
      z-index: 10;
    }

    .contacto-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    @media (min-width: 1024px) {
      .contacto-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .contacto-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .contacto-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .contacto-icon {
      width: 3.5rem;
      height: 3.5rem;
      background: var(--green);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
      transition: box-shadow 0.3s ease;
    }

    .contacto-item:hover .contacto-icon {
      box-shadow: 0 0 25px rgba(34, 197, 94, 0.6);
    }

    .contacto-icon svg {
      width: 1.75rem;
      height: 1.75rem;
      color: var(--bg-dark);
    }

    .contacto-item h3 {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 0.25rem;
    }

    .contacto-item p {
      color: var(--text-secondary);
    }

    .contacto-form {
      background: var(--bg-card);
      border: 2px solid var(--border-color);
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--green);
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      background: var(--bg-dark);
      border: 2px solid var(--border-color);
      border-radius: 0.5rem;
      color: var(--text-primary);
      font-family: inherit;
      font-size: 1rem;
      transition: all 0.3s ease;
      resize: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #4b5563;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--green);
      box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
    }

    .submit-button {
      width: 100%;
      padding: 1rem 1.5rem;
      background: linear-gradient(135deg, #f0bd26, #3f3106);;
      color: white;
      font-weight: 700;
      font-size: 1.125rem;
      border: none;
      border-radius: 0.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: box-shadow 0.3s ease;
    }

    .submit-button:hover {
      box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
    }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
      padding: 2rem 1rem;
      border-top: 2px solid var(--border-color);
      background: var(--bg-dark);
      position: relative;
      z-index: 10;
    }

    .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .footer-content {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    .copyright {
      color: #6b7280;
      font-size: 0.875rem;
    }

    .social-links {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .social-link {
      color: rgba(34, 197, 94, 0.6);
      transition: all 0.3s ease;
    }

    .social-link:hover {
      color: var(--green);
      filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.5));
    }

    /* ==================== Modales ==================== */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.95);
      backdrop-filter: blur(8px);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }
    .modal.active {
      display: flex;
    }
    .modal-container {
      background: var(--bg-card);
      border: 2px solid var(--green);
      border-radius: 1rem;
      width: 90%;
      max-width: 500px;
      padding: 1.5rem;
      position: relative;
      text-align: center;
    }
    .modal-container.large {
      max-width: 1300px;
      width: 95%;
      height: 85vh;
      padding: 0;
      display: flex;
      flex-direction: column;
    }
    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      border-bottom: 1px solid var(--green);
    }
    .modal-header h3 {
      color: var(--gold);
      font-size: 1rem;
    }
    .close-modal {
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
    }
    .iframe-wrapper {
      flex: 1;
    }
    .iframe-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    .modal-input {
      width: 100%;
      padding: 0.75rem;
      margin: 1rem 0;
      background: var(--bg-dark);
      border: 1px solid var(--green);
      border-radius: 0.5rem;
      color: white;
    }
    .modal-button {
      background: var(--green);
      color: var(--bg-dark);
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      font-weight: bold;
      cursor: pointer;
    }
    .error-message {
      color: #ff6b6b;
      font-size: 0.75rem;
      margin-top: 0.5rem;
    }


    /* ==================== Nosotros Section ==================== */
.nosotros-section {
  padding: 5rem 0;
  position: relative;
  z-index: 10;
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .nosotros-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.nosotros-card {
  background: rgba(13, 26, 13, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.nosotros-card:hover {
  border-color: rgba(212, 164, 24, 0.5);
  transform: translateY(-5px);
}

.nosotros-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--green), var(--gold));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.nosotros-icon svg {
  width: 1.8rem;
  height: 1.8rem;
  stroke: var(--bg-dark);
  stroke-width: 1.8;
}

.nosotros-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.nosotros-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.nosotros-valores {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.valor-item {
  background: rgba(13, 26, 13, 0.4);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.valor-item:hover {
  border-color: var(--gold);
  background: rgba(212, 164, 24, 0.05);
}

.valor-item h4 {
  color: var(--green);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.valor-item p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.5;
}