/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header y Navegación */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    margin-left: -8px;
    flex-shrink: 0;
}

.nav-logo .logo {
    height: 100px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: 2.2rem;
    flex-wrap: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2c5aa0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2c5aa0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #02a14f 0%, #003d2a 100%);
    color: white;
    padding: 80px 0;
    margin-top: 132px;
    min-height: max(calc(100vh - 132px), 600px);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Tablet navigation adjustments */
@media screen and (max-width: 1200px) {
    .nav-logo .logo {
        height: 84px;
    }

    .nav-menu {
        gap: 1.2rem;
        margin-left: 1rem;
    }

    .nav-link {
        font-size: 1rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #ff6b6b;
    color: white;
}

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Products Section */
.products {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.4rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.product-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Company Showcase Section */
.company-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-text h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.showcase-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(44, 90, 160, 0.05);
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.showcase-item i {
    font-size: 1.5rem;
    color: #2c5aa0;
}

.showcase-item span {
    font-weight: 600;
    color: #2c5aa0;
}

.showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 90, 160, 0.1), rgba(102, 126, 234, 0.1));
    z-index: 1;
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background: #fff;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.industry-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.1), transparent);
    transition: left 0.5s ease;
}

.industry-card:hover::before {
    left: 100%;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #2c5aa0;
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5aa0, #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-icon i {
    font-size: 1.8rem;
    color: white;
}

.industry-card h3 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.industry-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid #2c5aa0;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.industry-link:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.industry-link i {
    transition: transform 0.3s ease;
}

.industry-link:hover i {
    transform: translateX(3px);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 0.2rem;
}

.feature-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    margin: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #02a14f 0%, #003d2a 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.3rem 0;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
}

