/* Reset CSS */
/* Regular - Latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/roboto/v32/KFOmCnqEu92Fr1Mu4mxK.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Medium - Latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmEU9fBBc4.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Bold - Latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmWUlfBBc4.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

a {
  text-decoration: none;
  color: var(--btn-bg-hover);
}

/* Estilização padrão */
body {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  width: 100%;
}

/*Estilização variável*/
:root {
  /* Fontes */
  --font-family-h1: "Poppins", sans-serif;
  --font-family-h2: "Roboto", sans-serif;

  /* Font sizes */
  --font-size-xs: 0.75em;
  /* 12px */
  --font-size-sm: 0.875em;
  /* 14px */
  --font-size-md: 1em;
  /* 16px */
  --font-size-lg: 1.125em;
  /* 18px */
  --font-size-lg-plus: 1.25em;
  /* 20px */
  --font-size-xl: 1.5em;
  /* 24px */
  --font-size-2xl: 2em;
  /* 32px */
  --font-size-2xl-plus: 2.25em;
  /* 36px */
  --font-size-3xl-minus: 2.625em;
  /* 42px */
  --font-size-3xl: 3.375em;
  /* 54px */
  --font-size-4xl-minus: 3.75em;
  /*60*/
  --font-size-4xl: 4em;
  /* 64px */

  /* Font Weights */
  --font-weight-thin: 100;
  --font-weight-extra-light: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extra-bold: 800;
  --font-weight-black: 900;

  /* Line Heights */
  --line-height-xs: 1.5;
  /* 24px */
  --line-height-sm: 2;
  /* 32px */
  --line-height-md: 2.25;
  /* 36px */
  --line-height-lg: 2.625;
  /* 42px */
  --line-height-xl: 3;
  /* 48px */
  --line-height-2xl: 3.5;
  /* 56px */
  --line-height-3xl: 3.75;
  /* 60px */
  --line-height-4xl: 4;
  /* 64px */
  --line-height-5xl: 4.5;
  /* 72px */

  /* Cores principais */
  --color-alert: #B14A08;
  --color-text: #D9D9D9;
  --color-text-destak: #D4590A;
  --color-text-inverse: #111111;
  --color-text-hover: #F57423;
  --color-text-form: #404040;
  --color-label: #333333;
  --color-placeholder: #717171;
  --color-border: #8F8E8E;
  --background-color: #111111;
  --background-color-sections: #FFFFFF;
  --background-color-form: #F7F7F7;
  --background-color-form-inverse: #000000;
  --menu-color: rgba(0, 0, 0, 0.9);

  /* Botões */
  --btn-bg: rgba(255, 255, 255, 0.05);
  --btn-bg-hover: #EC630B;
  --btn-shadow: rgba(0, 0, 0, 0.4);
  --btn-text-color: #320;

  /* Gradientes */
  --gradiente-button: linear-gradient(180deg, #D4590A 0%, #B14A08 100%);

  /* Cores adicionais */
  --second-color: #F9CFB3;
  --input-bg: #F7F7F7;
  --input-border: #EDEDED;
  --input-border-focus: #F57423;
  --promotion-text: #B3B3B3;

  /* Rodapé */
  --footer-bg: #000000;
  --footer-text: #FFFFFF;
  --footer-border: #444444;
  --footer-hover: #F57423;

  /* Outros */
  --radio-bg: #FFFFFF;
  --radio-bg-qtd: #2E2E2E;
  --radio-border: #000000;
  --textarea-bg: #444444;

  /* Responsividade */
  --mobile-breakpoint: 600px;
  --intermediary-breakpoint: 1060px;
  --tablet-breakpoint: 900px;
  --laptop-breakpoint: 1400px;
  --section-limit-width: 1160px;
}

body {
  background-color: var(--background-color);
}


a:focus {
  font-weight: var(--font-weight-bold);
  outline: none;
  border-bottom: 1px dashed var(--color-border);
}

button:focus {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-md);
  outline: none;
  box-shadow: 0px 2px 2px 0px var(--second-color);
}


/*select {
  padding: 10px;
  font-size: var(--font-size-sm);
  border: 1px solid #EDEDED;
  border-radius: 4px;
  background-color: var(--background-color-form);
  color: var(--color-placeholder);
}*/

.custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 12px 16px;
  font-size: var(--font-size-sm);
  border: 1px solid var(--input-border);
  border-radius: 4px;
  background-color: var(--background-color-form);
  color: var(--color-placeholder);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.custom-select select:focus {
  outline: none;
  border-color: var(--input-focus-border);
}

.custom-select .arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
  border: solid var(--color-placeholder);
  border-width: 0 2px 2px 0;
  padding: 4px;
  pointer-events: none;
}


.custom-select select:focus~.arrow {
  border-color: var(--input-focus-border);
  transform: translateY(-50%) rotate(-135deg);
}

