
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #111827;
            color: white;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 99%;
            background: rgba(17, 24, 39, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #374151;
            z-index: 1000;
            padding: 1rem 0;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-section img {
            height: 3rem;
            width: auto;
        }
        
        .logo-text h1 {
            font-size: 1.25rem;
            font-weight: bold;
        }
        
        .logo-text p {
            font-size: 0.875rem;
            color: #9CA3AF;
        }
        
        .nav {
            display: flex;
            gap: 2rem;
        }
        
        .nav button {
            background: none;
            border: none;
            color: #9CA3AF;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav button:hover,
        .nav button.active {
            color: white;
        }
        
        .nav button.active::after {
            content: '';
            position: absolute;
            bottom: -0.25rem;
            left: 0;
            right: 0;
            height: 2px;
            background: white;
            border-radius: 1px;
        }
        
        .cta-button {
            background: white;
            color: #111827;
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            font-weight: 500;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background: #F3F4F6;
        }
        
        /* Mobile menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #9CA3AF;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .mobile-nav {
            display: none;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #374151;
        }
        
        .mobile-nav button {
            background: none;
            border: none;
            color: #9CA3AF;
            text-align: left;
            padding: 0.5rem 0;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .mobile-nav button:hover {
            color: white;
        }
        
        /* Hero Section */
        .hero {
            padding-top: 5rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: #111827;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .hero-text {
            max-width: 32rem;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #374151;
            border: 1px solid #4B5563;
            border-radius: 9999px;
            padding: 0.5rem 1rem;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            color: #D1D5DB;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero h1 span {
            color: #D1D5DB;
        }
        
        .hero p {
            font-size: 1.25rem;
            color: #9CA3AF;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .hero-buttons {
            display: flex;
            flex-direction: row;
            gap: 1rem;
        }
        
        .btn-primary {
            background: white;
            color: #111827;
            padding: 1rem 2rem;
            border-radius: 9999px;
            font-weight: 500;
            text-decoration: none;
            font-size: 1rem;
            transition: background-color 0.3s;
            text-align: center;
            border: none;
            cursor: pointer;
        }

        .btn-primary svg{
            width: 15px;
        }
        
        .btn-primary:hover {
            background: #F3F4F6;
        }
        
        .btn-secondary {
            border: 2px solid #4B5563;
            color: #D1D5DB;
            background: transparent;
            padding: 1rem 2rem;
            border-radius: 9999px;
            font-weight: 500;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
            text-align: center;
            cursor: pointer;
        }
        
        .btn-secondary:hover {
            background: #374151;
            border-color: #6B7280;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            border-radius: 1rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            width: 100%;
            height: 24rem;
            object-fit: cover;
        }
        
        .hero-card {
            position: absolute;
            background: #374151;
            border: 1px solid #4B5563;
            padding: 1rem;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .hero-card-top {
            top: -1rem;
            left: -1rem;
        }
        
        .hero-card-bottom {
            bottom: -1rem;
            right: -1rem;
        }
        
        .hero-card-number {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.25rem;
        }
        
        .hero-card-label {
            font-size: 0.875rem;
            color: #9CA3AF;
        }
        
        /* Section Styles */
        .section {
            padding: 3rem 0;
        }
        
        .section-dark {
            background: rgba(55, 65, 81, 0.3);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-subtitle {
            font-size: 0.875rem;
            font-weight: 600;
            color: #9CA3AF;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }
        
        .section-title {
            font-size: 2.25rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }
        
        .section-description {
            font-size: 1.25rem;
            color: #9CA3AF;
            max-width: 58rem;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Market Context */
        .market-stat {
            background: #1e2939;
            border: 1px solid #4B5563;
            border-radius: 1rem;
            padding: 1.4rem;
            display: inline-block;
            margin: 2rem;
        }
        
        .market-stat-number {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .market-stat-label {
            color: #9CA3AF;
            font-weight: 500;
        }
        
        .market-stat-sublabel {
            font-size: 0.875rem;
            color: #6B7280;
            margin-top: 0.5rem;
        }
        
        /* Clients Grid */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
            align-items: center;
        }
        
        .client-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 4rem;
            transition: opacity 0.3s;
            opacity: 0.6;
        }
        
        .client-logo:hover {
            opacity: 1;
        }
        
        .client-logo img {
            max-height: 4rem;
            max-width: 100%;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }
        
        .client-logo-text {
            color: white;
            font-weight: bold;
            font-size: 1.125rem;
            text-align: center;
        }
        
        /* Achievements */
        .achievements {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        
        .achievement {
            text-align: center;
            background: #374151;
            border: 1px solid #4B5563;
            border-radius: 1rem;
            padding: 1.5rem;
            transition: all 0.3s;
        }
        
        .achievement:hover {
            border-color: #6B7280;
            transform: scale(1.05);
        }
        
        .achievement-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .achievement-label {
            color: #9CA3AF;
        }
        
        /* About Section */
        .about-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .about-card {
            background: #1e2939;
            border: 1px solid #4B5563;
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            transition: border-color 0.3s;
        }
        
        .about-card:hover {
            border-color: #6B7280;
        }
        
        .about-card-icon {
            color: #9CA3AF;
            margin: 0 auto 1rem;
        }

        .about-card-icon svg{
            width: 40px;
            height: 40px;
        }
        
        .about-card h3 {
            margin-bottom: 1rem;
            font-weight: 400;
        }
        
        .about-card p {
            color: #9CA3AF;
            line-height: 1.6;
        }
        
        /* Team */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        
        .team-member {
            background: #1e2939;
            border: 1px solid #4B5563;
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
        }
        
        .team-member-icon {
            width: 4rem;
            height: 4rem;
            color: #9CA3AF;
            margin: 0 auto 1rem;
              background-color: #364153;
            border-radius: 50%;
            display: flex;
    justify-content: center;
    align-items: anchor-center;
            

        }

        .team-member-icon svg{
            width: 2.3rem;
            height: 2.3rem;
 
         
        }
        
        .team-member h4 {
            margin-bottom: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
        }
        
        .team-member-role {
            color: #9CA3AF;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }
        
        .team-member-expertise {
            color: #6B7280;
            font-size: 0.875rem;
        }
        
        /* Timeline */
        .timeline {
            position: relative;
            margin: 3rem 0;
        }
        
        .timeline-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: #4B5563;
            transform: translateY(-50%);
        }
        
        .timeline-items {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }
        
        .timeline-item {
            background: #1e2939;
            border: 1px solid #4B5563;
            border-radius: 0.75rem;
            padding: 1rem;
            width: 15%;
            text-align: center;
            position: relative;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            top: -0.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: 1rem;
            height: 1rem;
            background: #6B7280;
            border-radius: 50%;
        }
        
        .timeline-year {
            font-weight: bold;
            font-size: 1.125rem;
            margin-bottom: 0.5rem;
        }
        
        .timeline-event {
            font-size: 0.875rem;
            color: #9CA3AF;
            line-height: 1.4;
        }
        
        /* Services */
        .section-dark{
            background-color: #1e2939!important;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .service-card {
            background: #1e2939;
            border: 1px solid #4B5563;
            border-radius: 1rem;
            padding: 2rem;
            transition: border-color 0.3s;
        }
        
        .service-card:hover {
            border-color: #6B7280;
        }

        .services-titulo{
        display: flex;
        justify-content: left;
         align-items: center;
         gap: 10px;
         margin-bottom: 2rem;
        }
        
        .service-icon {
            width: 3rem;
            height: 3rem;
            color: #9CA3AF;
            margin-bottom: 1rem;
            background-color: #364153;
            border-radius: 0.625rem;
            padding: 0.325rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .service-icon svg{
            width: 2rem;
            height: 2rem;

        }
        
        .service-highlight {
            background: #1F2937;
            color: #9CA3AF;
            padding: 0;
            border-radius: 9999px;
            font-size: 0.875rem;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .service-card h3 {
            margin-bottom: 0rem;
        }
        
        .service-card p {
            color: #9CA3AF;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .service-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .service-link:hover {
            color: #D1D5DB;
        }

        /*  Products */
        
        .products-grid {
    display: grid
;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-checkmark {
    color: #10B981;
    max-width: 48rem;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}


.product-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 0 2rem;
    gap: 1rem;

}

.product-card{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1e2939;
    border: 1px solid #4B5563;
    border-radius: 1rem;
    padding-bottom: 1.5rem;
    text-align: center;
}

.product-card h4{
    font-weight: 400!important;
}

.product-card img{
    max-width: 100%;
    object-fit: cover; /* o contain, según quieras */
    margin-bottom: 1rem;
    border-radius: 1rem 1rem 0rem 0rem; /* mismo radio que la card */

    
}

        /* Markets */
        .markets-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .market-card {
            background: #1e2939;
            border: 1px solid #4B5563;
            border-radius: 1rem;
            padding: 1.5rem;
        }
        
        .market-region {
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.25rem;
        }
        
        .market-highlight {
            color: #9CA3AF;
            padding: 0;
            font-size: 0.875rem;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .market-linea{
            background-color: #4a5565;
            height: 8px;
            width: 100%;
            border-radius: 9px;
            margin-bottom: 15px;
        }
        
        .market-countries {
        
            padding-left: 1rem;
             margin-top: 1rem;
        }
        
        .market-countries ul{
            padding-left: 1rem;
            margin-top: 2rem;
        }
        .market-countries li {
            color: #9CA3AF;
            font-size: 0.875rem;
            margin-bottom: 0.25rem;
          
        }
        
        /* Contact */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .card-contact{
            display: flex;
            justify-content: left;
            align-items: left;
            background-color: #1e2939;
            padding: 0.650rem;
            border:#364153 1px solid;
            border-radius: 0.625rem;
            gap: 15px;
            width: 100%;
            height: auto;
            padding: 1rem;
            margin-bottom: 2rem;
        }

        .card-contact-icon{
            width: 2rem;
            height: 2rem;
        }

         .card-contact-icon svg{
            width: 1.5rem;
            height: 1.5rem;
            color: #a1a1a1;
            
        }

         .card-contact-1{
            background-color: #1e2939;
            padding: 0.650rem;
            border:#364153 1px solid;
            border-radius: 0.625rem;
            gap: 15px;
            width: 100%;
            height: auto;
            padding: 1rem;
            margin-bottom: 2rem;
        }

         .card-contact-0{
            display: flex;
            justify-content: left;
            align-items: left;
            gap: 10px;
        }
        
        
        
        .contact-info h3 {
            margin-bottom: 1rem;
            
        }
        
        
        
        .contact-item h4 {
            color: #ffffff;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .contact-item p {
            color: #D1D5DB;
        }
        
        .contact-form {
            background: #1e2939;
            border: 1px solid #4B5563;
            border-radius: 1rem;
            padding: 0.650rem 2rem 2rem 2rem;

        }

        .contact-form h3{
            font-weight: 500;
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #D1D5DB;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            background: #1F2937;
            border: 1px solid #4B5563;
            border-radius: 0.5rem;
            color: white;
            font-size: 1rem;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #6B7280;
        }
        
        .form-group textarea {
            height: 6rem;
            resize: vertical;
        }

        footer{
            background-color: #101828;
            padding: 3rem 0 0 0;
            border-top: 1px solid #1e2939;
            color: #99a1af;
        }

        .menu-footer{
            display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    line-height: 2;
    padding-bottom: 2rem;
        }

        .menu-footer h4{
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 0.925rem;
        }

        
        .menu-footer h3{
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 0.225rem;
        }

        .menu-footer ul li{
            list-style: none;
        }

        .menu-footer .menu-bloque{
         display: flex;
        justify-content: left;
        align-items: center;
        margin-bottom: 0.85rem;
        gap: 10px;
        }

        .menu-footer .menu-bloque img{
         width: 150px;
         height: auto;
        }

        .footer-copyright{
            text-align: center;
            padding: 2rem;
            line-height: 1.5;
            border-top: 1px solid #1e2939;
        }
        .footer-copyright p{
            line-height: 2;
        
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-nav.active {
                display: flex;
            }

            .mobile-nav{
                padding: 1rem;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .achievements {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-cards {
                grid-template-columns: 1fr;
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .timeline-items {
                flex-direction: column;
                gap: 1rem;
            }
            
            .timeline-item {
                width: 100%;
            }
            
            .timeline-line {
                display: none;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .markets-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .product-grid{
            grid-template-columns: repeat(2, 1fr);
  

            }

            .menu-footer{
            grid-template-columns: 1fr;
            text-align: center;

        }

         .menu-footer .menu-bloque{
            justify-content: center;

        }
          
            
            .contact-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .clients-grid {
                grid-template-columns: 1fr;
            }
            
            .achievements {
                grid-template-columns: 1fr;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .markets-grid {
                grid-template-columns: 1fr;
            }

            .product-grid{
            grid-template-columns: 1fr;
  

            }
             .menu-footer{
            grid-template-columns: 1fr;

        }

        .cta-button{
            display: none!important;
        }
        .mobile-nav{
                padding: 1rem;
            }

        .market-stat-number {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        }
