@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary:       #1F3149;
    --primary-light: #2a4266;
    --straw:         #FFEFD7;
    --straw-dark:    #F5D9A8;
    --gray-light:    #F5F7FA;
    --gray-mid:      #E8ECF0;
    --white:         #FFFFFF;
    --text-dark:     #1F3149;
    --text-mid:      #4A5568;
    --text-light:    #718096;
    --nav-height:    188px;
    --transition:    all 0.3s ease;
    --shadow:        0 2px 15px rgba(31,49,73,0.08);
    --shadow-hover:  0 8px 30px rgba(31,49,73,0.16);
    --radius:        12px;
    --content-width: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gray-light);
    color: var(--text-dark);
    min-height: 100vh;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--primary);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}

.nav-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { width: 260px; height: auto; border-radius: 6px; }

/* Links container */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

/* Individual link */
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.nav-link:hover,
.nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--straw); }
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }

/* CTA button in nav */
.nav-link.nav-cta {
    background: var(--straw);
    color: var(--primary);
    font-weight: 600;
    margin-left: 8px;
    padding: 8px 18px;
}
.nav-link.nav-cta:hover { background: var(--straw-dark); color: var(--primary); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle svg { transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(31,49,73,0.18);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    pointer-events: none;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-dropdown-menu a:hover { background: var(--gray-light); color: var(--primary); }
.nav-dropdown-menu a svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

/* Arrow between dropdown and menu */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px; left: 50%; transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--white);
}

/* Hamburger (mobile) */
.nav-hamburger {
    display: none;
    background: none; border: none; cursor: pointer;
    padding: 6px; margin-left: auto;
    flex-direction: column; gap: 5px;
}
.nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: #fff; border-radius: 2px; transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--primary);
    z-index: 999;
    padding: 12px 0 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile a, .nav-mobile button {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 28px;
    color: rgba(255,255,255,0.85); text-decoration: none;
    font-size: 15px; font-weight: 500;
    transition: var(--transition);
    background: none; border: none; cursor: pointer;
    font-family: 'Poppins', sans-serif; width: 100%; text-align: left;
}
.nav-mobile a:hover, .nav-mobile button:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav-mobile a.active { color: var(--straw); }
.nav-mobile a svg, .nav-mobile button svg { width: 16px; height: 16px; }
.nav-mobile .mobile-sub { padding-left: 52px; font-size: 14px; color: rgba(255,255,255,0.65); }
.nav-mobile .mobile-sub:hover { color: rgba(255,255,255,0.9); }
.nav-mobile .mobile-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 8px 20px; }
.nav-mobile .mobile-cta {
    margin: 12px 20px 0;
    background: var(--straw); color: var(--primary) !important;
    border-radius: 8px; font-weight: 600;
    padding: 12px 20px;
    justify-content: center;
    width: calc(100% - 40px);
}

/* ═══════════════════════════════════════
   LAYOUT PRINCIPAL
═══════════════════════════════════════ */
.main { padding-top: var(--nav-height); min-height: 100vh; }

.page-content {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 48px 40px 60px;
}

/* ═══════════════════════════════════════
   PAGE HEADER BAND (para páginas internas)
═══════════════════════════════════════ */
.page-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 44px 40px 42px;
    color: #fff;
}
.page-band-inner {
    max-width: var(--content-width);
    margin: 0 auto;
}
.page-band .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-band .breadcrumb a:hover { color: var(--straw); }
.page-band .breadcrumb span { color: rgba(255,255,255,0.35); }
.page-band .breadcrumb { color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.page-band h1 { font-size: 30px; font-weight: 700; }
.page-band > .page-band-inner > p { font-size: 15px; color: rgba(255,255,255,0.75); margin-top: 6px; }

/* ═══════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════ */
.page-header { margin-bottom: 36px; }
.breadcrumb {
    font-size: 12px; color: var(--text-light);
    margin-bottom: 8px; display: flex; align-items: center; gap: 5px;
}
.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { opacity: .5; }
.page-header h1 { font-size: 30px; font-weight: 700; color: var(--primary); line-height: 1.2; }
.page-header > p { font-size: 15px; color: var(--text-mid); margin-top: 6px; line-height: 1.65; }

/* ═══════════════════════════════════════
   HOMEPAGE HERO
═══════════════════════════════════════ */
.site-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2d45 60%, #0d1e30 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.site-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255,239,215,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.hero-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 80px 40px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: flex-end;
}
.hero-text { padding-bottom: 80px; }

.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,239,215,0.14);
    border: 1px solid rgba(255,239,215,0.2);
    color: var(--straw);
    font-size: 11.5px; font-weight: 600; letter-spacing: 1.3px; text-transform: uppercase;
    padding: 6px 15px; border-radius: 20px; margin-bottom: 24px;
}
.hero-tag svg { width: 12px; height: 12px; }

.hero-text h1 {
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 700; color: #fff; line-height: 1.15;
    margin-bottom: 18px; letter-spacing: -0.5px;
}
.hero-text h1 em { font-style: normal; color: var(--straw); }
.hero-text p { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.78; max-width: 520px; margin-bottom: 36px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Visual da direita (logo grande no hero) */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 0;
    position: relative;
}
.hero-visual img {
    width: 320px;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 60px rgba(0,0,0,0.3);
    display: block;
}