.select-mobile-container {
  display: none;
}

/* Estados personalizados para a seta */
.arrow.down {
  transform: translateY(-50%) rotate(45deg);
}

.arrow.up {
  transform: translateY(-50%) rotate(-135deg);
}

select.select-products {
  margin-top: 8px;
  padding: 10px;
  font-size: var(--font-size-sm);
  border: 1px solid #EDEDED;
  border-radius: 4px;
  color: var(--color-placeholder);
}

option {
  padding: 10px;
  font-size: var(--font-size-xs);
  background-color: #333;
  color: #fff;
}

.select-products {
  max-height: 100px;
  overflow-y: auto;
}


@media screen and (max-width: 600px) {
  button {
    font-size: var(--font-size-sm);
    gap: 10px;
  }
}

@media (max-width: 800px) {
  .custom-select select {
    padding: 10px;
    font-size: var(--font-size-sm);
  }

  .custom-select .arrow {
    right: 8px;
  }
}



/*Header com menu Hamburguer*/
#logo {
  padding: 0.375rem;
  margin: 0.375rem 2rem 0;
}

a.logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-title);
  font-size: 1.5em;
  text-decoration: none;
  gap: 2%;
  color: var(--color-text);
}

a.logo-container span {
  color: var(--color-text);
}

.logo-container img {
  width: 60%;
}

#header {
  position: fixed;
  box-sizing: border-box;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--menu-color);
  border-bottom: 1px solid var(--color-border);
  padding: 0 40px;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#menu {
  display: flex;
  list-style: none;
  gap: 1rem;
}

#menu a {
  display: block;
  padding: 0.5rem;
  text-decoration: none;
  color: var(--color-text);
}

#menu a:hover {
  color: var(--color-text-hover);
}

#btn-mobile {
  display: none;
}

.select-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-text);
}

.select-menu a {
  text-decoration: none;
}

@media (max-width: 900px) {
  a {
    color: var(--color-text);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
  }

  #header {
    justify-content: space-between;
  }

  #menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    top: 80px;
    right: 0px;
    background-color: var(--menu-color);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }

  nav.active #menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  #menu a {
    padding: 1rem 0;
    margin: 0 1rem;
    border-bottom: 2px solid rgba(184, 184, 184, 0.3);
  }

  #btn-mobile {
    display: flex;
    padding: 2rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
  }

  #hamburguer {
    color: var(--color-text-hover);
    width: 20px;
    border-top: 3px solid;
  }

  #hamburguer.active {
    border-top-color: transparent;
  }

  #hamburguer.active::before {
    transform: rotate(-135deg);
  }

  #hamburguer.active::after {
    transform: rotate(135deg);
    top: -8px;
  }

  #hamburguer::after,
  #hamburguer::before {
    content: "";
    display: block;
    width: 20px;
    height: 3px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }

  #nav.active #hamburguer {
    border-top-color: transparent;
  }

  #nav.active #hamburguer::before {
    transform: rotate(-135deg);
  }

  #nav.active #hamburguer::after {
    transform: rotate(135deg);
    top: -8px;
  }

}

/*hero*/

main>section#hero {
  min-height: 600px;
}

#hero {
  flex-grow: 1;
  position: relative;
  background-color: var(--background-color);
  text-align: justify;
  padding: 1rem;
  background-image: url('../assets/imgs/decor.svg');
  background-size: 52px;
  background-position: calc(0% + 6%) calc(100% - 6%);
  background-repeat: no-repeat;
}

