/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Colors - Modern Industrial Palette */

    /* BRAND SECONDARY COLOR: POWER BLUE */
    --primary: #3e48cc;
    --primary-light: #525ceb;
    /* Lighter Blue for gradients/hover */

    /* NEW BRAND COLOR: CHEEKY YELLOW */
    --accent: #fcca22;
    --accent-dark: #eab308;
    /* Darker Gold for hover */
    --accent-glow: rgba(252, 202, 34, 0.4);

    --text-main: #1e293b;
    /* Keep text slate for readability */
    --text-muted: #64748b;
    --text-light: #f1f5f9;

    --bg-body: #f8fafc;
    --bg-card: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #fcca22 0%, #f59e0b 100%);
    --gradient-dark: linear-gradient(135deg, #525ceb 0%, #3e48cc 100%);
    /* Blue Gradient */

    /* Layout */
    --container-max: 1280px;
    --header-height: 90px;
    /* Reduced header height */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Shadow */
    --shadow-sm: 0 4px 6px -1px rgba(62, 72, 204, 0.1);
    /* Blue tinted shadow */
    --shadow-md: 0 10px 15px -3px rgba(62, 72, 204, 0.15);
    --shadow-lg: 0 20px 25px -5px rgba(62, 72, 204, 0.15), 0 10px 10px -5px rgba(62, 72, 204, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary);
    line-height: 1.1;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.section {
    padding: 6rem 0;
    scroll-margin-top: calc(var(--header-height) + 2rem);
    /* Fix jump cut */
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-header .subtitle {
    color: var(--accent);
    font-weight: 700;
    /* Bolder */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.125rem;
    /* Increased from 0.875rem */
    display: block;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em 1.6em;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    gap: 0.5rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s;
}

.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: var(--primary);
    /* Blue text on yellow for contrast */
    box-shadow: 0 4px 15px var(--accent-glow);
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

.btn-solid-dark {
    background: var(--primary);
    color: white;
}

.btn-solid-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: white;
}


/* =========================================
   2. NAVBAR
   ========================================= */
.navbar {
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    /* Use Blue Variable */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
    padding: 5px 0;
}

/* Logo Image Styling */
.logo-img {
    height: 170px;
    /* Adjusted for smaller header */
    width: auto;
    object-fit: contain;
    transform: scale(1.4);
    /* Extra zoom if container limits it */
    transform-origin: left center;
}

/* Close Button (Hidden on Desktop) */
.menu-close {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a:not(.btn-nav) {
    font-weight: 500;
    color: white;
    /* White text on dark header */
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:not(.btn-nav) i {
    color: var(--accent);
    font-size: 1rem;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--accent);
    /* Hover yellow */
}

/* Desktop Fale Conosco Button */
.btn-solid-accent {
    background-color: transparent;
    /* Default state for desktop if outline preferred, or solid? User asked for solid */
    /* Actually user liked the mobile solid button. Let's make it solid on desktop too */
    background-color: transparent;
    color: var(--text-main);
    font-weight: 600;
    padding: 0.5rem 0;
    /* Just a link style on desktop? No, user wants it to look like mobile */
}

/* Wait, the user said "ajuste para ficar como está no mobile" referring to the look.
       On mobile: Solid Orange Button with Icon. Link items have icons.
       So on Desktop: 
       - Links should have icons.
       - "Fale Conosco" should be a Solid Orange Button.
    */



/* Common Button Style (Desktop & Mobile) */
.btn-solid-accent {
    background-color: var(--accent);
    /* Solid yellow global */
    color: var(--primary) !important;
    /* Dark text on Yellow */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 202, 34, 0.3);
}

.btn-solid-accent:hover {
    background-color: white;
    /* Flip interaction */
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 202, 34, 0.5);
    border-color: transparent;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    /* White hamburger on dark header */
    cursor: pointer;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: calc(var(--header-height) * -1);
    /* pull under nav based on var */
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('construloren_frente loja1.webp');
    /* User provided storefront image */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 60%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
    margin-left: 0;
    /* Left align content for drama */
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
}

