/* =========================================================================
   RESETA, FONTES E CORES GLOBAIS
   ========================================================================= */
* {
    box-sizing: border-box; 
    margin: 0;
    padding: 0;
}

:root {
    /* NOVO TOM PRINCIPAL: Roxo Profundo/Púrpura */
    --color-primary: #47166B; 
    /* Variação para Hover e Elementos de Destaque */
    --color-primary-dark: #351052; 

    /* Cores de Texto e Escuras */
    --color-dark: #1A1A1A; /* Preto mais intenso para forte contraste */
    --color-text-light: #555555; /* Cinza para textos secundários */
    --color-border: #e0e0e0; /* Cinza claro para bordas */

    /* Cores de Fundo (Base Creme Suave com Tons de Cinza/Bege) */
    --color-light: #fefdfb; /* Creme suave */

    /* Cores de Fundo para as Seções (Degradê de Fundo Claro) */
    --bg-color-a: #ffffff; /* Branco puro para base */
    --bg-color-b: #f8f8f8; /* Cinza/Bege super claro */
    --bg-color-c: #eeeeee; /* Cinza/Bege claro */
    --bg-color-d: #e0e0e0; /* Cinza/Bege suave para destaque */
    --bg-color-dark: #333; /* Fundo Escuro para Seção Qualidade */

    --section-padding-desktop: 120px;
    --section-padding-mobile: 60px;
    --content-max-width: 1200px;
    --side-margin: 5%;
}

body {
    font-family: 'Lexend', sans-serif;
    color: var(--color-dark);
    background-color: var(--bg-color-a); 
    scroll-behavior: smooth;
    overflow-x: hidden; /* Garante que não haja rolagem horizontal */
    line-height: 1.7;
}
/* Adicionado para prevenir rolagem quando o menu mobile está ativo */
body.no-scroll {
    overflow: hidden;
}

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

.vms-section {
    padding: var(--section-padding-desktop) var(--side-margin);
    position: relative;
    width: 100%;
    max-width: var(--content-max-width); /* Limita a largura do conteúdo da seção */
    margin: 0 auto; /* Centraliza o conteúdo da seção */
}
/* Sobrescreve para que o padding lateral funcione */
.vms-section:not(.features-section) {
    padding-left: var(--side-margin);
    padding-right: var(--side-margin);
}


/* Tipografia Base (Mantida) */
.display-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}
.lead-text {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}
.subtitle-cursive {
    font-family: 'Playfair Display', serif; 
    font-style: italic;
    font-weight: 400;
    font-size: 1.9rem;
    color: var(--color-primary); 
    line-height: 1;
    margin-bottom: 10px;
}
.card-text, .text-block-content {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

/* =========================================================================
   BOTÕES E EFEITOS DE HOVER (Mantido)
   ========================================================================= */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    text-align: center;
}

.button-primary {
    background-color: var(--color-primary);
    color: white;
}
.button-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.button-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
.button-secondary:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.button-tertiary {
    background-color: var(--color-dark);
    color: white;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 0.9rem;
}
.button-tertiary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.button-submit {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: var(--color-dark);
    color: white;
    width: 100%;
    margin-top: 15px;
}
.button-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-primary); 
    transition: width 0.4s;
    z-index: -1;
}
.button-submit:hover {
    color: var(--color-dark); 
}
.button-submit:hover::before {
    width: 100%;
}

.hover-zoom img {
    transition: transform 0.6s ease;
}
.hover-zoom:hover img {
    transform: scale(1.05);
}


/* =========================================================================
   NAVBAR E MENU HAMBURGUER (Mantido)
   ========================================================================= */
.navbar-vms {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: none; /* Navbar deve ter largura total */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--side-margin);
    z-index: 1000; 
    background-color: var(--bg-color-a);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.vms-logo {
  color: var(--color-dark);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
    img  {
      max-width: 150px;
  max-height: 150px;
 }
}
.logo-subtext {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    display: block;
    margin-top: 2px;
}

/* Links Desktop */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-item {
    color: var(--color-text-light);
    font-size: 0.95rem;
    padding-bottom: 2px;
    position: relative;
}
.nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}
.nav-item:hover::after {
    width: 100%;
}
.nav-item.cta-link {
    color: white; 
    background-color: var(--color-dark);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    margin-left: 20px;
}
.nav-item.cta-link:hover {
    background-color: var(--color-primary-dark);
    color: white;
}
.nav-item.cta-link::after {
    display: none; 
}