.hero-container {
  max-width: var(--section-limit-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  /* Garante que o conteúdo esteja acima da imagem de fundo */
}

/* Pseudo-elemento para imagem de fundo que transborda */
.hero-container::after {
  content: '';
  position: absolute;
  background-image: url('../assets/imgs/hero.png');
  /* Fallback para navegadores sem suporte a WebP */
  background-size: 40% auto;
  background-position: right -30px;
  background-repeat: no-repeat;
  width: 120%;
  height: 140%;
  top: 0;
  right: 0;
  transform: translateY(20%);
  z-index: -1;
  aspect-ratio: 16 / 9;
}

.hero-container::after {
  aspect-ratio: 16/9;
}

/* Aplicar WebP apenas em navegadores que suportam */
@supports (background-image: url('data:image/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAAAAEAAQAAEAQUxQSBgAAAAwAQCdASoEAAQAAVAfCWkA')) {
  .hero-container::after {
    background-image: url('../assets/imgs/hero.webp');
  }
}

.presentation {
  position: relative;
  overflow: visible;
  margin-top: 120px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: var(--color-text-hover);
  font-family: var(--font-family-h2);
}

.presentation h1 {
  max-width: 755px;
  width: 100%;
  height: auto;
  flex-shrink: 0;
  color: var(--color-text-destak);
  font-size: var(--font-size-4xl);
  font-style: normal;
  font-weight: var(--font-weight-bold);
  /*line-height: var(--line-height-5xl);*/
  text-align: left;
  margin-bottom: 1.5rem;
}

.presentation h2,
.presentation .hero-subtitle {
  max-width: 615px;
  width: 100%;
  color: var(--color-text);
  font-family: Roboto;
  font-size: var(--font-size-xl);
  font-style: normal;
  font-weight: var(--font-weight-regular);
  line-height: var(--font-size-2xl-plus);
  margin-bottom: 2.5rem;
}

@media (max-width: 800px) {
  #header {
    padding: 0 1rem;
  }

  #logo {
    padding: 0.375rem;
    margin: 0.375rem;
  }

  .logo-container img {
    width: 90%;
  }

  .hero-container {
    flex-direction: column;
    padding-top: 80px;
  }

  .hero-container::after {
    background-position: right 220px;
  }

  .contact-button {
    width: 200px;
  }

  .presentation {
    max-width: 100%;
    margin: 0 50px 0 0;
  }

  .presentation h1 {
    font-size: var(--font-size-2xl-plus);
    /* line-height: var(--line-height-xl);*/
    width: 100%;
    margin-bottom: 1rem;
    max-width: 300px;
  }

  .presentation h2,
  .presentation .hero-subtitle {
    font-size: 18px;
    line-height: var(--line-height-sm);
    width: 100%;
    margin-bottom: 2rem;
    max-width: 300px;
  }
}

@media (min-width: 801px) and (max-width: 1400px) {
  #hero {
    padding-top: 10%;
  }

  .hero-container {
    gap: 20px;
  }

  .hero-container::after {
    height: 140%;
    transform: translateY(5%);
    width: 100%;
  }

  .presentation {
    margin: 20px 40px;
  }

  .presentation h1 {
    font-size: 42px;
    line-height: 56px;
    max-width: 560px;
    margin-bottom: 0.5rem;
  }

  .presentation h2,
  .presentation .hero-subtitle {
    font-size: 20px;
    line-height: var(--line-height-sm);
    width: 400px;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1060px) and (max-width: 1400px) {
  .presentation {
    margin: 20px 40px;
  }

  .presentation h1 {
    font-size: 54px;
    line-height: 60px;
    max-width: 660px;
    margin-bottom: 0.5rem;
  }

  .presentation h2,
  .presentation .hero-subtitle {
    font-size: 28px;
    line-height: 42px;
    width: 600px;
    margin-bottom: 3rem;
  }
}

/*Produtos*/
.products {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color-sections);
  text-align: justify;
  height: auto;
}

.products-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1300px;
  width: 100%;
  margin: 10% 0;
}

.products-title h1,
.products-title h2 {
  display: flex;
  justify-content: left;
  margin: 0 0 0 60px;
  font-size: var(--font-size-4xl-minus);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-inverse);
}

.card-products {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 5% 2%;
}

.card-products li {
  list-style: none;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card-products img {
  max-width: 400px;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  aspect-ratio: 4 / 3;
}

.card-products li:hover {
  transform: scale(1.05);
}

.card-products h2,
.card-products h3 {
  font-size: var(--font-size-lg);
  line-height: 1.4;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-inverse);
  margin: 12px 0 8px 0;
}

.card-products p {
  font-family: var(--font-family-h2);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
  color: #555555;
  margin-top: auto;
  margin-bottom: 0;
  padding: 0 15px 15px;
}

.card-products p span {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  color: #777777;
}

.card-products span + span,
.card-products p:not(:has(span)) {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--btn-bg-hover);
}

.title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
}

.title img {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.title h3 {
  margin: 0;
}

/* Responsividade exclusiva título card */
@media (max-width: 901px) {
  .products-title h1,
  .products-title h2 {
    font-size: var(--font-size-xl);
    margin: 0;
    justify-content: center;
  }

  .card-products h2,
  .card-products h3 {
    font-size: var(--font-size-xl);
    text-align: left;
  }

}

@media (min-width: 901px) and (max-width: 1400px) {
  .card-products {
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin: 5%;
  }

  .card-products img {
    max-height: 350px;
    height: 100%;
  }

  .products-title h1,
  .products-title h2 {
    font-size: var(--font-size-3xl);
    margin: 0 0 0 10%;
  }
}

/* Promotion */
#promotion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: visible;
  /* Permite que o conteúdo transborde */

}

.promotion-container {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  max-width: var(--section-limit-width);
  width: 100%;
}

.promotion-text {
  max-width: 60%;
  padding: 60px 60px 60px 40px;
  margin-right: 60px;
  border-left: 4px solid var(--btn-bg-hover);
}

