:root {
      --primary: #1a365d;
      --primary-light: #2c5282;
      --accent: #c9a227;
      --accent-light: #d4af37;
      --text-dark: #1a202c;
      --text-medium: #4a5568;
      --text-light: #718096;
      --bg-light: #f7fafc;
      --bg-white: #ffffff;
      --border: #e2e8f0;
      --success: #38a169;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background-color: var(--bg-light);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Header / Hero Section */
    .hero {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: white;
      padding: 60px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
      background-size: 200px;
    }

    .hero-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    .hero-text {
      flex: 1;
      min-width: 300px;
    }

    .hero-logo {
      flex: 0 0 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

/* Contenedor para logo de la empresa */
    .logo-placeholder {
      width: 280px;
      height: 180px;
      background: rgba(255,255,255,0.1);
      border: 2px dashed rgba(255,255,255,0.3);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.6);
      font-size: 14px;
      text-align: center;
      padding: 20px;
      overflow: hidden;
    }

    .logo-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }

    .company-name {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 8px;
      letter-spacing: -1px;
    }

    .company-tagline {
      font-size: 1.25rem;
      color: var(--accent);
      font-weight: 500;
      margin-bottom: 24px;
    }

    /* Policy Notice */
    .policy-notice {
      background: rgba(255,255,255,0.1);
      border-left: 4px solid var(--accent);
      padding: 16px 20px;
      border-radius: 0 8px 8px 0;
      margin-top: 24px;
      max-width: 500px;
    }

    .policy-notice-title {
      font-weight: 600;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
      color: var(--accent);
    }

    .policy-notice-text {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.9);
      line-height: 1.5;
    }

    /* Services Section */
    .section {
      padding: 80px 0;
    }

    .section-light {
      background: var(--bg-white);
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 16px;
      text-align: center;
    }

    .section-subtitle {
      color: var(--text-medium);
      text-align: center;
      max-width: 600px;
      margin: 0 auto 48px;
      font-size: 1.1rem;
    }

    /* Mission Box */
    .mission-box {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: white;
      padding: 40px;
      border-radius: 16px;
      margin-bottom: 48px;
      position: relative;
      overflow: hidden;
    }

    .mission-box::before {
      content: '"';
      position: absolute;
      top: -20px;
      left: 20px;
      font-size: 120px;
      color: rgba(255,255,255,0.1);
      font-family: serif;
    }

    .mission-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 16px;
      color: var(--accent);
    }

    .mission-text {
      font-size: 1.1rem;
      line-height: 1.8;
      position: relative;
      z-index: 1;
    }

    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .service-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px;
      transition: all 0.3s ease;
      position: relative;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
      border-color: var(--accent);
    }

    .service-card h3 {
      color: var(--primary);
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .service-card p {
      color: var(--text-light);
      font-size: 0.9rem;
    }

    .service-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
      border-radius: 10px;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .service-icon svg {
      width: 24px;
      height: 24px;
      color: white;
    }

    /* Capacity Section */
    .capacity-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    .capacity-card {
      background: var(--bg-white);
      border-radius: 12px;
      padding: 24px;
      text-align: center;
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .capacity-card:hover {
      border-color: var(--primary);
      box-shadow: 0 8px 30px rgba(26,54,93,0.1);
    }

    .capacity-value {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .capacity-unit {
      font-size: 0.875rem;
      color: var(--text-light);
      margin-bottom: 12px;
    }

    .capacity-label {
      font-weight: 600;
      color: var(--text-dark);
    }

    /* Markets Section */
    .markets-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }

    .market-card {
      background: var(--bg-white);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .market-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    }

.market-image {
      width: 100%;
      height: 160px;
      background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      font-size: 0.875rem;
      text-align: center;
      padding: 0;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .market-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .market-content {
      padding: 20px;
    }

    .market-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .market-description {
      color: var(--text-medium);
      font-size: 0.9rem;
    }

    /* Products Gallery */
    .products-section {
      background: var(--primary);
      color: white;
    }

    .products-section .section-title {
      color: white;
    }

    .products-section .section-subtitle {
      color: rgba(255,255,255,0.8);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .product-card {
      background: rgba(255,255,255,0.1);
      border-radius: 16px;
      overflow: hidden;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.1);
      transition: all 0.3s ease;
    }

    .product-card:hover {
      background: rgba(255,255,255,0.15);
      transform: translateY(-4px);
    }

.product-image {
      width: 100%;
      height: 200px;
      background: rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.5);
      font-size: 0.875rem;
      text-align: center;
      padding: 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      overflow: hidden;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .product-content {
      padding: 24px;
    }

    .product-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: 8px;
    }

    .product-description {
      color: rgba(255,255,255,0.8);
      font-size: 0.9rem;
    }

    /* Specifications Section */
    .specs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 32px;
    }

    .spec-card {
      background: var(--bg-white);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .spec-header {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: white;
      padding: 20px 24px;
    }

    .spec-header h3 {
      font-size: 1.25rem;
      font-weight: 600;
    }

    .spec-header p {
      font-size: 0.875rem;
      opacity: 0.8;
      margin-top: 4px;
    }

.spec-image {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      font-size: 0.875rem;
      text-align: center;
      padding: 0;
      overflow: hidden;
    }

    .spec-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .spec-content {
      padding: 24px;
    }

    .spec-list {
      list-style: none;
    }

    .spec-list li {
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
      color: var(--text-medium);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .spec-list li:last-child {
      border-bottom: none;
    }

    .spec-list li::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* Equipment Section */
    .equipment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
    }

    .equipment-card {
      background: var(--bg-white);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .equipment-card:hover {
      box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    }

.equipment-image {
      width: 100%;
      height: 220px;
      background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      font-size: 0.875rem;
      text-align: center;
      padding: 0;
      overflow: hidden;
    }

    .equipment-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .equipment-content {
      padding: 24px;
    }

    .equipment-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .equipment-description {
      color: var(--text-medium);
      font-size: 0.9rem;
    }

    /* Customers Section */
    .customers-section {
      background: linear-gradient(135deg, var(--bg-light) 0%, #edf2f7 100%);
    }

    .customers-main {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-bottom: 48px;
    }

    .customer-card {
      background: var(--bg-white);
      border-radius: 16px;
      padding: 32px;
      border: 1px solid var(--border);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .customer-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.1);
      border-color: var(--accent);
    }

.customer-logo {
      width: 120px;
      height: 80px;
      background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
      border-radius: 8px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      font-size: 0.75rem;
      text-align: center;
      overflow: hidden;
    }

    .customer-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }

    .customer-name {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .customer-products {
      color: var(--text-medium);
      font-size: 0.9rem;
    }

    /* Local Workshops */
    .workshops-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--primary);
      text-align: center;
      margin-bottom: 24px;
    }

    .workshops-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
    }

    .workshop-badge {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 12px 24px;
      font-weight: 500;
      color: var(--primary);
      transition: all 0.3s ease;
    }

    .workshop-badge:hover {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    /* Contact Section */
    .contact-section {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: white;
    }

    .contact-section .section-title {
      color: white;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
    }

    .location-card {
      background: rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 32px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .location-city {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 16px;
      color: var(--accent);
    }

    .location-address {
      margin-bottom: 12px;
      line-height: 1.6;
    }

    .location-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }

    .location-phone svg {
      width: 18px;
      height: 18px;
      color: var(--accent);
    }

    /* Contact Info */
    .contact-info {
      background: rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 32px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .contact-info h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 24px;
      color: var(--accent);
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      color: rgba(255,255,255,0.9);
    }

    .contact-item svg {
      width: 20px;
      height: 20px;
      color: var(--accent);
      flex-shrink: 0;
    }

    .contact-item a {
      color: rgba(255,255,255,0.9);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-item a:hover {
      color: var(--accent);
    }

    /* Footer */
    .footer {
      background: #0f172a;
      color: rgba(255,255,255,0.7);
      padding: 32px 0;
      text-align: center;
    }

    .footer p {
      font-size: 0.875rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero {
        padding: 40px 0 60px;
      }

      .company-name {
        font-size: 2.5rem;
      }

      .hero-logo {
        flex: 1 1 100%;
        order: -1;
      }

      .section {
        padding: 60px 0;
      }

      .section-title {
        font-size: 2rem;
      }

      .specs-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .company-name {
        font-size: 2rem;
      }

      .container {
        padding: 0 16px;
      }

      .mission-box {
        padding: 24px;
      }
    }

    /* Print Styles */
    @media print {
      .hero {
        background: #1a365d !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
      }

      .section {
        page-break-inside: avoid;
      }
    }