/* Hamburguer Button - Oculto no Desktop */
.hamburger-menu {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001; 
    padding: 10px;
    margin-right: -10px;
}
.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--color-dark);
    transition: all 0.3s ease-in-out;
}
/* Estado "active" é controlado via JavaScript */
.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================================
   1. HERO SECTION (AJUSTE CRÍTICO DE LAYOUT)
   ========================================================================= */
.hero-section {
    padding-top: 180px; 
    min-height: 95vh;
    display: flex; 
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color-a);
    max-width: none; /* Deve ocupar a largura total do viewport */
    overflow: hidden; /* CRÍTICO: Limpa o float/garante o container */
}
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: var(--color-primary);
    opacity: 0.05; 
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%); 
    z-index: 0;
}
.hero-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; 
    max-width: var(--content-max-width); /* Limita o conteúdo interno */
    width: 100%;
    height: 100%;
    align-items: center;
    gap: 50px;
    z-index: 1; 
}
.hero-text-block {
    padding-right: 30px;
}
.hero-image-block {
    height: 65vh;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-color-d); 
}
.hero-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================================================================
   RECURSOS DESTACADOS (FEATURES) (MELHORADO O ESPAÇAMENTO E O FUNDO)
   ========================================================================= */
.features-section {
    /* AJUSTE: Aumenta o padding superior e inferior para criar espaço */
    padding-top: var(--section-padding-desktop); 
    padding-bottom: var(--section-padding-desktop);
    
    /* Degradê que cria separação elegante e sutil. O Bege B e C são tons próximos. */
    background: linear-gradient(180deg, var(--bg-color-b) 0%, var(--bg-color-c) 100%); 
    
    max-width: none; /* A cor de fundo e o grid devem ser de largura total */
}
.features-grid {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0;
}
.feature-item {
    text-align: center;
    padding: 40px 30px; 
    
    /* Fundo ligeiramente mais claro que o da seção para contraste */
    background-color: var(--bg-color-a); 
    
    border-radius: 12px; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); 
    transition: all 0.4s ease; 
    border: none; 
}
.feature-item:hover {
    /* Sombra mais forte e leve levantamento para o efeito 'sem vida' sumir */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); 
    transform: translateY(-8px); 
}
.feature-icon {
    font-size: 3.5rem; 
    color: var(--color-primary);
    margin-bottom: 25px; 
    position: relative;
    display: inline-block; 
    transition: transform 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); 
}
.feature-item:hover .feature-icon {
    transform: translateY(-5px); 
    color: var(--color-primary-dark); 
}
.feature-title {
    font-size: 1.4rem; 
    font-weight: 700; 
    margin-bottom: 15px; 
    color: var(--color-dark);
}
.feature-item p {
    font-size: 1rem; 
    color: var(--color-text-light);
    line-height: 1.6;
}


/* =========================================================================
   2. SOBRE NÓS 
   ========================================================================= */
.about-section {
    padding-top: var(--section-padding-desktop); 
    padding-bottom: var(--section-padding-desktop);
    background-color: var(--bg-color-c); 
    max-width: none; /* Fundo deve ser de largura total */
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; 
    grid-template-rows: auto;
    max-width: var(--content-max-width);
    margin: 0 auto;
    position: relative;
    align-items: center;
    padding: 0; /* Remove padding lateral */
    min-height: 70vh;
}

.about-image {
    grid-column: 1 / 3; 
    grid-row: 1;
    height: 70vh;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-color-d); 
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text-card {
    grid-column: 2 / 4; 
    grid-row: 1;
    position: relative; 
    left: -15%; 
    background-color: white;
    padding: 60px;
    width: 500px; 
    max-width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 10;
    transition: transform 0.4s ease;
}
.about-text-card:hover {
    transform: scale(1.02);
}

/* Forma Geométrica Circular (Círculo) */
.about-float-image {
    position: absolute;
    bottom: 5%; 
    right: 5%; 
    width: 180px;
    height: 180px;
    background-color: var(--color-primary-dark); 
    opacity: 0.7;
    border-radius: 50%; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: transform 0.4s ease;
}
.about-float-image:hover {
    transform: scale(1.1);
    opacity: 1;
}
.about-float-image img { 
    display: none;
}


/* =========================================================================
   3. MERCADOS 
   ========================================================================= */