.promotion-text p:first-of-type {
  font-size: var(--font-size-xs);
  font-weight: 600;
  line-height: 32px;
  text-transform: uppercase;
  color: #b3b3b3;
  letter-spacing: 0.15rem;
}

.promotion-text h1,
.promotion-text h2 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-semibold);
  margin-top: 20px;
  margin-bottom: 20px;
}

.promotion-text p:last-of-type {
  font-size: var(--font-size-xl);
  font-family: var(--font-text);
  line-height: 36px;
  color: #b3b3b3;
  letter-spacing: 0.07rem;
}

.promotion-image {
  flex-grow: 2;
  max-width: 40%;
  position: relative;
  z-index: 2;
}

#promotion-img {
  width: auto;
  height: 700px;
  object-fit: cover;
  position: absolute;
  top: -350px;
  right: 1%;
  z-index: 1;
}

@media (max-width: 1060px) {
  .promotion-image {
    display: none;
  }

  .promotion-text {
    max-width: 100%;
    padding: 0;
    margin-right: 0;
  }

  .promotion-text p:first-of-type {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-xs);
  }

  .promotion-text h1,
  .promotion-text h2 {
    font-size: var(--font-size-2xl-plus);
    width: 100%;
    margin-bottom: 1rem;
    margin: 40px 0 20px 0;
    text-align: left;
  }

  .promotion-text p:last-of-type {
    font-size: var(--font-size-lg-plus);
    line-height: var(--font-size-2xl);
    margin-bottom: 3rem;
  }
}

@media (min-width: 1061px) and (max-width: 1300px) {
  .promotion-image {
    margin-right: -25px;
  }

  .promotion-text h1,
  .promotion-text h2 {
    font-size: var(--font-size-3xl);
  }

  .promotion-text p:last-of-type {
    font-size: var(--font-size-lg-plus);
    line-height: var(--line-height-sm);
    padding-right: 8px;
  }
}

@media (min-width: 801px) and (max-width: 1400px) {
  #promotion-img {
    right: 40px;
  }
}

/* Clients */
#clients {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color-sections);
  min-height: 912px;
}

.clients-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin: 0 200px;
  max-width: 1300px;
  width: 100%;
}

.clients-title h1,
.clients-title h2 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-semibold);
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--color-text-inverse);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 colunas no desktop */
  grid-template-rows: auto;
}

.clients-grid div {
  border-bottom: 1px solid #D9D9D9;
  padding: 45px;
  text-align: center;
}

.clients-grid div:nth-child(4n) {
  border-right: none;
}

.clients-grid div:not(:nth-child(4n)) {
  border-right: 1px solid #D9D9D9;
}

.clients-grid div:nth-last-child(-n+4) {
  border-bottom: none;
}

.clients-grid img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
  aspect-ratio: 3 / 1;
  object-fit: contain;
}

.clients-grid img:hover {
  filter: brightness(1) sepia(1) hue-rotate(1deg) saturate(45);
  /* Filtro laranja */
  transform: scale(1.02);
  /* Adiciona um leve zoom */
}


@media (max-width: 800px) {
  #clients {
    min-height: 0;
  }

  .clients-container {
    margin: 80px 40px;
  }

  .clients-container h1 {
    font-size: var(--font-size-2xl-plus);
    /*line-height: var(--line-height-lg);*/
    width: 100%;
    margin-bottom: 1rem;
    text-align: left;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 colunas no mobile */

  }

  .clients-grid div {
    border-bottom: 1px solid #D9D9D9;
    padding: 10%;
  }

  .clients-grid div:nth-child(2n) {
    border-right: none;
  }

  .clients-grid div:not(:nth-child(2n)) {
    border-right: 1px solid #D9D9D9;
  }

  .clients-grid div:nth-last-child(-n+4):not(:nth-last-child(-n+2)) {
    border-bottom: 1px solid #D9D9D9;
  }

  .clients-grid div:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (min-width: 801px) and (max-width: 1400px) {
  #clients {
    min-height: 600px;
  }

  .clients-container {
    margin: 60px;
  }

  .clients-title h1,
  .clients-title h2 {
    font-size: var(--font-size-3xl);
  }

  .clients-grid div {
    padding: 10%;
  }
}

/*quotes*/
#quotes {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #111111 60%, #ffffff 60%);
}

.quotes-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 1400px;
  width: 100%;
  margin-bottom: 200px;
}

.select-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  box-sizing: border-box;
}

.quotes-title h1,
.quotes-title h2 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-4xl);
  margin: 60px;
  color: var(--color-text);
}

.quotes-text label {
  display: block;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  line-height: var(--line-height-sm);
  color: var(--color-text);
  margin: 8px 0;
}