/* Feature strip abaixo do hero */
.hero-strip {
    background: var(--primary-light);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-strip-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.strip-item {
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: rgba(255,255,255,0.05); }
.strip-icon {
    width: 44px; height: 44px;
    background: rgba(255,239,215,0.12);
    border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--straw);
}
.strip-icon svg { width: 22px; height: 22px; }
.strip-num  { font-size: 22px; font-weight: 700; color: #fff; line-height: 1; }
.strip-label { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.4; margin-top: 2px; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px; border-radius: 8px;
    font-family: 'Poppins', sans-serif; font-size: 13.5px; font-weight: 600;
    cursor: pointer; text-decoration: none; transition: var(--transition);
    border: 2px solid transparent;
}
.btn-primary { background: var(--straw); color: var(--primary); border-color: var(--straw); }
.btn-primary:hover { background: var(--straw-dark); border-color: var(--straw-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,239,215,0.35); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.38); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-dark { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-dark:hover { background: var(--primary-light); border-color: var(--primary-light); transform: translateY(-1px); }

/* ═══════════════════════════════════════
   SECTION TITLE
═══════════════════════════════════════ */
.section-title {
    font-size: 20px; font-weight: 700; color: var(--primary);
    margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.section-title::after { content: ''; flex: 1; height: 1px; background: var(--gray-mid); }

/* ═══════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 22px; margin-bottom: 36px; }

.product-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow); transition: var(--transition);
    display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.product-card-header { padding: 28px 24px 20px; border-bottom: 1px solid var(--gray-mid); }
.product-icon { width: 50px; height: 50px; background: var(--straw); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--primary); }
.product-icon svg { width: 24px; height: 24px; }
.product-card h3 { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 7px; }
.product-card-header p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.product-card-body { padding: 18px 24px; flex: 1; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feature-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--text-mid); line-height: 1.5; }
.feature-list li::before { content: ''; width: 5px; height: 5px; background: var(--straw-dark); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.product-card-footer { padding: 14px 24px; border-top: 1px solid var(--gray-mid); }
.product-card-link { font-size: 13px; font-weight: 600; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.product-card-link:hover { gap: 10px; color: var(--primary-light); }

/* ═══════════════════════════════════════
   STATS ROW
═══════════════════════════════════════ */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit,minmax(170px,1fr)); gap: 18px; margin-bottom: 36px; }
.stat-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); text-align: center; }
.stat-number { font-size: 32px; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 5px; }
.stat-label  { font-size: 12.5px; color: var(--text-light); }

/* ═══════════════════════════════════════
   FEATURE HERO (páginas de produto)
═══════════════════════════════════════ */
.feature-hero {
    background: linear-gradient(140deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius); padding: 48px; color: #fff;
    margin-bottom: 28px; position: relative; overflow: hidden;
}
.feature-hero::before { content: ''; position: absolute; top: -40px; right: -40px; width: 260px; height: 260px; background: rgba(255,239,215,0.05); border-radius: 50%; }
.product-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,239,215,0.14); color: var(--straw);
    font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 20px; margin-bottom: 16px;
}
.feature-hero h2  { font-size: 30px; font-weight: 700; margin-bottom: 12px; }
.feature-hero > p { font-size: 14.5px; color: rgba(255,255,255,0.78); line-height: 1.75; max-width: 600px; margin-bottom: 28px; }