.markets-section {
    background-color: var(--bg-color-d); 
    max-width: none; /* Fundo deve ser de largura total */
}
.markets-container {
    display: grid;
    grid-template-columns: 40% 60%; 
    max-width: var(--content-max-width); 
    margin: 0 auto;
    position: relative;
    padding: 0; /* Remove padding lateral */
}

.markets-header {
    grid-column: 1 / 2;
    padding-right: 50px;
    padding-top: 40px; 
}

/* Nova estrutura de Segmentos */
.markets-list-grid {
    grid-column: 2 / 3;
    display: flex; 
    flex-direction: column;
    position: relative;
    z-index: 2;
    background-color: var(--bg-color-a); 
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.market-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.market-item:last-child {
    border-bottom: none;
}

.market-item:hover {
    background-color: rgba(183, 160, 146, 0.05); 
}

.market-item .item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0;
    flex-basis: 30%; 
    display: flex;
    align-items: center;
    gap: 10px;
}

.market-item .item-title .arrow {
    font-size: 1rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}
.market-item:hover .item-title .arrow {
    transform: translateX(5px);
}

.market-item .item-description {
    font-size: 1rem;
    color: var(--color-text-light);
    flex-basis: 65%; 
    text-align: right;
}

/* Forma Geométrica Retangular Rotacionada (Mantido) */
.markets-float-image {
    position: absolute;
    top: 50%; 
    right: 0;
    transform: translateY(-50%) rotate(-7deg); 
    width: 400px; 
    height: 100%; 
    background-color: var(--color-primary); 
    opacity: 0.2; 
    border-radius: 8px;
    z-index: 0; 
    transition: transform 0.4s ease;
}
.markets-float-image:hover {
    transform: translateY(-50%) rotate(0deg); 
    opacity: 0.3;
}
.markets-float-image img {
    display: none;
}


/* =========================================================================
   4. QUALIDADE (Mantido)
   ========================================================================= */
.quality-section {
    padding-top: var(--section-padding-desktop);
    padding-bottom: var(--section-padding-desktop);
    background-color: var(--bg-color-dark); 
    color: white;
    background-image: radial-gradient(circle at top left, rgba(183, 160, 146, 0.1) 0%, transparent 70%),
                      linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-blend-mode: soft-light; 
    max-width: none;
}
.quality-section .display-title, .quality-section .lead-text {
    color: white;
}
.quality-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    max-width: var(--content-max-width); 
    margin: 0 auto;
    align-items: center;
    position: relative;
    padding: 0;
}
.quality-text-block {
    padding-right: 50px;
    z-index: 2;
}
.certification-info {
    margin-top: 30px;
    margin-bottom: 10px
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* CARROSSEL */
.quality-carousel-container {
    position: relative;
    height: 550px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    margin-left: -50px; 
    background-color: var(--color-primary); /* Placeholder */
}
.carousel-images {
    display: flex;
    width: 300%; 
    height: 100%;
    transition: transform 0.8s ease-in-out;
}
.carousel-images img {
    width: calc(100% / 3); 
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}
.carousel-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}
.carousel-btn:hover {
    background-color: var(--color-primary);
}

.quality-tagline {
    position: absolute;
    bottom: 50px;
    right: var(--side-margin);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.1);
}


/* =========================================================================
   5. EXPERTISE (Mantido)
   ========================================================================= */
.expertise-section {
    background-color: var(--bg-color-c);
    max-width: none;
}
.expertise-container {
    display: flex;
    max-width: var(--content-max-width); 
    margin: 0 auto;
    align-items: center;
    gap: 80px;
    padding: 0;
}

.expertise-image-block {
    flex: 0 0 45%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-color-d); /* Placeholder */
}
.expertise-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-text-block {
    flex: 0 0 55%;
}


/* =========================================================================
   6. CONTATO E FOOTER (Mantido)
   ========================================================================= */
.contact-section {
    padding-top: var(--section-padding-desktop);
    padding-bottom: var(--section-padding-desktop); 
    text-align: center;
    background-color: var(--bg-color-a);
    max-width: none;
}
.contact-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--color-dark);
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-primary);
    outline: none;
}
.contact-info {
    margin-top: 30px;
    font-size: 0.95rem;
    color: var(--color-text-light);
}
.contact-info a {
    color: var(--color-primary);
    font-weight: 600;
}
.contact-info a:hover {
    color: var(--color-primary-dark);
}

