:root {
  --verde: #24412D;
  --verde-claro: #3F6B45;
  --verde-profundo: #17291D;

  --marrom: #8B5A2B;
  --marrom-escuro: #5E3B1F;
  --dourado-madeira: #D6A15D;

  --bege: #F4E8D0;
  --creme: #FFF8E7;
  --areia: #E6D3B3;
  --cinza-claro: #F0F0F0;

  --texto: #050315;
  --sombra: rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--cinza-claro);
  color: var(--texto);
}

header {
  background: 
    radial-gradient(circle at 50% -20%, rgba(255,255,255,0.05) 0%, transparent 70%),
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.45)),
    url('img/madeira.png'); 
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  
  border-bottom: 1px solid #1a0f0a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header nav {
  display: flex;
  align-items: center;
  gap: 25px; 
}


header nav a {
  color: var(--creme);
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  transition: color 0.2s;
}

header nav a:hover {
  color: var(--dourado-madeira);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 25px; 
}

.toggle-container {
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.toggle-label {
  font-size: 14px;
  font-weight: bold;
  color: var(--creme);
  opacity: 0.3; 
  transition: opacity 0.3s ease, color 0.3s ease;
}


.toggle-label.ativo {
  opacity: 1;
  color: var(--dourado-madeira);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  cursor: pointer;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Corpo do slider - Estado Inicial (Bandeira do Brasil) */
.switch .slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
  background: url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/4x3/br.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background 0.30s ease;
}

.switch input:checked + .slider {
  background:url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/4x3/us.svg');
}

.switch .knob {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 2px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.switch input:checked + .slider .knob {
  transform: translateX(28px);
}

.login-topo {
  position: static !important; 
  background-color: #8B5A2B;
  color: #fff !important; 
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
  white-space: nowrap; 
}

.login-topo:hover {
  background-color: #D6A15D;
  color: #1F3A27 !important;
  transform: scale(1.05);
}

.language-swap {
  display: flex;
  gap: 6px;
  background-color: rgba(255, 248, 231, 0.1);
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 248, 231, 0.2);
}

.lang-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s;
  padding: 0;
  line-height: 1;
}

.lang-btn:hover {
  transform: scale(1.2);
}

.lang-btn.inativo {
  opacity: 0.4;
  filter: grayscale(60%);
}

@media (max-width: 768px) {
  .header-actions {
    position: static;
    margin-top: 15px;
    justify-content: center;
    width: 100%;
  }
}

.logo {
  color: var(--creme);
  font-size: 26px;
  font-weight: bold;
}

.logo span {
  color: var(--dourado-madeira);
}

nav a {
  color: var(--creme);
  text-decoration: none;
  margin-left: 25px;
  font-weight: bold;
}

nav a:hover {
  color: var(--dourado-madeira);
}