/* ═══════════════════════════════════════
   FEATURES GRID
═══════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); gap: 18px; margin-bottom: 28px; }
.feature-card { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); transition: var(--transition); }
.feature-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.feature-card-icon { width: 42px; height: 42px; background: var(--straw); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 13px; color: var(--primary); }
.feature-card-icon svg { width: 20px; height: 20px; }
.feature-card h4 { font-size: 14.5px; font-weight: 600; color: var(--primary); margin-bottom: 7px; }
.feature-card p  { font-size: 12.5px; color: var(--text-mid); line-height: 1.65; }

/* ═══════════════════════════════════════
   INFO BOX / TWO-COL / HIGHLIGHT
═══════════════════════════════════════ */
.info-box { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); margin-bottom: 22px; }
.info-box h3 { font-size: 16px; font-weight: 600; color: var(--primary); margin-bottom: 12px; }
.info-box p  { font-size: 13.5px; color: var(--text-mid); line-height: 1.75; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 28px; }
.highlight-box { background: var(--straw); border-radius: var(--radius); padding: 28px; border-left: 4px solid var(--straw-dark); }
.highlight-box h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.highlight-box p  { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* ═══════════════════════════════════════
   CTA BOX
═══════════════════════════════════════ */
.cta-box { background: linear-gradient(135deg, var(--straw) 0%, var(--straw-dark) 100%); border-radius: var(--radius); padding: 44px; text-align: center; margin-top: 32px; }
.cta-box h3 { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.cta-box p  { font-size: 14px; color: var(--text-mid); margin-bottom: 26px; max-width: 460px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 28px; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; padding: 10px 13px; border: 2px solid var(--gray-mid); border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 13.5px; color: var(--text-dark); background: var(--white); transition: var(--transition); outline: none; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(31,49,73,0.07); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-card { background: var(--primary); border-radius: var(--radius); padding: 32px; }
.contact-info-card h3 { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 20px; }
.contact-info-icon { width: 36px; height: 36px; background: rgba(255,239,215,0.13); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--straw); flex-shrink: 0; }
.contact-info-icon svg { width: 16px; height: 16px; }
.contact-info-item h4 { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 2px; font-weight: 500; }
.contact-info-item p  { font-size: 13.5px; color: rgba(255,255,255,0.88); }
.contact-info-item a  { font-size: 13.5px; color: var(--straw); text-decoration: none; }
.contact-info-item a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery-section { margin-bottom: 36px; }
.browser-frame { background: var(--white); border-radius: 10px; box-shadow: var(--shadow-hover); overflow: hidden; border: 1px solid var(--gray-mid); }
.browser-bar { background: #E8ECF0; padding: 10px 14px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--gray-mid); }
.browser-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #c0c5cc; flex-shrink: 0; }
.browser-bar .dot:nth-child(1) { background: #ff6058; }
.browser-bar .dot:nth-child(2) { background: #ffbd2e; }
.browser-bar .dot:nth-child(3) { background: #28c840; }
.browser-url { flex: 1; background: var(--white); border-radius: 5px; font-size: 12px; color: var(--text-light); padding: 4px 10px; margin-left: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gallery-featured-img { position: relative; cursor: zoom-in; background: var(--gray-light); line-height: 0; }
.gallery-featured-img img { width: 100%; height: auto; max-height: 480px; object-fit: cover; object-position: top; display: block; transition: opacity 0.25s ease; }
.gallery-zoom { position: absolute; top: 12px; right: 12px; background: rgba(31,49,73,0.75); border: none; border-radius: 8px; color: #fff; cursor: pointer; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s ease; backdrop-filter: blur(4px); }
.gallery-featured-img:hover .gallery-zoom { opacity: 1; }
.gallery-zoom svg { width: 18px; height: 18px; }
.gallery-caption { font-size: 13px; color: var(--text-light); text-align: center; padding: 10px 0 4px; min-height: 32px; font-style: italic; }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.gallery-thumb { width: 100px; height: 66px; border-radius: 7px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: var(--transition); flex-shrink: 0; background: var(--gray-mid); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 0.2s ease; }
.gallery-thumb:hover { border-color: var(--primary-light); }
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-thumb.active { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(31,49,73,0.2); }
.gallery-placeholder { background: var(--white); border: 2px dashed var(--gray-mid); border-radius: var(--radius); padding: 48px 32px; text-align: center; color: var(--text-light); }
.gallery-placeholder-icon { width: 56px; height: 56px; background: var(--gray-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--gray-mid); }
.gallery-placeholder-icon svg { width: 28px; height: 28px; }
.gallery-placeholder h4 { font-size: 15px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.gallery-placeholder p  { font-size: 13px; line-height: 1.6; }
.gallery-placeholder code { background: var(--gray-light); border-radius: 4px; padding: 2px 6px; font-size: 12px; color: var(--primary); }

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(10,15,22,0.92); z-index: 2000; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(6px); }
.lightbox.open { display: flex; }
.lightbox-content { max-width: 1100px; width: 100%; text-align: center; position: relative; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: 10px; box-shadow: 0 24px 80px rgba(0,0,0,0.5); display: block; margin: 0 auto; }
.lightbox-caption { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 14px; font-style: italic; }
.lightbox-counter { color: rgba(255,255,255,0.4); font-size: 12px; margin-top: 6px; }
.lightbox-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: #fff; cursor: pointer; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; backdrop-filter: blur(4px); }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: #fff; cursor: pointer; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; backdrop-filter: blur(4px); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 56px 40px 28px;
    margin-top: 40px;
}
.footer-inner {
    max-width: var(--content-width);
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px;
}
.footer-brand img { height: 50px; border-radius: 6px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.65); text-decoration: none; margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--straw); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--straw); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .nav-inner { padding: 0 24px; gap: 20px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; gap: 0; }
    .hero-visual { display: none; }
    .hero-text { padding-bottom: 60px; }
    .hero-strip-inner { grid-template-columns: repeat(2,1fr); }
    .strip-item:nth-child(2) { border-right: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .contact-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .page-content { padding: 36px 24px 48px; }
    .page-band { padding: 32px 24px 30px; }
}

@media (max-width: 640px) {
    .hero-text h1 { font-size: 26px; }
    .hero-text { padding: 48px 24px 52px; }
    .hero-strip-inner { grid-template-columns: 1fr 1fr; }
    .products-grid, .features-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2,1fr); }
    .cta-box { padding: 28px 20px; }
    .feature-hero { padding: 28px 20px; }
    .feature-hero h2 { font-size: 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .gallery-thumbs { gap: 7px; }
    .gallery-thumb  { width: 72px; height: 48px; }
    .lightbox-prev  { left: 6px; }
    .lightbox-next  { right: 6px; }
}