.quotes-selections {
  display: flex;
  flex-direction: column;
  padding: 40px;
  margin: 0;
  background-color: #000000;
  min-height: 845px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

.radio-group-qtd {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Define 3 colunas */
  gap: 16px;
  margin-bottom: 20px;
}

.radio-option,
.radio-option-qtd {
  display: flex;
  align-items: left;
  justify-content: center;
  position: relative;
  font-size: var(--font-size-sm);
  cursor: pointer;
  border-radius: 8px;
  padding: 16px;
  word-wrap: break-word;
  max-width: 240px;
}

.textarea.radio-option-qtd {
  max-width: 100%;
}

.radio-option {
  background-color: #ffffff;
}

.radio-option-qtd,
.textarea {
  background-color: #2E2E2E;
  color: #fff;
}

.radio-option span::before,
.radio-option-qtd span::before {
  content: "◯";
  /* Ícone de rádio desmarcado */
  font-size: var(--font-size-lg);
  margin-right: 8px;
  position: relative;
}

.radio-option span::before {
  color: #000;
}

.radio-option-qtd span::before {
  color: #fff;
}

/* Altera o ícone para marcado apenas quando o input está selecionado */
.radio-option input[type="radio"]:checked+span::before,
.radio-option-qtd input[type="radio"]:checked+span::before {
  content: "◉";
  /* Ícone de rádio marcado */
}

/* Oculta o botão de rádio padrão */
.radio-option input[type="radio"],
.radio-option-qtd input[type="radio"] {
  display: none;
}

/* Destaque visual para opção selecionada */
.radio-option:has(input[type="radio"]:checked) {
  border: 2px solid var(--btn-bg-hover);
  background-color: #FFF5EE;
  box-shadow: 0 0 0 1px var(--btn-bg-hover);
}

.radio-option-qtd:has(input[type="radio"]:checked) {
  border: 2px solid var(--btn-bg-hover);
  background-color: rgba(236, 99, 11, 0.15);
}

.radio-group-textarea:last-of-type {
  grid-template-columns: 1fr;
  /* Apenas uma coluna para o grupo com o textarea */
  gap: 10px;
}

.radio-group-textarea:last-of-type textarea {
  width: 100%;
  padding: 10px;
  font-size: var(--font-size-md);
  border-radius: 5px;
  border: 1px solid #ccc;
  resize: none;
  background-color: #444;
  color: #fff;
  margin-top: 8px;
}

.form-container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  background-image: url('../assets/imgs/decor_form_rigth.svg');
  background-size: 52px;
  background-position: calc(100% - 40px) calc(100% - 20px);
  background-repeat: no-repeat;
  padding: 60px 80px 80px 80px;
  min-height: 845px;
  max-width: 600px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.quotes-form {
  margin: 0 auto;
  font-family: Arial, sans-serif;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  color: var(--background-color-form-inverse);
  width: 100%;
}

.decor-form {
  width: 4px;
  height: 8px;
  margin: 0 4px;
}

fieldset {
  border: none;
  margin-bottom: 20px;
}

legend {
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
  letter-spacing: 0.15em;
  color: var(--color-text-form);
  /* Cor do título das seções */
  margin-bottom: 10px;
}

.form-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

label {
  display: flex;
  flex-direction: column;
  font-size: var(--font-size-sm);
  color: var(--color-label);
  position: relative;
}

.custom-select.form .arrow {
  top: 66%;
}

.custom-select select:focus~.arrow {
  top: 76%;
}

.label-select {
  margin-bottom: 8px;

}

.terms {
  display: flex;
  align-items: center;
  font-size: var(--font-size-sm);
  color: var(--color-label);
  margin-bottom: 20px;
}

label.terms {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: row;
  position: relative;
  margin-bottom: 40px;
}

.terms input[type="checkbox"] {
  margin-right: 8px;
  transform: translateY(-4px);
}

.terms p,
.modal p strong {
  color: #EC630B;
  text-decoration: none;
}

.terms-checkbox {
  appearance: none;
  /* Remove o estilo padrão do checkbox */
  width: 16px;
  height: 16px;
  border: 2px solid #EC630B;
  /* Cor da borda */
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
}

.terms-checkbox:checked {
  background-color: #EC630B;
  border-color: #EC630B;
}

.terms-checkbox:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid var(--btn-bg-hover);
  /* Cor do check */
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#modal-privacy {
  z-index: 1001;
  color: var(--color-text);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}

#modal-privacy .modal-content {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

input {
  margin-top: 8px;
  width: 100%;
}

input[type="text"],
input[type="email"] {
  padding: 12px;
  font-size: var(--font-size-sm);
  border: 1px solid #EDEDED;
  border-radius: 4px;
  background-color: var(--background-color-form);
  color: var(--color-placeholder);
}

/* Remove o box-shadow em todos os casos de foco */
form input[type="text"]:focus,
form input[type="email"]:focus,
form select:focus {
  border: 1px solid var(--input-border-focus);
  outline: none;
}