.site-footer {
    position: relative; 
    width: 100%;
    padding: 30px var(--side-margin);
    border-top: 1px solid #eee;
    margin-top: 50px; 
    max-width: none;
}
.footer-details {
    display: flex;
    justify-content: space-between;
    max-width: var(--content-max-width);
    margin: 0 auto;
    align-items: center;
}
.footer-social {
    order: -1; 
    display: flex;
    gap: 20px;
}
.footer-social a {
    color: var(--color-text-light);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}
.footer-social a:hover {
    color: var(--color-primary);
}
.footer-logo {
    color: var(--color-dark);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}
.footer-copyright {
    font-size: 0.8rem;
    color: var(--color-text-light);
}


/* =========================================================================
   RESPONSIVIDADE (MOBILE - abaixo de 991px)
   ========================================================================= */
@media (max-width: 991px) {
    
    :root {
        --section-padding-desktop: 80px;
        --section-padding-mobile: 40px;
    }
    
    /* Navbar Mobile */
    .nav-links {
        display: none; 
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color-a);
        padding-top: 100px;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999; 
    }
    .nav-links.active {
        display: flex;
        transform: translateX(0); 
    }
    
    .nav-item {
        font-size: 1.5rem;
        padding: 15px 0;
        width: 100%;
        text-align: center;
        margin: 0;
    }
    .nav-item.cta-link {
        margin-top: 20px;
        margin-left: 0;
        width: 80%;
    }
    .social-icons-nav {
        display: flex;
        margin-top: 30px;
        gap: 30px;
    }
    
    /* Mostra o Hamburguer */
    .hamburger-menu {
        display: block; 
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding-top: 100px; 
        min-height: auto;
    }
    .hero-section::after {
        width: 100%;
        height: 50%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); 
        opacity: 0.03;
    }
    .hero-content {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    .hero-image-block {
        height: 40vh;
    }
    
    /* Features Mobile - Ajusta o padding e o layout */
    .features-section {
        padding-top: var(--section-padding-mobile); /* Garantindo padding no mobile */
        padding-bottom: var(--section-padding-mobile);
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .feature-item {
        padding: 30px 20px;
    }
    .feature-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    .feature-title {
        font-size: 1.3rem;
    }
    .feature-item:hover {
        transform: none; 
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); 
    }
    .feature-item:hover .feature-icon {
        transform: none;
    }

    /* Sobre Nós (CORREÇÃO DE LAYOUT) */
    .about-section {
        padding-top: var(--section-padding-mobile);
    }
    .about-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .about-image {
        grid-column: 1 / 2;
        grid-row: 1;
        height: 50vh;
    }
    .about-text-card {
        grid-column: 1 / 2;
        grid-row: 2; 
        left: 0;
        width: 100%;
        margin-top: -50px; 
        padding: 40px;
        transform: none; 
    }
    .about-text-card:hover {
        transform: none; 
    }
    
    /* Formas CSS desabilitadas no mobile */
    .about-float-image,
    .markets-float-image {
        display: none; 
    }

    /* Mercados Mobile */
    .markets-container {
        grid-template-columns: 1fr;
    }
    .markets-header {
        grid-column: 1 / 2;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .markets-list-grid {
        grid-column: 1 / 2;
        padding: 20px;
    }
    .market-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }
    .market-item .item-title {
        flex-basis: 100%;
        margin-bottom: 5px;
        font-size: 1.2rem;
    }
    .market-item .item-description {
        flex-basis: 100%;
        text-align: left;
        font-size: 0.95rem;
        color: var(--color-text-light);
    }
    
    /* Qualidade */
    .quality-grid {
        grid-template-columns: 1fr;
    }
    .quality-text-block {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .quality-carousel-container {
        margin-left: 0;
        height: 400px;
    }
    
    /* Expertise */
    .expertise-container {
        flex-direction: column;
        gap: 40px;
    }
    .expertise-image-block {
        order: 2; 
        flex: 0 0 auto;
        width: 100%;
        height: 350px;
    }
    .expertise-text-block {
        order: 1; 
        flex: 0 0 auto;
    }

    /* Footer */
    .footer-details {
        flex-direction: column;
        gap: 15px;
    }
    .footer-social {
        order: 0;
    }
    .footer-copyright {
        order: 1;
        margin-top: 10px;
    }
}