* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #172033;
    line-height: 1.6;
    padding-top: 90px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
}

:root {
    --blue-dark: #062b63;
    --blue: #0b3f88;
    --blue-light: #eaf2fb;
    --text: #172033;
    --text-light: #697386;
    --border: #e4e9f0;
    --background: #f7f9fc;
    --white: #ffffff;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #0b1f36 0%, #163254 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

.navbar-container {
    width: min(1180px, 92%);
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    width: 125px;
    height: auto;
    display: block;
    border-radius: 8px;
    padding: 4px;
    background-color: #ffffff;
}

.menu-button {
    border: none;
    background: transparent;
    font-size: 20px;
    color: var(--blue-dark);
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    background-image: url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(4, 35, 79, 0.94),
        rgba(8, 58, 116, 0.78),
        rgba(10, 52, 102, 0.45)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, 92%);
    margin: auto;
    color: white;
    padding: 70px 0;
}

.eyebrow,
.section-label {
    display: block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8daed8;
}

.section {
    width: min(1180px, 92%);
    margin: auto;
    padding: 80px 0;
}

.section-heading {
    margin-bottom: 32px;
}

.section-heading h2,
.advice-container h2 {
    font-size: clamp(27px, 4vw, 38px);
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 10px;
}

.section-heading p {
    max-width: 600px;
    color: var(--text-light);
    font-size: 14px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.category-card {
    overflow: hidden;
    background: white;
    border: 1px solid #d0dbe7;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(12, 37, 70, 0.05);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card:hover {
    transform: translateY(-3px);
    border-color: d7e0eb;
}

.category-image {
    height: 175px;
    overflow: hidden;
    background: #edf1f5;
}

.category-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.03);
}

.category-content {
    padding: 20px;
}

.category-content h3 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #ffffff;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.category-link:hover {
    border-color: var(--blue);
    background: var(--blue-light);
    color: var(--blue-dark);
    transform: translateY(-1px);
}

.navbar .category-link {
    background-color: #ffffff;
    color: #0b1f36 !important;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.navbar .category-link:hover {
    background-color: #f0f0f0;
}

.search-wrapper {
    position: relative;
    max-width: 850px;
    margin: -40px auto 40px auto;
    z-index: 100;
    padding: 0 20px;
}

.search-bar-container {
    display: flex;
    background: #ffffff;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
}

.search-bar-container input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: #1e293b;
}

.search-bar-container button {
    background-color: #1e3a8a;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-bar-container button:hover {
    background-color: #172554;
}

.search-results-dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    max-height: 160px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.search-results-dropdown::-webkit-scrollbar {
    width: 6px;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 15px;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f8fafc;
}

.search-result-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
    background: #f1f5f9;
}

.search-result-info h4 {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 600;
}

.search-result-info span {
    font-size: 0.8rem;
    color: #64748b;
}