input[type="checkbox"] {
  margin-right: 8px;
}

.terms {
  margin-bottom: 20px;
  font-size: 14px;
  color: #333;
}

.terms a {
  color: var(--btn-bg-hover);
  /* Cor do link dos termos */
  text-decoration: none;
}

.select-type-mobile,
.select-qtd-mobile {
  display: none;
}

select {
  padding: 10px;
  font-size: var(--font-size-md);
  border-radius: 5px;
  border: 1px solid #ccc;
  resize: none;
  background-color: #444;
  color: #fff;
  cursor: pointer;
}

.select-option {
  display: flex;
  align-items: left;
  justify-content: center;
  position: relative;
  font-size: var(--font-size-sm);
  cursor: pointer;
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
}


@media (max-width: 800px) {
  .quotes-title h1,
  .quotes-title h2 {
    font-size: var(--font-size-xl);
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .quotes-selections {
    min-height: auto;
  }

  fieldset {
    margin-bottom: 0;
  }

  .select-container {
    margin: 16px;
  }

  .select-container,
  .form-group {
    display: flex;
    flex-direction: column;
    margin: 40px 0;
  }

  legend {
    width: 100%;
    text-align: center;
  }

  .form-container,
  .quotes-selections {
    width: 100%;
    padding: 40px 20px 20px 20px;
    min-height: none;
    max-width: none;
  }

  .form-container {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  .quotes-selections {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .quotes-form {
    margin-bottom: 36px;
  }

  .quotes-container {
    margin-bottom: 60px;
    padding: 16px;
  }

  /* Esconde os radio buttons */
  .radio-group,
  .radio-group-qtd,
  .radio-group-textarea {
    display: none;
  }

  .select-mobile {
    margin: 0;
    padding: 0;
  }

  /* Mostra os dropdowns */
  .select-qtd-mobile,
  .select-mobile {
    display: block;
    width: 100%;
    margin: 8px 0;
    box-sizing: border-box;
    padding: 10px;
    font-size: var(--font-size-sm);
    border: 1px solid var(--input-border);
    border-radius: 4px;
    background-color: var(--background-color-form);
    color: var(--color-placeholder);
  }

  .select-type-mobile:focus,
  .select-qtd-mobile:focus {
    outline: none;
    border: 1px solid var(--input-focus-border);
  }

  .select-mobile-container {
    display: block;
  }
}

@media (min-width: 801px) and (max-width: 1060px) {
  .select-container {
    flex-direction: column;
  }

  .quotes-selections,
  .form-container {
    max-width: 100%;
    border-radius: 0;
  }

  .quotes-selections {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  .form-container {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}

@media (min-width: 801px) and (max-width: 1360px) {
  .quotes-title h1,
  .quotes-title h2 {
    font-size: var(--font-size-3xl);
    line-height: var(--line-height-3xl);
    max-width: 660px;
    margin-bottom: 0.5rem;
  }
}

/* Rodapé Principal */
.presence {
  background-color: var(--background-color-form-inverse);
  color: var(--background-color-sections);
  padding: 40px 0;
  font-family: var(--font-family-h2);
}

.footer-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  padding-bottom: 20px;
  border-bottom: 1px solid #444;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section h2 {
  font-family: var(--font-family-h1);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section h3 {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px;
}

.footer-section.logo img {
  width: 200px;
  height: auto;
}

/* Informações de Contato */
.footer-section.contact p,
.footer-section.contact a {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-xs);
  color: #b2b2b2;
}

.footer-section.contact a:hover {
  cursor: pointer;
  color: var(--color-text-hover);
  transition: ease-in 0.8s;
}

/* Ícones de Redes Sociais */
.icon {
  width: 24px;
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-icons a {
  color: var(--background-color-sections);
  margin-right: 15px;
  font-size: var(--font-size-lg-plus);
  transition: color 0.3s;
  cursor: pointer;
}

.social-icons a:hover {
  color: var(--color-text-hover);
}

/* Informações Adicionais */
.footer-section.info,
.footer-section.contact {
  margin-top: 16px;
}

.footer-section.info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section.info ul li {
  margin-bottom: 8px;
}

.footer-section.info ul li a {
  color: var(--background-color-sections);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  cursor: pointer;
}

.footer-section.info ul li a:hover {
  color: var(--color-text-hover);
}

/* Linha de Direitos Autorais */
.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-bottom .copyright {
  font-size: var(--font-size-sm);
  color: var(--color-border);
  margin: 0;
}

.footer-bottom .credits {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-sm);
  color: var(--color-border);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-bottom .credits:hover {
  opacity: 0.8;
}

.footer-bottom .credits span {
  color: var(--color-border);
}

.footer-bottom .elkys-logo {
  height: 28px;
  width: auto;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px;
  }
}



@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    text-align: center;
  }

  .footer-bottom {
    font-size: var(--font-size-xs);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 40px 20px;
    gap: 30px;
  }

  .footer-section.logo {
    flex-basis: 100%;
    text-align: center;
    align-items: center;
  }

  .footer-section.contact,
  .footer-section.info {
    flex-basis: 45%;
  }
}

/* CSS para validações de Forms*/
input.invalid,
select.invalid {
  border: 1px solid var(--color-alert);
  background-color: #fdefe7;
  box-shadow: 1px 1px 5px var(--input-border-focus);
}

span.error {
  font-size: 0.75em;
  color: var(--color-alert);
  margin-top: 4px;
  display: block;
  max-width: 100%;
}

.custom-select.form.error-state .arrow {
  top: 50%;
}


/* Modal de Termos de Uso e LGPD*/
label.terms .error {
  display: block;
  margin-top: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

/* Estilo geral para todos os modais */
.modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow: hidden;
}

.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 800px;
  height: auto;
  width: 100%;
  text-align: left;
  position: relative;
  max-height: 90%;
  overflow-y: auto;
  text-align: left;
  position: relative;
  color: var(--color-text-inverse);
}

.modal-content p,
.modal-content ul {
  font-weight: var(--font-weight-regular);
  color: var(--color-text-form);
  line-height: 1.5;
}


.modal-content h2 {
  border-bottom: 1px solid #ccc;
  margin: 8px 0;
  font-weight: var(--font-weight-bold);

}

.modal-content h3 {
  margin: 16px 0 8px 0;
}

.modal ul {
  list-style-position: outside;
  padding-left: 20px;
}

.modal li {
  margin-left: 10px;
  text-indent: -5px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-regular);
  cursor: pointer;
  color: var(--btn-bg-hover);
  transition: color 0.3s ease;
}