/* Laptop adjustments */
@media screen and (max-width: 1440px) {
    .hero {
        padding: 80px 0;
        margin-top: 132px;
        min-height: max(calc(100vh - 132px), 600px);
    }

    .hero-container {
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .hero-image img {
        max-height: 450px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.6rem 0;
    }

    .nav-logo .logo {
        height: 72px;
    }

    .nav-menu {
        margin-left: 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 92px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero {
        margin-top: 92px;
        min-height: max(calc(100vh - 92px), 560px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

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

.service-card,
.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Industry Pages Styles */
.industry-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #667eea 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 70px;
}

.industry-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.industry-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.industry-hero h1 i {
    font-size: 2.5rem;
}

.industry-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.industry-hero-menu {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-menu-link {
    text-decoration: none;
    color: white;
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.12);
    transition: all 0.25s ease;
}

.hero-menu-link:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-2px);
}

.equipment-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.equipment-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.equipment-image {
    height: 250px;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-image img {
    transform: scale(1.05);
}

.equipment-content {
    padding: 2rem;
}

.equipment-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.equipment-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.equipment-features {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.equipment-features li {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.equipment-features li::before {
    content: none;
}

.equipment-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.brand {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.industry-services {
    padding: 60px 0;
    background: white;
}

.industry-services h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-item i {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-top: 0.2rem;
}

.service-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.contact-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #667eea 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Electronics store page */
.electronics-store {
    padding: 80px 0;
    background: #f8f9fa;
}

.electronics-list {
    display: grid;
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.inventory-board {
    background: white;
    border: 1px solid #e6ebf2;
    border-radius: 12px;
    overflow: hidden;
}

.inventory-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #edf1f7;
}

.inventory-row:last-child {
    border-bottom: none;
}

.inventory-row h3 {
    margin: 0;
    color: #264c88;
    font-size: 1rem;
    font-weight: 600;
}

.qty-pill {
    background: #e8f6ed;
    color: #1b7a3f;
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    font-size: 0.83rem;
    font-weight: 700;
    white-space: nowrap;
}

.electronics-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.2rem;
    background: white;
    border: 1px solid #e6ebf2;
    border-left: 6px solid #2c5aa0;
    border-radius: 12px;
    padding: 1rem;
    align-items: center;
}

.electronics-media {
    border-radius: 10px;
    overflow: hidden;
    background: #eef3f8;
    height: 160px;
}

.electronics-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.electronics-content h3 {
    margin-bottom: 0.5rem;
    color: #244b87;
}

.electronics-content p {
    color: #5f6c7b;
    margin-bottom: 0.75rem;
}

.electronics-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.stock {
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
    white-space: nowrap;
}

.in-stock {
    background: #e8f6ed;
    color: #1b7a3f;
}

.low-stock {
    background: #fff4e5;
    color: #9a5600;
}

.electronics-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.electronics-meta span {
    font-size: 0.86rem;
    color: #40536a;
    background: #f0f4f9;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}

.electronics-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.tech-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.7rem;
    border-radius: 16px;
    font-size: 0.82rem;
    font-weight: 600;
}

.electronics-cta-item {
    grid-template-columns: 1fr;
    text-align: center;
    border-left-color: #02a14f;
}

.electronics-cta-item .btn {
    margin-top: 0.25rem;
}

/* Documentation page */
.docs-library {
    padding: 80px 0;
    background: #f8f9fa;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.doc-card {
    background: white;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.doc-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #e3f2fd;
    color: #1976d2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.doc-card h3 {
    color: #2c5aa0;
}

.doc-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.doc-note {
    margin-top: 1.25rem;
    background: #fff;
    border-left: 4px solid #2c5aa0;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: #4b5563;
}

/* Rental page */
.rental-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.rental-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
}

.rental-form {
    background: white;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.rental-form label {
    font-weight: 600;
    color: #2c5aa0;
}

.rental-form select,
.rental-form input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #d6deea;
    border-radius: 8px;
}

.rental-note {
    color: #64748b;
    font-size: 0.9rem;
}

.rental-checklist {
    border: 1px solid #d6deea;
    border-radius: 8px;
    padding: 0.75rem 0.9rem;
    background: #fff;
    display: grid;
    gap: 0.55rem;
}

.check-option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #334155;
    font-size: 0.96rem;
}

.check-option input {
    width: 16px;
    height: 16px;
}

.rental-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.rental-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.rental-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.rental-card h3 {
    padding: 1rem 1rem 0.4rem;
    color: #2c5aa0;
}

.rental-card p {
    padding: 0 1rem 1rem;
    color: #666;
}

/* Rental filters and search */
.rental-filters {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.8rem;
    border: 2px solid #d6deea;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.category-filters {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.2rem;
    border: 2px solid #d6deea;
    background: white;
    border-radius: 8px;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: #2c5aa0;
    color: #2c5aa0;
}

.filter-btn.active {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

.equipos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.equipo-card {
    background: white;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.equipo-card-link {
    cursor: pointer;
}

.equipo-card-link:focus-visible {
    outline: 3px solid rgba(44, 90, 160, 0.35);
    outline-offset: 2px;
}

.equipo-card:hover {
    border-color: #2c5aa0;
    box-shadow: 0 8px 24px rgba(44, 90, 160, 0.15);
    transform: translateY(-2px);
}

.equipo-card:hover .equipo-media img {
    transform: scale(1.03);
}

.equipo-body {
    padding: 1rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.equipo-checkbox {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    width: fit-content;
}

.equipo-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #2c5aa0;
    flex-shrink: 0;
}

.equipo-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.equipo-media {
    position: relative;
    width: 100%;
    height: 185px;
    border-radius: 0;
    overflow: hidden;
    border: none;
    background: #f8fafc;
    flex-shrink: 0;
}

.equipo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.equipo-check-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #d6deea;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
}

.equipo-check-overlay input {
    width: 18px;
    height: 18px;
    accent-color: #2c5aa0;
    cursor: pointer;
}

.equipo-check-overlay:hover {
    border-color: #2c5aa0;
}

.equipo-checkbox span {
    color: #475569;
    font-size: 0.92rem;
    font-weight: 500;
}

.product-detail-page {
    padding-top: 132px;
    background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
    min-height: 100vh;
}

.product-detail-hero {
    padding: 2rem 0 4rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.product-detail-media {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

.product-detail-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.product-detail-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

.product-detail-card h1 {
    color: #0f172a;
    font-size: 2.1rem;
    line-height: 1.15;
    margin: 0.7rem 0 0.85rem;
}

.product-detail-tag {
    display: inline-flex;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: #ecf1f9;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 0.82rem;
}

.product-detail-description {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.product-detail-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.product-detail-meta div {
    padding: 0.9rem;
    border-radius: 12px;
    background: #f8fbff;
    border: 1px solid #e2e8f0;
}

.product-detail-meta span {
    display: block;
    color: #64748b;
    font-size: 0.82rem;
    margin-bottom: 0.2rem;
}

.product-detail-meta strong {
    color: #0f172a;
    font-size: 0.98rem;
}

.product-detail-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.product-detail-specs h2,
.product-detail-highlights h2 {
    color: #0f172a;
    margin-bottom: 1rem;
}

.spec-grid {
    display: grid;
    gap: 0.7rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0.95rem;
    border-radius: 10px;
    background: #f8fbff;
    border: 1px solid #e2e8f0;
}

.spec-row span {
    color: #64748b;
}

.spec-row strong {
    color: #0f172a;
    text-align: right;
}

.product-detail-highlights ul {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.product-detail-highlights li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #334155;
}

.product-detail-highlights i {
    color: #2c5aa0;
}

.product-detail-empty,
.product-detail-skeleton {
    text-align: center;
}

.equipo-content h4 {
    color: #2c5aa0;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
}

.equipo-categoria {
    display: inline-block;
    background: #ecf1f9;
    color: #2c5aa0;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    width: fit-content;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #94a3b8;
    font-size: 1rem;
}

/* Responsive for company showcase */
@media screen and (max-width: 768px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .showcase-text p {
        text-align: center;
    }
}

/* Responsive for industry pages */
@media screen and (max-width: 768px) {
    .industry-hero h1 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .industry-hero-menu {
        gap: 0.5rem;
    }

    .hero-menu-link {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .electronics-item {
        grid-template-columns: 1fr;
    }

    .inventory-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .electronics-media {
        height: 190px;
    }

    .electronics-topline {
        flex-direction: column;
        align-items: flex-start;
    }

    .rental-box {
        grid-template-columns: 1fr;
    }

    .category-filters {
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .equipos-grid {
        grid-template-columns: 1fr;
    }

    .equipo-card {
        border-radius: 8px;
    }

    .equipo-media {
        height: 170px;
    }

    .equipo-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .equipo-body {
        padding: 0.9rem;
    }

    .product-detail-page {
        padding-top: 92px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-media img {
        min-height: 280px;
    }

    .product-detail-card h1 {
        font-size: 1.6rem;
    }

    .product-detail-meta {
        grid-template-columns: 1fr;
    }

    .spec-row {
        flex-direction: column;
    }

    .spec-row strong {
        text-align: left;
    }
}