/* Bootstrap 5.3.3 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');

/* Font Awesome 6.5.1 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* Font Montserrat */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&display=swap");


/* Garante rolagem suave globalmente */
html {
    scroll-behavior: smooth;
    font-size: 10px;
    /* overflow-x: hidden; <-- APAGUE ESTA LINHA */
    font-family: var(--font-family);
    height: auto;
}

body {
    margin: 0;
    padding: 0; 
    font-family: var(--font-family);
    overflow-x: hidden; /* Aqui no body está tudo certo manter! */
    height: auto;
    scroll-behavior: smooth;
    background-image: url(https://imagens.gimba.com.br/Images/InstitucionalPortal/img/foto_corp_recorte.jpg);
    background-size: cover;
    /*background-position: center;*/
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Content_Corporate {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

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

button {
  cursor: pointer;
}

::-moz-placeholder {
  color: var(--cinza-intermediario); /* Define a cor do placeholder */
  font-size: 12px; /* Define o tamanho da fonte */
  font-weight: 500; /* Define o peso da fonte */
  letter-spacing: 1px;
}

::placeholder {
  color: var(--cinza-intermediario); /* Define a cor do placeholder */
  font-size: 12px; /* Define o tamanho da fonte */
  font-weight: 500; /* Define o peso da fonte */
  letter-spacing: 1px;
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

:root {
  --font-family:"Montserrat", sans-serif;
  /* Colors */
  --color-vermelho:#D42631;
  --color-cinza-gg:#191919;
  --color-cinza-g:#444444;
  --color-cinza-m:#999999;
  --color-branco:#ffffff;
}

section[data-section] {
    width: 100%;
    height: 1080px;
    position: relative;
    overflow: hidden;
}

section[data-section="corporate-hero"] {
    height: auto;
    min-height: 780px;
}

section[data-section="corporate-controle"] {
    background:linear-gradient(133deg, #67696b 0%, #2b2b2b 15%, #000000 45%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

section[data-section="corporate-tecnologia"] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

section[data-section="corporate-logistica"] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

section[data-section="corporate-clientes"] {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, #111111 15%, #000000 100%);
}

section[data-section="corporate-clientes-videos"] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto !important;
    background: #000;
}

section[data-section="corporate-mix"] {
    background:linear-gradient(47deg, #67696b 0%, #2b2b2b 15%, #000000 45%, #000000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}


section[data-section="corporate-final"] {
    background-position: center;
    background-repeat: no-repeat;
}

section[data-section="corporate-final"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}