.modal button {
  margin-top: 20px;

}

.modal-close:hover {
  color: #FF5733;
  /* Use uma cor contrastante ou destaque */
}

#acceptTermsButton {
  margin: 16px 0;
}

.banner {
  display: flex;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f1f1f1;
  padding: 10px 20px;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--btn-bg-hover);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  /*visibility: hidden;*/
  z-index: 1000;
}


.cookie-placeholder {
  height: 60px;
  background-color: transparent;
}


.cookie-icon {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}

.banner p {
  margin: 0;
  flex: 1;
  color: var(--color-text-form);
}

.banner a {
  color: var(--btn-text-color);
  text-decoration: underline;
  font-weight: var(--font-weight-semibold);
}

.cookie-text-banner {
  max-width: 70%;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  min-width: 100px;
}

.cookie-buttons button:first-child {
  background-color: var(--btn-bg-hover);
  color: var(--btn-text-color);
}

.cookie-buttons button:last-child {
  background-color: #e7e7e7;
  color: #333;
}

.cookie-buttons button:hover {
  opacity: 0.9;
}

#modal-cookies {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

#modal-cookies .modal-prefer {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  position: relative;
  text-align: left;
}

.modal-prefer p {
  margin: 8px 0;
}

.modal-prefer h2,
.modal-prefer p {
  color: #000;
}

.label-cookie-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.label-cookie-container div {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  /* Ajusta o espaçamento das linhas */
}

#modal-cookies input[type="checkbox"] {
  margin: 0;
  /* Remove margens extras no checkbox */
  width: 16px;
  height: 16px;
  cursor: pointer;
}


#saveCookiePreferences {
  margin-top: 20px;
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.modal.hidden,
#modal-cookies.hidden {
  display: none !important;
}

/* Exibe o botão  */
#acceptTermsButton,
#backToTermsButton {
  opacity: 1;
  transition: opacity 0.3s ease;
}

#acceptTermsButton.hidden,
#backToTermsButton.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ============================================
   MELHORIAS DE RESPONSIVIDADE E QUALIDADE VISUAL
   ============================================ */

/* Smooth scrolling para toda a página */
html {
  scroll-behavior: smooth;
}

/* Melhorias gerais de tipografia */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Melhor experiência em telas touch */
@media (hover: none) and (pointer: coarse) {
  .card-products li:hover {
    transform: none;
  }

  .clients-grid img:hover {
    filter: none;
    transform: none;
  }

  .primary-button {
    padding: 18px 32px;
    min-height: 48px;
  }
}