.product-image {
    position: relative;
    height: 280px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border);
    color: var(--text);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.carousel-btn:hover {
    background: var(--blue);
    color: #ffffff;
    border-color: var(--blue);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.card-buttons {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.card-buttons .category-link {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    font-size: 13px;
}

.secondary-btn {
    background: #ffffff !important;
    color: var(--blue) !important;
    border: 1px solid var(--blue) !important;
}

.secondary-btn:hover {
    background: var(--blue-light) !important;
}

.product-desc {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 15px;
}

.product-code {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
}

.sectors-section {
    padding-top: 20px;
    padding-bottom: 80px;
    border-top: 2px solid #073572;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.sector-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid #d0dbe7;
    border-radius: 10px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(12, 37, 70, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sector-item:hover {
    transform: translateY(-2px);
    border-color: var(--blue);
    box-shadow: 0 8px 22px rgba(12, 37, 70, 0.08);
}

.sector-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--blue);
}

.sector-icon svg {
    width: 100%;
    height: 100%;
}

.advice-section {
    background: var(--background);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    
}

.advice-container {
    width: min(1180px, 92%);
    margin: auto;
    padding: 85px 0;
}

.advice-container p {
    max-width: 700px;
    color: var(--text-light);
    font-size: 14px;
    margin: 18px 0 25px;
}

.advice-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 21px;
    background: var(--blue-dark);
    color: #ffffff;
    border: 1px solid var(--blue-dark);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.advice-button:hover {
    background: #0b3f88;
    transform: translateY(-2px);
    box-shadow: 0 7px 16px rgba(6, 43, 99, 0.18);
}

.footer {
    position: relative;
    background: #062b63;
    color: #ffffff;
    overflow: hidden;
}
.footer-container {
    position: relative;
    z-index: 2;
    width: min(1180px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding: 68px 0 62px;
}

.footer-logo {
    width: 125px;
    height: auto;
    margin-bottom: 22px;
    display: block;
    border-radius: 8px;
    padding: 4px;
    background-color: #ffffff;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.footer-column h3 {
    position: relative;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 22px;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-column a:hover { 
    color: #ffffff; 
}

.footer-socials a:hover {
    background: #2563eb !important;
}

.map-preview {
    position: relative;
    display: block;
    width: 100%;
    height: 155px;
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.06);
}

.map-preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
    padding: 18px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .categories-grid, .sectors-grid, .footer-container {
        grid-template-columns: 1fr;
    }
}
.productos-populares {
    margin: 30px auto;
    padding: 0;
    text-align: left;
    max-width: min(1180px, 92%);
}
.productos-populares h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}
.populares-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.populares-grid a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.populares-grid a:hover {
    transform: translateY(-5px);
}
.populares-grid img {
    width: 130px;
    height: 180px;
    object-fit: contain;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}
.company-certifications {
    background-color: #fff;
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-top: 2px solid #073572;
}
.company-certifications h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    text-transform: uppercase;
}
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.cert-card {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #073572;
}
.cert-card h4 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 0.5rem;
}
.cert-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}
.cert-footer-note {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 2rem;
    font-style: italic;
}
.navbar-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    margin: 0 auto;
}
.navbar .menu-button {
    display: block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.2s ease;
    margin-right: 0;
}
.navbar .menu-button:hover {
    background: rgba(255, 255, 255, 0.1);
}
.nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    right: 40px;
    width: max-content;
    background: rgba(11, 31, 54, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 12px;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
}
.nav-menu.active {
    display: flex;
}
.nav-menu .nav-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}
.nav-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #8daed8;
}
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        right: 20px;
        width: 220px;
    }
}
.company-vision-section {
    padding: 40px 0;
}
.vision-giant-card {
    position: relative;
    width: min(1180px, 92%);
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}
.vision-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.vision-giant-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(11, 31, 54, 0.55) 0%, 
        rgba(15, 23, 42, 0.75) 100%
    );
    z-index: 2;
}
.vision-content-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    padding: 50px;
    gap: 45px;
    align-items: stretch;
}
.vision-left-col {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 0;
    gap: 30px;
}
.vision-main-text {
    font-size: clamp(35px, 3.8vw, 40px);
    line-height: 1.12;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -0.8px;
    margin: 0;
    text-align: left;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.65);
}
.vision-huge-quotes {
    font-size: 130px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.95);
    font-family: Georgia, serif;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: right;
    display: block;
    margin-top: 15px;
    width: 100%;
}
.vision-right-col {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.vision-eyebrow {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.vision-header h3 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.vision-header p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.vision-card-box {
    background: rgba(11, 31, 54, 0.45) !important; 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    padding: 18px;
    transition: transform 0.2s ease, background 0.2s ease;
}
.vision-card-box:hover {
    transform: translateY(-2px);
    background: rgba(11, 31, 54, 0.65) !important;
    border-color: rgba(255, 255, 255, 0.6);
}
.vision-card-box h4 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.vision-card-box p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.vision-bottom-card {
    position: relative;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 20px 25px;
    overflow: hidden;
}
.vision-bottom-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(11, 31, 54, 0.45) 0%, 
        rgba(15, 23, 42, 0.55) 100%
    );
}
.vision-bottom-card p {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 13.5px;
    font-style: italic;
    font-weight: 600;
    margin: 0;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .vision-giant-card {
        width: 95%;
        border-radius: 12px;
    }
    .vision-content-wrapper {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 20px;
    }
    .vision-left-col {
        padding: 10px 0 20px 0;
        min-height: auto;
    }
    .vision-main-text {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .vision-huge-quotes {
        font-size: 80px;
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 10px;
    }
    .vision-right-col {
        padding: 25px 20px;
    }
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.accessories-grid .product-card:nth-child(n+9) {
    display: none;
}

.accessories-grid .product-card {
    display: flex;
    flex-direction: column;
}

.accessories-grid .product-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
    padding: 10px;
}

.accessories-grid .product-img {
    max-height: 100%;
    object-fit: contain;
}

.accessories-grid .category-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.accessories-grid h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
}

@media (max-width: 900px) {
    .accessories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .accessories-grid {
        grid-template-columns: 1fr;
    }
}