:root {
  --primary: #00274d;
  --accent: #ff9f00;
  --text: #4A4A4A;
  --bg: #f5f5f5;
}

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

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

.header {
  background: #FFFFFF;
  color: white;
  padding: 1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
  max-width: 290px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #007752;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: #007752;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #007752;
}

.menu-toggle a {
  color: #FFFFFF;
}


.btn-orcamento {
  background-color: #007752;
  color: #FFF;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
  white-space: nowrap;
  margin-left: 1rem;
}

.btn-orcamento:hover {
  background-color: #ffa31a;
  color: #007752;
}



.hero {
  background-image: url(https://www.cobrekabos.com.br/imagens/bg-hero-cobrekabos.png);
  opacity: 0.8;
  height: 250px;
  background-size: cover;
  background-position: center;
  padding: 5rem 1rem;
  text-align: center;
  color: #000;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-novo {
  background: linear-gradient(90deg, #007752 0%, #183B30 100%);
  color: white;
  padding: 4rem 1rem;
}

.hero-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.hero-left {
  flex: 1 1 450px;
}

.highlight-text {
  color: #94EDD1; /* Ou a cor desejada */
}

.hero-left h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-left h1 span {
  font-weight: 400;
}

.hero-left p {
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 500px;
  margin-bottom: 2rem;
  text-align: justify;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;   /* ? Centraliza os botões */
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-verde {
  background-color: #00c285;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-verde:hover {
  background-color: #00a66e;
}

.btn-branco {
  background-color: white;
  color: #0d5e4d;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid white;
  transition: background 0.3s, color 0.3s;
}

.btn-branco:hover {
  background-color: transparent;
  color: white;
}

.hero-metrics {
  display: flex;
  text-align: center;
  gap: 5rem;
  font-size: 1rem;
  margin-top: 1rem;
}

.hero-metrics strong {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.2rem;
}

.hero-right {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.12);
  padding: 2rem;
  border-radius: 8px;
  color: #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.icon-box {
  background-color: #183B30; /* cor de fundo do ícone */
  padding: 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 24px;
  height: 24px;
  color: #00c285;
}

.hero-card p {
  font-size: 0.9rem;
  margin-top: 0.25rem;
  line-height: 1.5;
}

.hero-card strong {
  font-weight: bold;
  
}

.hero-card .icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #00c285;
  background-color: #000; /* fundo leve */
  padding: 8px;
  border-radius: 8px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: black;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.produtos-section {
  background: #f4f4f4;
  padding: 4rem 1rem;
  text-align: center;
}

.produtos-titulo {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #000;
  margin-bottom: 0.5rem;
}

.produtos-subtitulo {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.produto-card {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.produto-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.produto-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
}

.btn-produto {
  background: #000;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-produto:hover {
  background: #333;
}

.produtos-botao {
  text-align: center;
}

.btn-catalogo {
  background-color: #007f5f;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-catalogo:hover {
  background-color: #045c44;
}

.produtos {
  padding: 3rem 0;
}

.produtos h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.3s ease;
  gap: 1rem;
  scroll-behavior: smooth;
}

.card {
  min-width: 250px;
  flex-shrink: 0;
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  font-weight: bold;
}

.carousel-btn {
  position: absolute;
  top: 40%;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0 0.5rem;
  cursor: pointer;
  z-index: 1;
}

.carousel-btn.left {
  left: 0;
}

.carousel-btn.right {
  right: 0;
}

.qualidade {
  padding: 4rem 1rem;
  background: #fff;
  text-align: center;
}

.qualidade-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #04523D;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.qualidade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
  justify-items: center;
}

.qualidade-item img {
  height: 100px;
  max-width: 100%;
  margin-bottom: 1rem;
}

.qualidade-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
  color: #222;
}

.contato {
  background: #f9f9f9;
  padding: 4rem 1rem;
}

.contato-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contato-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #04523D;
  margin-bottom: 0.5rem;
}

.contato-header p {
  color: #444;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contato-card {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  gap: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  align-items: flex-start;
}

.icon2 {
  background-color: #007752; /* cor de fundo do ícone */
  padding: 6px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.contato-card a {
  color: #04523D;
  text-decoration: none;
}

.contato-form h3 {
  margin-bottom: 0.5rem;
}

.contato-form p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #444;
}

.contato-form form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.contato-form button {
  background: #007f5f;
  color: white;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.contato-form button:hover {
  background: #045c44;
}

@media (max-width: 900px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }

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

  .contato-form form {
    padding: 1.5rem;
  }
}

.contato-form iframe,
.contato-form form {
  width: 100% !important;
  max-width: 100%;
}

.contato-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


.footer {
  background: #1c3b31;
  color: #eee;
  padding: 3rem 1rem 1rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-contact li span {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.footer-bottom {
  border-top: 1px solid #aaa;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
}

.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  flex: 1 1 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1 1 auto;
  text-align: right;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  white-space: nowrap;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.footer-contact a {
  color: #ddd;
  text-decoration: none;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.footer-contact a {
  color: #ddd;
  text-decoration: none;
}

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

.footer-contact .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.footer-logo {
  width: 250px;
  filter: brightness(0) invert(1);
}

.produto-interno {
  padding: 4rem 1rem;
  background: #fff;
}

.produto-titulo {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #04523D;
}

.produto-topo {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.produto-topo img {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.produto-topo p {
  flex: 1;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.tabela-scroll {
  overflow-x: auto;
  margin-bottom: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 600px;
}

th, td {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  text-align: center;
}

th {
  background: #f0f0f0;
  font-weight: bold;
}

h2 {
  color: #04523D;
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h3 {
  color: #007f5f;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.voltar-catalogo {
  text-align: center;
  margin-top: 3rem;
}

.btn-catalogo {
  background-color: #007f5f;
  color: #fff;
  padding: 0.9rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-catalogo:hover {
  background-color: #045c44;
}

.titulo-produto {
  background: url('https://www.cobrekabos.com.br/imagens/bg.png') no-repeat center center;
  background-size: cover;
  padding: 1rem 1rem;
  color: white;
  text-align: left;
}

.titulo-produto h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .produtos-secao-pagina {
  padding: 60px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

.titulo-pagina-produtos {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #003f5c;
}

.produto-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.produto-card-page {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-card-page a {
  color: #007f5f;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.produto-card-page:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.produto-card-page img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

.produto-card-page h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 12px;
}

.btn-pagina-produto {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007f5f;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.btn-pagina-produto:hover {
  background-color: #007f5f;
}


/* Responsivo */
@media (max-width: 600px) {
  .logo img {
    height: 32px;
    max-width: 120px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background: #6fc0a6;
    position: absolute;
    top: 60px;
    right: 1rem;
    padding: 1rem;
    border-radius: 5px;
  }


  .nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  
    .hero-left h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-bottom-row {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .produto-topo {
    flex-direction: column;
    text-align: center;
  }

  .produto-topo p {
    text-align: justify;
  }
}