/* Responsividade para telas muito pequenas (320px - 375px) */
@media (max-width: 375px) {
  .presentation h1 {
    font-size: 1.75rem;
    max-width: 100%;
  }

  .presentation .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .products-title h1,
  .products-title h2 {
    font-size: 1.25rem;
  }

  .card-products img {
    max-width: 100%;
  }

  .card-products h3 {
    font-size: 1rem;
  }

  .card-products p {
    font-size: 0.875rem;
  }

  .quotes-title h1,
  .quotes-title h2 {
    font-size: 1.25rem;
    padding: 0 10px;
  }

  .clients-title h1,
  .clients-title h2 {
    font-size: 1.5rem;
  }

  .promotion-text h1,
  .promotion-text h2 {
    font-size: 1.5rem;
  }

  .footer-section.logo img {
    width: 150px;
  }

  .banner {
    padding: 15px;
    height: auto;
    min-height: 250px;
  }

  .cookie-buttons button {
    font-size: 12px;
    padding: 10px 8px;
  }
}

/* Responsividade para tablets em modo retrato (768px - 900px) */
@media (min-width: 768px) and (max-width: 900px) {
  #header {
    padding: 0 20px;
  }

  .hero-container::after {
    background-size: 50% auto;
    background-position: right bottom;
  }

  .presentation {
    margin: 100px 30px 0;
  }

  .presentation h1 {
    font-size: 2.5rem;
    max-width: 450px;
  }

  .card-products {
    gap: 15px;
  }

  .card-products img {
    max-width: 220px;
  }

  .clients-container {
    margin: 60px 30px;
  }
}

/* Responsividade para tablets em modo paisagem e laptops pequenos (900px - 1200px) */
@media (min-width: 900px) and (max-width: 1200px) {
  .hero-container {
    padding: 0 40px;
  }

  .presentation h1 {
    font-size: 3rem;
    max-width: 550px;
  }

  .card-products {
    gap: 20px;
    padding: 0 20px;
  }

  .card-products img {
    max-width: 300px;
  }

  #promotion-img {
    height: 550px;
    top: -275px;
  }
}

/* Melhorias visuais para cards de produtos */
.card-products li {
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-products li:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-products img {
  border-radius: 12px 12px 0 0;
}

/* Melhorias visuais para botões */
.primary-button {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 15px rgba(236, 99, 11, 0.3);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 99, 11, 0.4);
}

.primary-button:active {
  transform: translateY(0);
}

/* Melhorias na seção hero */
#hero {
  overflow: hidden;
}

.hero-container::after {
  transition: transform 0.3s ease;
}

/* Melhorias na seção de clientes */
.clients-grid div {
  transition: background-color 0.3s ease;
}

.clients-grid div:hover {
  background-color: rgba(236, 99, 11, 0.05);
}

/* Melhorias no formulário */
input[type="text"]:focus,
input[type="email"]:focus,
select:focus {
  box-shadow: 0 0 0 3px rgba(236, 99, 11, 0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.radio-option:hover,
.radio-option-qtd:hover {
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

/* Melhorias no footer */
.footer-section.info ul li a,
.footer-section.contact a {
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-section.info ul li a:hover,
.footer-section.contact a:hover {
  transform: translateX(3px);
}

/* Animação suave para links do menu */
#menu a {
  position: relative;
  transition: color 0.3s ease;
}

#menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--btn-bg-hover);
  transition: width 0.3s ease, left 0.3s ease;
}

#menu a:hover::after {
  width: 100%;
  left: 0;
}

/* Melhorias de acessibilidade visual */
:focus-visible {
  outline: 2px solid var(--btn-bg-hover);
  outline-offset: 2px;
}

/* Prefers reduced motion - respeita preferências do usuário */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .card-products li:hover,
  .primary-button:hover {
    transform: none;
  }

  .reveal-section {
    opacity: 1;
    transform: none;
  }
}

/* Melhorias para modo escuro (se o usuário preferir) */
@media (prefers-color-scheme: dark) {
  .modal-content {
    background-color: #1a1a1a;
    color: #e0e0e0;
  }

  .modal-content h2,
  .modal-content h3 {
    color: #ffffff;
  }

  .modal-content p,
  .modal-content ul {
    color: #b0b0b0;
  }
}

/* Responsividade para telas muito grandes (1920px+) */
@media (min-width: 1920px) {
  .hero-container {
    max-width: 1400px;
  }

  .presentation h1 {
    font-size: 4.5rem;
    max-width: 850px;
  }

  .presentation .hero-subtitle {
    font-size: 1.75rem;
    max-width: 700px;
  }

  .products-container,
  .clients-container,
  .quotes-container {
    max-width: 1500px;
  }

  .card-products img {
    max-width: 450px;
  }
}

@media (max-width: 800px) {
  .banner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    text-align: justify;
    height: 300px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  .cookie-icon {
    margin: 0;
  }

  .cookie-text-banner {
    max-width: 100%;
  }
}

/* Alerta Personalizado */
.custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--btn-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.alert-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--background-color-sections);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.alert-content p {
  font-family: var(--font-family-h2);
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--color-text-inverse);
}

.alert-content button {
  max-width: 80px;
}

/* Animações de entrada para seções */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hidden {
  display: none;
}