  /* Aplicar fuentes del sitio */
    h1, h2, h3, h4 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      margin: 0 0 1rem 0;
    }

    p, span, li, a, label, input, textarea, button {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
    }

    /* Hero Section KIT BOXES */
    .kit-boxes-hero {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                  url('/assets/slider/nave-industrial-exterior.jpeg');
      background-size: cover;
      background-position: center;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      margin-top: 120px;
      padding: 10%;
    }

    .kit-boxes-hero-background {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                  url('/assets/img/kits/kit-tinglado.png');
                  background-size: cover;
                  background-position: center;
    }

    .kit-boxes-hero-background-2 {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                  url('/assets/img/kits/tinglado-modular.png');
                  background-size: cover;
                  background-position: center;
    }
      
    .galpones-hero-background-2 {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                  url('/assets/img/kits/galpones.jpeg');
                  background-size: cover; /* ocupa el 100% del alto */
                  background-repeat: no-repeat;
                  background-position: center center;
                  height: 80vh; /* reducido de 100vh a 80vh */
                  min-height: 600px;
    }

    
    .kit-boxes-hero-background-3 {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                  url('/assets/img/kits/kit-boxes.png');
                  background-size: cover;
                  background-position: center;
    }

    .kit-boxes-hero-background-4 {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                  url('/assets/img/kits/kit-galpon-modular.png');
                  background-size: cover;
                  background-position: center;
    }
    .kit-hero-content {
      max-width: 90%;
      z-index: 2;
    }

    .kit-hero-content h1 {
      font-size: 60px;
      line-height: 70px;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #fff;
    }

    .kit-hero-content h2 {
      font-size: 36px;
      line-height: 46px;
      margin-bottom: 1.5rem;
      color: #E86138;
      font-weight: 600;
    }

    .kit-hero-content p {
      font-size: 18px;
      line-height: 30px;
      margin-bottom: 2rem;
    }

    .kit-cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .btn-kit-primary {
      background: linear-gradient(45deg, #E86138, #ff7a4d);
      color: white;
      padding: 18px 35px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      font-size: 18px;
      line-height: 30px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(232, 97, 56, 0.3);
      font-family: 'Lato', sans-serif;
    }

    .btn-kit-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(232, 97, 56, 0.4);
      color: white;
      text-decoration: none;
    }

    .btn-kit-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
      padding: 18px 35px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      font-size: 18px;
      line-height: 30px;
      transition: all 0.3s ease;
      font-family: 'Lato', sans-serif;
    }

    .btn-kit-secondary:hover {
      background: white;
      color: #333;
      text-decoration: none;
    }

    .kit-price-highlight {
      background: rgba(232, 97, 56, 0.9);
      padding: 15px 25px;
      border-radius: 25px;
      display: inline-block;
      margin: 1rem 0;
      font-weight: 700;
      font-size: 18px;
      line-height: 30px;
      font-family: 'Lato', sans-serif;
    }

    .kit-urgency {
      background: rgba(255,255,255,0.2);
      padding: 12px 25px;
      border-radius: 30px;
      display: inline-block;
      margin: 20px 0;
      font-weight: 700;
      font-size: 16px;
      font-family: 'Lato', sans-serif;
    }

    /* Sección de Características */
    .kit-features-section {
      padding: 80px 0;
      background: #f8f9fa;
    }

    .kit-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .kit-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .kit-feature-card {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .kit-feature-card:hover {
      transform: translateY(-5px);
    }

    .kit-feature-icon {
      font-size: 3rem;
      color: #E86138;
      margin-bottom: 20px;
    }

    .kit-feature-card h3 {
      color: #333;
      margin-bottom: 15px;
      font-size: 24px;
      line-height: 32px;
    }

    .kit-feature-card p {
      color: #666;
      font-size: 18px;
      line-height: 30px;
    }

    /* Sección de Video */
    .kit-video-section {
      padding: 80px 0;
      background: white;
    }

    .kit-video-container {
      text-align: center;
      margin-top: 40px;
    }

    .kit-video-container video {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }

    .kit-video-container video:hover {
      transform: scale(1.02);
    }

    /* Sección de Precios Simple */
    .kit-pricing-section {
      padding: 80px 0;
      background: #ffffff;
    }

    .kit-pricing-simple {
      background: white;
      border-radius: 20px;
      padding: 50px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      border: 3px solid #E86138;
      margin-top: 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .kit-pricing-title {
      font-size: 36px;
      line-height: 46px;
      font-weight: 700;
      color: #333;
      margin-bottom: 20px;
    }

    .kit-pricing-subtitle {
      color: #666;
      margin-bottom: 30px;
      font-size: 18px;
      line-height: 30px;
    }

    .kit-pricing-options {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px;
      margin: 30px 0;
      padding: 30px;
      background: #f8f9fa;
      border-radius: 15px;
    }

    .kit-price-option {
      text-align: center;
    }

    .kit-price-option h4 {
      font-size: 20px;
      line-height: 20px;
      color: #333;
      margin-bottom: 10px;
    }

    .kit-price-option .price {
      font-size: 24px;
      line-height: 32px;
      color: #E86138;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
    }

    /* Galería Simple */
    .kit-gallery-section {
      padding: 80px 0;
      background: #f8f9fa;
    }

    .kit-gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .kit-gallery-item {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .kit-gallery-item:hover {
      transform: scale(1.05);
    }

    .kit-gallery-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    /* CTA Final Potente */
    .kit-cta-section {
      padding: 100px 0;
      background: linear-gradient(135deg, #E86138 0%, #ff7a4d 100%);
      color: white;
      text-align: center;
    }

    .kit-cta-content h2 {
      font-size: 36px;
      line-height: 46px;
      margin-bottom: 20px;
    }

    .kit-cta-content p {
      font-size: 18px;
      line-height: 30px;
      margin-bottom: 40px;
    }

    .kit-main-cta {
      background: white;
      color: #E86138;
      padding: 25px 50px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 24px;
      line-height: 32px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      display: inline-block;
      margin: 20px;
      font-family: 'Montserrat', sans-serif;
    }

    .kit-main-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(0,0,0,0.3);
      color: #E86138;
      text-decoration: none;
    }

    /* Floating CTA */
    .floating-cta {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background: #E86138;
      color: white;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 16px;
      box-shadow: 0 5px 20px rgba(232, 97, 56, 0.4);
      animation: pulse 2s infinite;
      font-family: 'Lato', sans-serif;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .floating-cta:hover {
      color: white;
      transform: scale(1.1);
      text-decoration: none;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .kit-hero-content h1 {
        font-size: 42px;
        line-height: 52px;
      }
      
      .kit-hero-content h2 {
        font-size: 30px;
        line-height: 40px;
      }
      
      .kit-pricing-title {
        font-size: 30px;
        line-height: 40px;
      }
    }

    @media (max-width: 768px) {
      .kit-hero-content h1 {
        font-size: 25px !important;
        line-height: 42px;
      }

      .kit-hero-content h2 {
        font-size: 20px !important;
        line-height: 30px;
      }

      .kit-cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn-kit-primary,
      .btn-kit-secondary {
        width: 250px;
        font-size: 1rem;
        padding: 10px;
      }

      .kit-hero-content p{
        line-height: 20px;
      }

      .max-w-50{
        min-width: 100%;
      }

      .kit-pricing-options {
        flex-direction: column;
        gap: 15px;
      }

      .kit-main-cta {
        font-size: 20px;
        line-height: 20px;
        padding: 20px 40px;
      }

      .kit-pricing-simple {
        padding: 30px 20px;
      }

      .floating-cta {
        bottom: 70px;
        right: 15px;
        padding: 12px 20px;
        font-size: 14px;
      }

      /* Imagen mobile para galpones (relación 9:16) */
      .galpones-hero-background-2 {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                    url('/assets/img/kits/galpon-mobile.png');
        background-size:cover;
        background-position: center center;
        height: 70vh; /* Ajustado para mobile */
        min-height: 500px;
      }
    }

    /* Estilos para FAQ */
    .kit-faq-section {
      padding: 80px 0;
      background: #f8f9fa;
    }

    .kit-faq-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .kit-faq-item {
      background: white;
      border-radius: 15px;
      margin-bottom: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .kit-faq-item:hover {
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .kit-faq-question {
      padding: 25px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 18px;
      line-height: 30px;
      color: #333;
      border: none;
      background: none;
      width: 100%;
      text-align: left;
      font-family: 'Lato', sans-serif;
    }

    .kit-faq-question:hover {
      background: #f8f9fa;
    }

    .kit-faq-icon {
      font-size: 20px;
      color: #E86138;
      transition: transform 0.3s ease;
    }

    .kit-faq-answer {
      padding: 0 25px 25px;
      color: #666;
      font-size: 18px;
      line-height: 30px;
      display: none;
    }

    .kit-faq-answer.active {
      display: block;
    }

    .kit-faq-item.active .kit-faq-icon {
      transform: rotate(180deg);
    }

    /* Estilos para sección de descarga PDF */
    .kit-download-section {
      padding: 60px 0;
      background: white;
      border-top: 1px solid #e9ecef;
    }

    .kit-download-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
      text-align: center;
    }

    .kit-download-card {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      border-radius: 20px;
      padding: 40px;
      border: 2px solid #E86138;
      margin-top: 40px;
    }

    .kit-download-card h3 {
      font-size: 24px;
      line-height: 32px;
      color: #333;
      margin-bottom: 15px;
    }

    .kit-download-card p {
      color: #666;
      margin-bottom: 30px;
      font-size: 18px;
      line-height: 30px;
    }

    .btn-download {
      background: linear-gradient(45deg, #E86138, #ff7a4d);
      color: white;
      padding: 18px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 18px;
      line-height: 30px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(232, 97, 56, 0.3);
      font-family: 'Lato', sans-serif;
      display: inline-block;
    }

    .btn-download:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(232, 97, 56, 0.4);
      color: white;
      text-decoration: none;
    }

    .download-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
      margin-bottom: 30px;
    }

    .download-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      color: #666;
    }

    .download-feature i {
      color: #E86138;
      font-size: 18px;
    }

    @media (max-width: 768px) {
      .kit-faq-question {
        padding: 20px;
        font-size: 16px;
      }

      .kit-faq-answer {
        padding: 0 20px 20px;
        font-size: 16px;
      }

      .kit-download-card {
        padding: 30px 20px;
      }

      .download-features {
        grid-template-columns: 1fr;
      }
    }

    /* Animaciones */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in-up {
      animation: fadeInUp 0.8s ease-out;
    }

    /* Estilos para Sección de Testimonios */
    .kit-testimonials-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }

    .kit-testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .kit-testimonial-card {
      background: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .kit-testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
      border-color: #E86138;
    }

    .kit-testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #E86138, #ff7a4d);
    }

    .testimonial-content {
      margin-bottom: 25px;
    }

    .testimonial-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 20px;
      justify-content: flex-start;
    }

    .testimonial-stars i {
      color: #ffc107;
      font-size: 18px;
    }

    .testimonial-content p {
      font-size: 16px;
      line-height: 26px;
      color: #555;
      font-style: italic;
      margin: 0;
      position: relative;
    }

    .testimonial-content p::before {
      content: '"';
      font-size: 60px;
      color: #E86138;
      position: absolute;
      top: -15px;
      left: -15px;
      opacity: 0.3;
      font-family: Georgia, serif;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
      padding-top: 20px;
      border-top: 1px solid #e9ecef;
    }

    .testimonial-author img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #E86138;
      flex-shrink: 0;
    }

    .author-info h4 {
      margin: 0 0 5px 0;
      font-size: 18px;
      color: #333;
      font-weight: 600;
    }

    .author-info p {
      margin: 0;
      font-size: 14px;
      color: #666;
      line-height: 20px;
    }

    .author-info strong {
      color: #E86138;
      font-weight: 600;
    }

    /* Estadísticas de Testimonios */
    .kit-stats-testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-top: 60px;
      padding: 40px;
      background: white;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .stat-item {
      text-align: center;
      padding: 20px;
    }

    .stat-number {
      font-size: 36px;
      font-weight: 700;
      color: #E86138;
      margin-bottom: 10px;
      font-family: 'Montserrat', sans-serif;
    }

    .stat-label {
      font-size: 16px;
      color: #666;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Responsive para Testimonios */
    @media (max-width: 1024px) {
      .kit-testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
      }
      
      .kit-stats-testimonials {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        padding: 30px;
      }
    }

    @media (max-width: 768px) {
      .kit-testimonials-section {
        padding: 60px 0;
      }
      
      .kit-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
      }
      
      .kit-testimonial-card {
        padding: 25px 20px;
      }
      
      .testimonial-content p {
        font-size: 15px;
        line-height: 24px;
      }
      
      .testimonial-author {
        gap: 12px;
      }
      
      .testimonial-author img {
        width: 50px;
        height: 50px;
      }
      
      .author-info h4 {
        font-size: 16px;
      }
      
      .author-info p {
        font-size: 13px;
      }
      
      .kit-stats-testimonials {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 25px 15px;
        margin-top: 40px;
      }
      
      .stat-item {
        padding: 15px 10px;
      }
      
      .stat-number {
        font-size: 28px;
      }
      
      .stat-label {
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .kit-stats-testimonials {
        grid-template-columns: 1fr;
      }
      
      .stat-item {
        padding: 10px;
      }
    }

    /* ===========================
       Sección Galpones - Tabla Premium
       =========================== */

    .galpones-pricing-section {
      padding: 80px 0;
      background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    }

    /* Filtros y Búsqueda */
    .galpones-filters {
      background: white;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      margin: 40px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: space-between;
      align-items: flex-end;
    }

    .filter-group {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
      min-width: 200px;
    }

    .search-group {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1.5;
      min-width: 250px;
    }

    .filter-group label,
    .search-group label {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: #333;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .filter-group label i,
    .search-group label i {
      color: #E86138;
    }

    .filter-buttons {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 10px 20px;
      border: 2px solid #e0e0e0;
      background: white;
      border-radius: 8px;
      font-family: 'Lato', sans-serif;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      color: #666;
    }

    .filter-btn:hover {
      border-color: #E86138;
      color: #E86138;
      transform: translateY(-2px);
    }

    .filter-btn.active {
      background: linear-gradient(135deg, #E86138 0%, #ff7a4d 100%);
      border-color: #E86138;
      color: white !important;
      box-shadow: 0 4px 15px rgba(232, 97, 56, 0.3);
    }

    .search-input {
      padding: 12px 18px;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      font-size: 15px;
      font-family: 'Lato', sans-serif;
      transition: all 0.3s ease;
      width: 100%;
    }

    .search-input:focus {
      outline: none;
      border-color: #E86138;
      box-shadow: 0 0 0 3px rgba(232, 97, 56, 0.1);
    }

    .search-input::placeholder {
      color: #999;
    }

    /* Tabla de Galpones */
    .galpones-table-wrapper {
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      margin: 40px 0;
    }

    .galpones-table-premium {
      width: 100%;
      border-collapse: collapse;
      font-family: 'Lato', sans-serif;
    }

    /* Table Header */
    .galpones-table-premium thead {
      background: linear-gradient(135deg, #E86138 0%, #ff7a4d 100%);
    }

    .galpones-table-premium thead th {
      padding: 20px 15px;
      text-align: left;
      color: white;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      white-space: nowrap;
      border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    }

    .galpones-table-premium thead th.sortable {
      cursor: pointer;
      user-select: none;
      transition: all 0.3s ease;
    }

    .galpones-table-premium thead th.sortable:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .th-content {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: space-between;
    }

    .sort-icon {
      opacity: 0.5;
      transition: all 0.3s ease;
      font-size: 12px;
    }

    .sortable:hover .sort-icon {
      opacity: 1;
    }

    .sortable.sorted-asc .sort-icon::before {
      content: "\f0de";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      opacity: 1;
    }

    .sortable.sorted-desc .sort-icon::before {
      content: "\f0dd";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      opacity: 1;
    }

    /* Table Body */
    .galpones-table-premium tbody tr {
      border-bottom: 1px solid #f0f0f0;
      transition: all 0.3s ease;
    }

    .galpones-table-premium tbody tr:hover {
      background: #f8f9fa;
      transform: scale(1.01);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .galpones-table-premium tbody tr.hidden {
      display: none;
    }

    .galpones-table-premium tbody td {
      padding: 18px 15px;
      font-family: 'Lato', sans-serif;
      font-size: 15px;
      font-weight: 400;
      color: #333;
      vertical-align: middle;
    }

    .galpones-table-premium tbody td strong {
      font-family: 'Lato', sans-serif;
      font-weight: 700;
    }

    /* Badges */
    .badge {
      display: inline-block;
      padding: 6px 14px;
      border-radius: 20px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      white-space: nowrap;
    }

    .badge-15 {
      background: linear-gradient(135deg, #E86138 0%, #ff7a4d 100%);
      color: white;
      box-shadow: 0 3px 10px rgba(232, 97, 56, 0.3);
    }

    .badge-20 {
      background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
      color: white;
      box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
    }

    /* Highlighted Elements */
    .highlight-surface {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #E86138;
      color: white;
      padding: 4px 12px;
      border-radius: 15px;
      font-family: 'Lato', sans-serif;
      font-weight: 600;
      font-size: 14px;
      white-space: nowrap;
    }

    .price-cell {
      color: #E86138 !important;
      font-family: 'Lato', sans-serif !important;
      font-weight: 700 !important;
      font-size: 18px !important;
    }

    .price-m2 {
      color: #666;
      font-family: 'Lato', sans-serif;
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
    }

    /* WhatsApp Button in Table */
    .btn-whatsapp-table {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
      color: white;
      padding: 10px 18px;
      border-radius: 8px;
      text-decoration: none;
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 13px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
      white-space: nowrap;
    }

    .btn-whatsapp-table:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
      background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    }

    .btn-whatsapp-table i {
      font-size: 16px;
    }

    /* Results Counter */
    .results-counter {
      padding: 20px 25px;
      background: #f8f9fa;
      border-top: 2px solid #e0e0e0;
      text-align: center;
      font-family: 'Lato', sans-serif;
      font-size: 15px;
      font-weight: 400;
      color: #666;
    }

    .results-counter strong {
      color: #E86138;
      font-family: 'Lato', sans-serif;
      font-weight: 700;
    }

    /* Info Box */
    .galpones-info {
      margin-top: 50px;
    }

    .info-box {
      background: linear-gradient(135deg, #E86138 0%, #ff7a4d 100%);
      color: white;
      padding: 30px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 10px 40px rgba(232, 97, 56, 0.2);
    }

    .info-box i {
      font-size: 40px;
      flex-shrink: 0;
    }

    .info-box h4 {
      font-size: 22px;
      font-weight: 700;
      margin: 0 0 10px 0;
    }

    .info-box p {
      margin: 0;
      font-size: 16px;
      line-height: 1.6;
      opacity: 0.95;
    }

    /* Responsive Tablet */
    @media (max-width: 1024px) {
      .galpones-table-premium thead th {
        padding: 15px 12px;
        font-size: 13px;
      }

      .galpones-table-premium tbody td {
        padding: 15px 12px;
        font-size: 14px;
      }

      .btn-whatsapp-table {
        padding: 8px 14px;
        font-size: 12px;
      }
    }

    /* Responsive Mobile - Tabla a Cards */
    @media (max-width: 768px) {
      .galpones-pricing-section {
        padding: 60px 0;
      }

      .galpones-filters {
        padding: 20px;
        gap: 20px;
        flex-direction: column;
      }

      .filter-group,
      .search-group {
        width: 100%;
        min-width: unset;
      }

      .filter-buttons {
        justify-content: center;
      }

      .filter-btn {
        flex: 1;
        min-width: 70px;
        padding: 10px 12px;
        font-size: 13px;
      }

      /* Convertir tabla a cards en mobile */
      .galpones-table-wrapper {
        border-radius: 0;
        box-shadow: none;
        background: transparent;
      }

      .galpones-table-premium thead {
        display: none;
      }

      .galpones-table-premium tbody {
        display: block;
      }

      .galpones-table-premium tbody tr {
        display: block;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
        padding: 20px;
        border: 2px solid #f0f0f0;
      }

      .galpones-table-premium tbody tr:hover {
        transform: none;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
      }

      .galpones-table-premium tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        text-align: right;
      }

      .galpones-table-premium tbody td:last-child {
        border-bottom: none;
        justify-content: center;
        padding: 15px 0 0;
      }

      .galpones-table-premium tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        text-transform: uppercase;
        color: #E86138;
        font-size: 12px;
        letter-spacing: 0.5px;
        text-align: left;
      }

      .galpones-table-premium tbody td:last-child::before {
        content: "";
      }

      .btn-whatsapp-table {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
      }

      .results-counter {
        padding: 15px 20px;
        font-size: 14px;
      }

      .info-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
      }

      .info-box i {
        font-size: 35px;
      }

      .info-box h4 {
        font-size: 20px;
      }

      .info-box p {
        font-size: 15px;
      }
    }

    @media (max-width: 480px) {
      .badge,
      .highlight-surface,
      .price-m2 {
        font-size: 12px;
        padding: 4px 10px;
      }

      .price-cell {
        font-size: 16px !important;
      }

      .galpones-table-premium tbody tr {
        padding: 15px;
      }

      .galpones-table-premium tbody td {
        padding: 10px 0;
      }
    }

    /* Sección de Cotizador en Landing Pages */
    .kit-cotizador-section {
      padding-top: 80px;
      padding-bottom: 80px;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    @media (max-width: 768px) {
      .kit-cotizador-section {
        padding-top: 60px;
        padding-bottom: 60px;
      }
    }

    /* ===========================
       Hero Price Badge
       =========================== */
    .kit-price-hero-badge {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      background: rgba(232, 97, 56, 0.95);
      padding: 20px 45px;
      border-radius: 16px;
      margin: 1.5rem 0 2rem;
      box-shadow: 0 8px 30px rgba(232, 97, 56, 0.5);
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .kit-price-hero-badge .price-label {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 3px;
      opacity: 0.9;
      font-weight: 600;
      font-family: 'Lato', sans-serif;
    }

    .kit-price-hero-badge .price-amount {
      font-size: 52px;
      font-weight: 800;
      font-family: 'Montserrat', sans-serif;
      line-height: 1.1;
      color: #fff;
    }

    .kit-price-hero-badge .price-note {
      font-size: 13px;
      opacity: 0.85;
      margin-top: 4px;
      font-family: 'Lato', sans-serif;
    }

    @media (max-width: 768px) {
      .kit-price-hero-badge {
        padding: 15px 30px;
        margin: 1rem 0 1.5rem;
      }
      .kit-price-hero-badge .price-amount {
        font-size: 38px;
      }
    }

    /* ===========================
       Presupuesto Section (Landing)
       =========================== */
    .kit-presupuesto-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .kit-presupuesto-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 40px;
      align-items: start;
    }

    /* Left: Price Card + Specs */
    .kit-presupuesto-info {
      position: sticky;
      top: 140px;
    }

    .kit-presupuesto-price-card {
      background: linear-gradient(135deg, #E86138 0%, #ff7a4d 100%);
      color: white;
      border-radius: 20px;
      padding: 35px;
      text-align: center;
      box-shadow: 0 10px 40px rgba(232, 97, 56, 0.3);
    }

    .kit-presupuesto-price-card .price-card-label {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-weight: 600;
      opacity: 0.9;
    }

    .kit-presupuesto-price-card .price-card-amount {
      font-size: 52px;
      font-weight: 800;
      font-family: 'Montserrat', sans-serif;
      line-height: 1.1;
      margin: 10px 0 5px;
    }

    .kit-presupuesto-price-card .price-card-note {
      font-size: 14px;
      opacity: 0.85;
    }

    .kit-presupuesto-specs {
      background: white;
      border-radius: 15px;
      padding: 25px;
      margin-top: 20px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    .kit-presupuesto-specs .spec-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
      font-size: 15px;
      color: #333;
      font-family: 'Lato', sans-serif;
    }

    .kit-presupuesto-specs .spec-item:last-child {
      border-bottom: none;
    }

    .kit-presupuesto-specs .spec-item i {
      color: #E86138;
      font-size: 18px;
      width: 24px;
      text-align: center;
    }

    .kit-presupuesto-benefits {
      background: white;
      border-radius: 15px;
      padding: 25px;
      margin-top: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    .kit-presupuesto-benefits h4 {
      font-size: 16px;
      color: #333;
      margin-bottom: 15px;
    }

    .kit-presupuesto-benefits h4 i {
      color: #25d366;
    }

    .kit-presupuesto-benefits ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .kit-presupuesto-benefits ul li {
      padding: 8px 0;
      font-size: 14px;
      color: #555;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .kit-presupuesto-benefits ul li i {
      color: #E86138;
      width: 20px;
      text-align: center;
    }

    /* Right: Form */
    .kit-presupuesto-form-wrapper {
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
      border: 2px solid #E86138;
    }

    .kit-presupuesto-form-wrapper h3 {
      font-size: 22px;
      color: #333;
      margin-bottom: 25px;
      text-align: center;
    }

    .kit-presupuesto-form-wrapper h3 i {
      color: #E86138;
    }

    .kit-form-group {
      margin-bottom: 20px;
    }

    .kit-form-group label {
      display: block;
      font-weight: 600;
      font-size: 14px;
      color: #333;
      margin-bottom: 6px;
      font-family: 'Lato', sans-serif;
    }

    .kit-form-group label i {
      color: #E86138;
      margin-right: 4px;
    }

    .kit-form-group input {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      font-size: 15px;
      font-family: 'Lato', sans-serif;
      transition: all 0.3s ease;
      box-sizing: border-box;
    }

    .kit-form-group input:focus {
      outline: none;
      border-color: #E86138;
      box-shadow: 0 0 0 3px rgba(232, 97, 56, 0.1);
    }

    .kit-form-group input.valid {
      border-color: #25d366;
    }

    .kit-form-group input.invalid {
      border-color: #dc3545;
    }

    .kit-form-checkbox {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin: 20px 0;
      font-size: 13px;
      color: #666;
    }

    .kit-form-checkbox input[type="checkbox"] {
      margin-top: 3px;
      accent-color: #E86138;
    }

    .kit-form-submit {
      width: 100%;
      padding: 18px 30px;
      background: linear-gradient(135deg, #E86138 0%, #ff7a4d 100%);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 17px;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(232, 97, 56, 0.35);
    }

    .kit-form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(232, 97, 56, 0.5);
    }

    .kit-form-submit:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }

    /* Success State */
    .kit-presupuesto-success {
      text-align: center;
      padding: 40px 20px;
    }

    .kit-presupuesto-success .success-icon {
      font-size: 80px;
      color: #25d366;
      margin-bottom: 20px;
    }

    .kit-presupuesto-success h2 {
      font-size: 28px;
      color: #333;
      margin-bottom: 10px;
    }

    .kit-presupuesto-success .success-quote-number {
      font-size: 16px;
      color: #666;
      margin-bottom: 25px;
    }

    .kit-presupuesto-success .btn-download-pdf {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 40px;
      background: linear-gradient(135deg, #E86138 0%, #ff7a4d 100%);
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 18px;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(232, 97, 56, 0.35);
    }

    .kit-presupuesto-success .btn-download-pdf:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(232, 97, 56, 0.5);
    }

    .kit-presupuesto-success .success-details {
      margin-top: 20px;
      font-size: 15px;
      color: #555;
    }

    .kit-presupuesto-success .success-timeline {
      margin-top: 30px;
      text-align: left;
      max-width: 450px;
      margin-left: auto;
      margin-right: auto;
      background: #f8f9fa;
      border-radius: 15px;
      padding: 25px;
    }

    .kit-presupuesto-success .timeline-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
      font-size: 14px;
      color: #555;
    }

    .kit-presupuesto-success .timeline-item i {
      font-size: 18px;
      width: 24px;
      text-align: center;
    }

    /* Responsive Presupuesto Section */
    @media (max-width: 1024px) {
      .kit-presupuesto-grid {
        gap: 30px;
      }
      .kit-presupuesto-price-card .price-card-amount {
        font-size: 42px;
      }
    }

    @media (max-width: 768px) {
      .kit-presupuesto-section {
        padding: 60px 0;
      }

      .kit-presupuesto-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .kit-presupuesto-info {
        position: static;
      }

      .kit-presupuesto-price-card {
        padding: 25px;
      }

      .kit-presupuesto-price-card .price-card-amount {
        font-size: 38px;
      }

      .kit-presupuesto-form-wrapper {
        padding: 25px 20px;
      }

      .kit-form-submit {
        font-size: 15px;
        padding: 16px 20px;
      }
    }