.stat-item span {
    font-size: 0.875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   4. PRODUCT LIST (Clean Grid)
   ========================================= */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.prod-icon {
    width: 50px;
    height: 50px;
    background: rgba(62, 72, 204, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.product-item:hover .prod-icon {
    background: var(--primary);
    color: white;
}

.prod-info h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.prod-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* =========================================
   5. FEATURES (GLASS CARDS)
   ========================================= */
.bg-dark-slate {
    background-color: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
}

.pattern-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.gradient-1 {
    background: linear-gradient(135deg, #f97316, #fca5a5);
}

.gradient-2 {
    background: linear-gradient(135deg, #3b82f6, #93c5fd);
}

.gradient-3 {
    background: linear-gradient(135deg, #10b981, #6ee7b7);
}

.feature-box h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-box p {
    color: #94a3b8;
}

/* =========================================
   6. LOCATION SPLIT & FOOTER
   ========================================= */
.split-section {
    padding: 0;
    display: flex;
    height: 600px;
    background: var(--bg-white);
}

.split-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.content-wrapper {
    max-width: 500px;
}

.split-map {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.contact-list {
    margin: 2rem 0;
    list-style: none;
}

.contact-list li {
    margin-bottom: 1.5rem;
    padding: 0;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.contact-list li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.contact-item-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.contact-item-link i {
    font-size: 1.5rem;
    color: var(--accent);
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

/* Footer */
.main-footer {
    background: #020617;
    color: white;
    padding: 4rem 0 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #64748b;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #cbd5e1;
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    font-size: 1.5rem;
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    color: #475569;
    font-size: 0.875rem;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20bd5a;
}

.tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: #1e293b;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
   7. ANIMATIONS & RESPONSIVE
   ========================================= */

/* Mobile Optimization (Reduce Stacking) */
@media (max-width: 900px) {

    /* Hero Adjustments */
    .hero {
        min-height: auto;
        height: auto;
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 4rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    /* Fixed Stats Layout: Single Line */
    .hero-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        /* Force single line */
        gap: 1rem;
        justify-content: space-between;
    }

    .stat-item {
        flex: 1;
        /* Distribute space evenly */
        text-align: center;
        min-width: 0;
        /* Allow shrinking */
    }

    .stat-item strong {
        font-size: 1.5rem;
        /* Smaller font for mobile */
    }

    .stat-item span {
        font-size: 0.7rem;
        /* Smaller text */
        white-space: nowrap;
        /* Prevent breaking if possible, or let it break naturally */
        display: block;
    }

    /* Procuts List Mobile */
    .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.25rem 1rem;
        gap: 0.75rem;
    }

    .product-item .prod-icon {
        margin-bottom: 0.25rem;
    }

    .product-item h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .product-item p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    /* Nav Mobile - Completely Revamped */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 85%;
        /* Slightly wider */
        max-width: 400px;
        background: white;
        /* Clean white bg */
        flex-direction: column;
        justify-content: flex-start;
        /* Start from top */
        padding: 6rem 2rem 2rem;
        /* More top padding for close button space */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1100;
        gap: 1rem;
        /* Less whitespace between items */
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Close Button - Top Right & Cleaner */
    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: #f1f5f9;
        /* Subtle grey bg circle */
        border: none;
        border-radius: 50%;
        font-size: 1.5rem;
        color: var(--primary);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        z-index: 1101;
    }

    .menu-close:hover {
        background: #e2e8f0;
        transform: rotate(90deg);
    }

    /* Mobile Links Styling */
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 0.75rem;
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 1rem;
    }

    .nav-links a:not(.btn-nav) {
        font-size: 1.35rem;
        /* Bigger for touch */
        color: var(--primary);
        display: flex;
        align-items: center;
        gap: 1rem;
        font-weight: 600;
    }

    .nav-links a i {
        color: var(--accent);
        width: 24px;
        text-align: center;
    }

    /* Improved Mobile Button with Icon */
    .btn-solid-accent {
        width: 100%;
        background-color: var(--accent);
        /* Solid orange */
        color: white !important;
        display: flex;
        /* Flex for icon alignment */
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem;
        border-radius: 12px;
        font-size: 1.2rem;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    }

    .btn-solid-accent i {
        font-size: 1.4rem;
    }

    .nav-links .btn-nav:hover {
        background-color: var(--accent-dark);
        transform: translateY(-2px);
    }

    /* Horizontal Scroll for Features (Avoid Stacking) */
    .features-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        /* Space for scrollbar */
        padding-right: 2rem;
        /* End padding */
        margin-right: -2rem;
        /* Negative margin to touch screen edge */
    }

    .feature-box {
        min-width: 260px;
        /* Fixed width for scroll cards */
        scroll-snap-align: start;
        margin-bottom: 0;
    }

    /* Footer & Maps */
    .split-section {
        flex-direction: column;
        height: auto;
    }

    .split-content {
        padding: 3rem 1.5rem;
    }

    .split-map {
        width: 100%;
        height: 300px;
    }

    /* Nav Mobile */
    /* The old nav-mobile styles are replaced by the new ones above */

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .action-buttons .btn {
        width: 100%;
        margin-left: 0 !important;
        margin-top: 1rem;
    }

    /* Adjust Section Padding for Mobile */
    .section {
        padding: 3rem 0;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   8. SUPPLIERS SECTIONS
   ========================================= */
.main-suppliers-section {
    padding: 2.5rem 0;
    background-color: white;
    border-bottom: 1px solid #e2e8f0;
}

.main-suppliers-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.suppliers-logos {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.suppliers-logos img {
    max-height: 50px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.suppliers-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.suppliers-cta {
    white-space: nowrap;
}

.btn-sm {
    padding: 0.6em 1.2em;
    font-size: 0.9rem;
}

/* Full Suppliers Page Grid */
.suppliers-grid-all {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.supplier-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.supplier-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.supplier-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.supplier-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .main-suppliers-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 2rem;
    }

    .suppliers-logos {
        justify-content: center;
        gap: 2rem;
    }

    .suppliers-logos img {
        height: 35px;
    }
}