.hero {
  padding: 90px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  background-image: linear-gradient(to right, rgba(243, 237, 226, 0.829) 20%, rgba(243, 237, 226, 0.4) 40%, rgba(243, 237, 226, 0) 50%), url('img/floresta.jfif');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-texto {
  max-width: 650px;
}

.hero-texto h1 {
  font-size: 50px;
  color: var(--verde-profundo);
  margin-bottom: 20px;
}

.hero-texto p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.botoes {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.2s;
}

.btn-verde {
  background-color: var(--verde);
  color: var(--creme);
}

.btn-marrom {
  background-color: var(--marrom);
  color: var(--creme);
}

.btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.hero-card {
  background-color: var(--creme);
  padding: 35px;
  border-radius: 16px;
  border-left: 8px solid var(--marrom);
  box-shadow: 0 6px 18px var(--sombra);
  max-width: 390px;
}

.hero-card h2 {
  color: var(--verde);
  margin-bottom: 15px;
}

.hero-card li {
  margin-bottom: 10px;
}

section {
  padding: 70px 8%;
}

section:nth-child(even) {
  background-color: var(--cinza-claro);
}

section:nth-child(odd) {
  background-color: var(--creme);
}

.titulo {
  text-align: center;
  font-size: 36px;
  color: var(--verde-profundo);
  margin-bottom: 10px;
}

.subtitulo {
  text-align: center;
  margin-bottom: 45px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.card {
  background-color: var(--creme);
  width: 310px;
  padding: 32px;
  text-align: center;
  border-radius: 16px;
  border-top: 7px solid var(--marrom);
  box-shadow: 0 5px 15px var(--sombra);
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

.card .icone {
  font-size: 42px;
  margin-bottom: 12px;
}

.card h3 {
  color: var(--verde);
  margin-bottom: 12px;
}

.card p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.card a,
.card button {
  background-color: var(--verde-claro);
  color: var(--creme);
  border: none;
  padding: 11px 18px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.card a:hover,
.card button:hover {
  background-color: var(--marrom);
}

.vantagens {
  background: linear-gradient(135deg, var(--verde-profundo), var(--marrom-escuro));
}

.vantagens .titulo {
  color: var(--creme);
}

.vantagens-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 35px;
}

.vantagem {
  background-color: var(--creme);
  width: 280px;
  padding: 28px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 5px 15px var(--sombra);
}

.vantagem h3 {
  color: var(--marrom);
  margin-bottom: 10px;
}

.formulario {
  max-width: 700px;
  margin: auto;
  background-color: var(--creme);
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 5px 15px var(--sombra);
}

.formulario label {
  font-weight: bold;
  color: var(--verde);
}

.formulario input,
.formulario select,
.formulario textarea {
  width: 100%;
  padding: 13px;
  margin: 8px 0 18px;
  border: 1px solid #c9b99e;
  border-radius: 8px;
  background-color: var(--cinza-claro);
  color: var(--texto);
}

.formulario input:focus,
.formulario select:focus,
.formulario textarea:focus {
  outline: 2px solid var(--verde-claro);
}

.formulario button {
  width: 100%;
  padding: 15px;
  background-color: var(--verde);
  color: var(--creme);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.formulario button:hover {
  background-color: var(--marrom);
}

.carrinho-section {
  min-height: 75vh;
}

.carrinho-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.lista-carrinho {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item-carrinho {
  background-color: var(--creme);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.item-carrinho img {
  width: 150px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
}

.info-item {
  flex: 1;
  text-align: left;
}

.info-item h3 {
  color: var(--verde);
  margin-bottom: 8px;
}

.info-item p {
  margin-bottom: 12px;
}

.info-item input {
  width: 80px;
  padding: 8px;
  border: 1px solid #c9b99e;
  border-radius: 6px;
}

.btn-remover {
  background-color: #8B2E2E;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 7px;
  cursor: pointer;
  font-weight: bold;
}

.resumo-carrinho {
  background-color: var(--creme);
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.12);
  height: fit-content;
  text-align: left;
}

.resumo-carrinho h2 {
  color: var(--verde);
  margin-bottom: 18px;
}

.resumo-carrinho p {
  margin-bottom: 12px;
}

.btn-finalizar,
.btn-continuar {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 13px;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 15px;
}

.btn-finalizar {
  background-color: var(--verde);
  color: white;
}

.btn-continuar {
  background-color: var(--marrom);
  color: white;
}

@media (max-width: 768px) {
  .carrinho-container {
    grid-template-columns: 1fr;
  }

  .item-carrinho {
    flex-direction: column;
    text-align: center;
  }

  .info-item {
    text-align: center;
  }

  .item-carrinho img {
    width: 100%;
    height: 180px;
  }
}

footer {
  background: linear-gradient(135deg, var(--verde-profundo), var(--verde));
  color: var(--creme);
  text-align: center;
  padding: 22px;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 18px;
  }

  nav {
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 8px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 55px 6%;
  }

  .hero-texto h1 {
    font-size: 34px;
  }

  .botoes {
    flex-direction: column;
  }

  .hero-card {
    width: 100%;
  }

  section {
    padding: 55px 6%;
  }
}
.login-topo {
  position: absolute;
  right: 40px;
  top: 20px;

  background-color: #8B5A2B;
  color: #fff;

  padding: 10px 22px;
  border-radius: 8px;

  font-weight: bold;
  text-decoration: none;

  transition: 0.2s;
}

.login-topo:hover {
  background-color: #D6A15D;
  color: #1F3A27;
  transform: scale(1.05);
}

.pagina-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 90px 8%;
  color: white;
}

.sobre-hero {
  background:
    linear-gradient(rgba(20, 35, 24, 0.72), rgba(20, 35, 24, 0.72)),
    url("img/floresta.jpg");
  background-size: cover;
  background-position: center;
}

.internacional-hero {
  background:
    linear-gradient(rgba(10, 20, 15, 0.72), rgba(10, 20, 15, 0.72)),
    url("img/container.jpg");
  background-size: cover;
  background-position: center;
}

.pagina-hero-conteudo {
  max-width: 760px;
}

.pagina-hero h1 {
  font-size: 54px;
  line-height: 1.1;
  margin: 18px 0;
}

.pagina-hero p {
  font-size: 20px;
  line-height: 1.6;
}

.etiqueta {
  display: inline-block;
  background-color: rgba(214, 161, 93, 0.22);
  color: #FFDCA5;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: bold;
}

.etiqueta.escura {
  background-color: rgba(139, 90, 43, 0.14);
  color: #8B5A2B;
}

.secao-dupla {
  padding: 85px 8%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 55px;
  align-items: center;
  background-color: #F8EEDB;
}

.secao-dupla h2 {
  font-size: 42px;
  color: #1F3A27;
  margin: 18px 0;
}

.secao-dupla p {
  line-height: 1.8;
  margin-bottom: 16px;
}

.texto-en {
  color: #5E3B1F;
  font-weight: bold;
}

.painel-destaque {
  background-color: #FFF8E7;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-left: 7px solid #8B5A2B;
}

.painel-destaque.escuro {
  background: linear-gradient(135deg, #1F3A27, #2F4F2F);
  color: white;
}

.painel-destaque h3 {
  margin-bottom: 22px;
  color: #8B5A2B;
}

.painel-destaque.escuro h3 {
  color: #D6A15D;
}

.info-linha {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(139, 90, 43, 0.25);
  padding: 13px 0;
  gap: 20px;
}

.info-linha strong {
  color: #8B5A2B;
}

.painel-destaque.escuro .info-linha strong {
  color: #D6A15D;
}

.cards-premium,
.export-numeros {
  padding: 75px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  background: linear-gradient(135deg, #1F3A27, #2F4F2F);
}

.premium-card,
.export-numeros div {
  background-color: #FFF8E7;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.14);
}

.premium-card h3 {
  color: #1F3A27;
  margin-bottom: 14px;
}

.export-numeros {
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.export-numeros h2 {
  font-size: 48px;
  color: #8B5A2B;
}

.export-numeros p {
  color: #1F3A27;
  font-weight: bold;
}

.linha-industrial,
.logistica,
.produto-internacional {
  padding: 85px 8%;
  background-color: #E6D3B3;
  text-align: center;
}

.linha-industrial h2,
.logistica h2,
.produto-internacional h2 {
  font-size: 40px;
  color: #1F3A27;
  margin-bottom: 25px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.timeline div,
.logistica-grid div,
.medidas div {
  background-color: #FFF8E7;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 16px rgba(0,0,0,0.12);
}

.timeline span {
  display: block;
  color: #8B5A2B;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.logistica p {
  max-width: 760px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

.logistica-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.logistica-grid div {
  font-size: 34px;
}

.logistica-grid span {
  display: block;
  font-size: 15px;
  margin-top: 12px;
  font-weight: bold;
  color: #1F3A27;
}

.produto-internacional {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
  text-align: left;
}

.produto-internacional p {
  line-height: 1.8;
}

.medidas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}

.medidas strong {
  display: block;
  font-size: 34px;
  color: #8B5A2B;
}

.medidas span {
  color: #1F3A27;
  font-weight: bold;
}

@media (max-width: 900px) {
  .secao-dupla,
  .produto-internacional {
    grid-template-columns: 1fr;
  }

  .cards-premium,
  .export-numeros,
  .timeline,
  .logistica-grid,
  .medidas {
    grid-template-columns: 1fr;
  }

  .pagina-hero h1 {
    font-size: 38px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: 0.7s ease;
}

.reveal.ativo {
  opacity: 1;
  transform: translateY(0);
}

.card-hover {
  transition: 0.25s ease;
  transform-style: preserve-3d;
}

.card-hover:hover {
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

.pagina-global-hero {
  min-height: 460px;
  padding: 90px 8%;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(20,35,24,0.72), rgba(20,35,24,0.72)),
    url("img/container.jpg");
  background-size: cover;
  background-position: center;
  color: white;
}

.pagina-global-hero h1 {
  font-size: 56px;
  max-width: 800px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.pagina-global-hero p {
  font-size: 20px;
  max-width: 700px;
  line-height: 1.6;
}

.tag-global {
  background-color: rgba(214,161,93,0.22);
  color: #FFDCA5;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 18px;
}

.grid-global {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  background-color: #F0F0F0;
}

.global-card {
  background-color: #FFF8E7;
  padding: 32px;
  border-radius: 18px;
  border-top: 7px solid #8B5A2B;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.global-card h3 {
  color: #1F3A27;
  margin-bottom: 12px;
}

.secao-premium {
  padding: 85px 8%;
  background: linear-gradient(135deg, #1F3A27, #2F4F2F);
  color: white;
}

.secao-premium h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: #FFF8E7;
}

.timeline-global {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.timeline-global div {
  background-color: #FFF8E7;
  color: #1F3A27;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  font-weight: bold;
}

.produtos-tabs {
  padding: 80px 8%;
  background-color: #F8EEDB;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 35px;
}

.produto-novo {
  background-color: #FFF8E7;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  border-left: 7px solid #8B5A2B;
}

.produto-novo h3 {
  color: #1F3A27;
  margin-bottom: 12px;
}

.produto-novo ul {
  margin: 15px 0;
  padding-left: 20px;
  line-height: 1.8;
}

.badge {
  display: inline-block;
  background-color: #1F3A27;
  color: white;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .grid-global,
  .produtos-grid,
  .timeline-global {
    grid-template-columns: 1fr;
  }

  .pagina-global-hero h1 {
    font-size: 38px;
  }
}
.sobre-home {
  padding: 100px 8%;
  background:
    linear-gradient(rgba(31, 58, 39, 0.88), rgba(31, 58, 39, 0.88)),
    url("img/floresta.jpg");
  background-size: cover;
  background-position: center;
}

.sobre-home-conteudo {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.sobre-home-texto {
  color: #FFF8E7;
}

.sobre-tag {
  display: inline-block;
  background-color: rgba(214, 161, 93, 0.22);
  color: #D6A15D;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: bold;
  margin-bottom: 20px;
}

.sobre-home-texto h2 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.sobre-home-texto p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 760px;
}

.sobre-destaques {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.sobre-destaques span {
  background-color: rgba(255, 248, 231, 0.12);
  border: 1px solid rgba(255, 248, 231, 0.25);
  color: #FFF8E7;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: bold;
}

.btn-sobre {
  display: inline-block;
  background-color: #8B5A2B;
  color: #FFF8E7;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s;
}

.btn-sobre:hover {
  background-color: #D6A15D;
  color: #1F3A27;
  transform: translateY(-3px);
}

.sobre-home-card {
  background-color: #FFF8E7;
  padding: 34px;
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.28);
  border-left: 8px solid #8B5A2B;
}

.sobre-home-card h3 {
  color: #1F3A27;
  font-size: 26px;
  margin-bottom: 24px;
}

.numero-linha {
  padding: 18px 0;
  border-bottom: 1px solid rgba(139, 90, 43, 0.25);
}

.numero-linha:last-child {
  border-bottom: none;
}

.numero-linha strong {
  display: block;
  color: #8B5A2B;
  font-size: 38px;
  margin-bottom: 4px;
}

.numero-linha p {
  color: #1F3A27;
  font-weight: bold;
}

@media (max-width: 768px) {
  .sobre-home-conteudo {
    grid-template-columns: 1fr;
  }

  .sobre-home-texto h2 {
    font-size: 32px;
  }
}
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.produto-novo {
    height: auto;
    min-height: unset;
    padding: 24px;
}

.produto-img {
    width: 100%;
    height: 275px;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 20px;
    position: relative;
    background: #ddd;
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.7s ease;
    display: block;
}
.produto-img.cerca-img img {
    object-position: center 35%;
    height: 470px;
}


/* Hover elegante */
.produto-novo:hover .produto-img img {
    transform: scale(1.08);
}

/* ==========================================================================
   ELEMENTOS EXCLUSIVOS ADICIONADOS DO STYLE NOVO 
   ========================================================================== */

.logo-container {
  display: flex;
  align-items: center; 
  gap: 25px;           
}

.header-logo {
  height: 50px;       
  width: auto;
}

.logo-text {
  color: var(--creme);
  font-size: 26px;
  font-weight: bold;
}

.logo-text span {
  color: var(--dourado-madeira);
}

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background-color 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}

.whatsapp-btn img {
  width: 35px;
  height: 35px;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.sobre-imagem img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
}

.sobre-texto h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.sobre-texto p {
    color: rgba(255,255,255,.9);
    line-height: 1.8;
    margin-bottom: 15px;
}

.sobre-destaques {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.sobre-destaques span {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
}

/*  test responsividade TABLET */

@media (max-width: 1024px) {

    .hero {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-imagem img {
        max-height: 350px;
    }

    .vantagens-container {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* test responsividade CELULAR */

@media (max-width: 768px) {

    header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .header-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        padding: 60px 20px;
        flex-direction: column;
        text-align: center;
    }

    .hero-texto h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-texto p {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
    }

    .hero-card {
        width: 100%;
    }

    .cards {
        display: grid;
        grid-template-columns: 1fr;
    }

    .card {
        width: 100%;
    }

    .titulo {
        font-size: 2rem;
    }

    .subtitulo {
        font-size: 1rem;
    }

    .sobre-home {
        padding: 60px 20px;
    }

    .sobre-grid {
        display: flex;
        flex-direction: column;
    }

    .sobre-texto h2 {
        font-size: 2rem;
        text-align: center;
    }

    .sobre-texto p {
        text-align: center;
    }

    .sobre-destaques {
        justify-content: center;
    }

    .sobre-imagem img {
        width: 100%;
        max-height: 250px;
        object-fit: cover;
    }

    .sobre-home-card {
        width: 100%;
    }

    .vantagens-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .vantagem {
        width: 100%;
    }

    footer {
        text-align: center;
        padding: 25px 20px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 15px;
    }

    .produtos-tabs{
        padding: 40px 15px;
    }

    .titulo{
        font-size: 2rem;
        text-align: center;
    }

    .subtitulo{
        font-size: 1rem;
        text-align: center;
        max-width: 90%;
        margin: 0 auto 30px;
    }

    .produtos-grid{
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .produto-novo{
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .produto-img{
        height: 220px;
    }

    .produto-img img{
        object-fit: cover;
    }

    .produto-novo h3{
        font-size: 1.6rem;
    }

    .produto-descricao{
        font-size: 1rem;
        line-height: 1.6;
    }

    .produto-descricao ul{
        padding-left: 20px;
    }

    .btn-acao{
        width: 100%;
        text-align: center;
    }
}

/* test celulares menores */

@media (max-width: 480px) {

    .logo {
        font-size: 1.5rem;
    }

    .hero-texto h1 {
        font-size: 1.7rem;
    }

    .hero-card h2 {
        font-size: 1.3rem;
    }

    .titulo {
        font-size: 1.8rem;
    }

    .sobre-texto h2 {
        font-size: 1.7rem;
    }

    .produto-card {
        padding: 15px;
    }

    .produto-img {
        height: 200px;
    }

    .orcamento-container,
    .form-container,
    .formulario {
        width: 100%;
        padding: 20px;
    }

    input,
    select,
    textarea {
        width: 100%;
    }

.produtos-grid{
        grid-template-columns: 1fr;
    }

    .produto-novo{
        max-width: 100%;
    }

    .produto-img{
        height: 200px;
    }

    .produto-novo h3{
        font-size: 1.4rem;
    }

    .produto-descricao{
        font-size: 0.95rem;
    }
}