:root{
  --blue: #1B2A41;
  --white: #f9f9f9;
  --gold: #C9A24D;
  --mint: #48cfae;

  --text: #333;
  --shadow: 0 18px 45px rgba(0,0,0,.18);
  --shadowSoft: 0 10px 22px rgba(0,0,0,.12);
  --radius: 16px;

  --container: 1100px;
}

*{ margin:0; padding:0; box-sizing:border-box; }

body{
  font-family: Arial, sans-serif;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.site-header{
  background: var(--blue);
  color: #fff;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(201,162,77,.20);
}

.header-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 18px;
}

.logo img{
  max-height: 120px; /* logo novo é grande, aqui fica elegante */
  width: auto;
  display:block;
}

/* MENU (igual ao seu modelo: arredondado + borda dourada no hover) */
.nav{
  display:flex;
  align-items:center;
  gap: 26px;
}

.nav__link{
  text-decoration:none;
  color: rgba(255,255,255,.75);
  font-size: 16px;
  padding: 16px 22px;
  border-radius: 32px;
  border: 2px solid transparent;
  transition: .2s ease;
}

.nav__link:hover{
  color: var(--gold);
  border-color: rgba(201,162,77,.90);
  background: rgba(201,162,77,.06);
  box-shadow:
    0 0 0 3px rgba(201,162,77,.10),
    0 18px 35px rgba(0,0,0,.20);
}

.nav__link.is-active{
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.20);
  background: rgba(0,0,0,.10);
}

.header-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* BOTÕES */
.btn{
  display:inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration:none;
  font-weight: bold;
  transition: .2s ease;
  border: 1px solid transparent;
}

.btn--primary{
  background-color: var(--gold);
  color: var(--blue);
}

.btn--primary:hover{ filter: brightness(1.03); transform: translateY(-1px); }

.btn--ghost{
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

.btn--ghost:hover{
  color: var(--gold);
  border-color: rgba(201,162,77,.55);
}

/* BURGER (mobile) */
.burger{
  display:none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.10);
  cursor:pointer;
  padding: 10px;
}
.burger span{
  display:block;
  height: 2px;
  background: rgba(255,255,255,.95);
  margin: 6px 0;
  border-radius: 99px;
}

/* HEADER IMAGE */
.header-image img{
  width: 100%;
  height: auto;
  max-height: 688px;
  object-fit: cover;
  display:block;
}

/* HERO */
.hero{
  background: var(--blue);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

/* PRODUCTS */
.products{
  padding: 60px 20px;
  background-color: #fff;
}

.products h3{
  text-align:center;
  margin-bottom: 40px;
  color: var(--blue);
}

.product-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card{
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
  text-align:center;
}

.product-card img{
  width: 100%;
  max-width: 480px;
  height: 400px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 10px;
}

.product-card h4{
  color: var(--blue);
  margin-bottom: 6px;
}

/* CONTACT */
.contact{
  background-color: #eaf1f8;
  padding: 60px 20px;
}

.contact h3{
  text-align:center;
  margin-bottom: 20px;
  color: var(--blue);
}

.contact form{
  display:flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.contact input,
.contact select,
.contact textarea{
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* FOOTER */
.footer{
  background-color: var(--blue);
  color: #fff;
  text-align:center;
  padding: 20px 0;
}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.toTop{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.10);
}
.toTop:hover{
  color: var(--gold);
  border-color: rgba(201,162,77,.55);
}

/* RESPONSIVO */
@media (max-width: 1020px){
  .nav{ display:none; }
  .burger{ display:inline-block; }
  .logo img{ max-height: 64px; }
}

/* MENU MOBILE ABERTO */
.nav.is-open{
  display:flex;
  position:absolute;
  left: 20px;
  right: 20px;
  top: 92px;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(201,162,77,.30);
  background: rgba(27,42,65,.96);
  box-shadow: var(--shadow);
} 
  
  
  
  
  /* =========================
   FAIXA SOCIAL (abaixo da Foto002)
========================= */
.social-strip{
  background: #1B2A41;
  border-top: 1px solid rgba(201,162,77,.20);
  border-bottom: 1px solid rgba(201,162,77,.20);
  padding: 14px 0;
}

.social-strip__wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.social-strip__text{
  color: rgba(255,255,255,.85);
  font-weight: bold;
  letter-spacing: .2px;
}

.social-strip__right{
  display:flex;
  align-items:center;
  gap: 12px;
}

.social-icon{
  width: 42px;
  height: 42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  border: 1px solid rgba(201,162,77,.28);
  background: rgba(0,0,0,.10);
  transition: .2s ease;
  text-decoration:none;
}

.social-icon svg{
  width: 22px;
  height: 22px;
  fill: #C9A24D; /* dourado */
}

.social-icon:hover{
  transform: translateY(-1px);
  border-color: rgba(201,162,77,.65);
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}

/* =========================
   FOOTER COMPLETO
========================= */
.footer{
  background-color: #1B2A41;
  color: #fff;
  padding: 40px 0 18px;
  text-align: left; /* tira “cara de landing simples” */
}

.footer__wrap{
  display:grid;
  grid-template-columns: 1.2fr 1fr .8fr;
  gap: 22px;
  align-items:start;
}

.footer__logo{
  max-height: 80px;
  width: auto;
  display:block;
  margin-bottom: 12px;
}

.footer__text{
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin: 0;
}

.footer h4{
  margin: 0 0 12px;
  color: rgba(255,255,255,.92);
  letter-spacing: .2px;
}

.footer__link{
  color: rgba(255,255,255,.86);
  text-decoration:none;
}

.footer__link:hover{
  color: #C9A24D;
}

.footer__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 10px;
}

/* “Redes no footer” com visual corporativo */
.footer__socials{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(201,162,77,.25);
  background: rgba(0,0,0,.10);
  text-decoration:none;
  color: #C9A24D;
  font-weight: bold;
  font-size: 12px;
  transition: .2s ease;
}

.footer__social:hover{
  transform: translateY(-1px);
  border-color: rgba(201,162,77,.55);
}

.footer__bottom{
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(201,162,77,.16);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  color: rgba(255,255,255,.70);
  font-size: 13px;
}

.toTop{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.10);
}

.toTop:hover{
  color: #C9A24D;
  border-color: rgba(201,162,77,.55);
}

/* =========================
   WHATSAPP FLUTUANTE
========================= */
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  width: 62px;
  height: 62px;
  border-radius: 18px;

  display:flex;
  align-items:center;
  justify-content:center;

  border: 1px solid rgba(201,162,77,.20);
  background: rgba(255,255,255,.95);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);

  transition: .2s ease;
}

.whatsapp-float img{
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
}

.whatsapp-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0,0,0,.26);
}

/* RESPONSIVO */
@media (max-width: 900px){
  .footer__wrap{
    grid-template-columns: 1fr;
  }

}

/* =========================
   SOBRE A EMPRESA
========================= */

.about-hero{
  background: #1B2A41;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.about-hero h1{
  font-size: 42px;
  margin-bottom: 18px;
}

.about-hero p{
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255,255,255,.85);
  font-size: 18px;
  line-height: 1.7;
}

.about-section{
  padding: 70px 20px;
}

.about-section h2{
  color: #1B2A41;
  margin-bottom: 20px;
  font-size: 30px;
}

.about-section p{
  max-width: 900px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-alt{
  background: #f4f7fb;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items:start;
}

.about-highlight{
  display:flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-card{
  background: #1B2A41;
  color: #fff;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
}

.highlight-number{
  display:block;
  font-size: 32px;
  font-weight: bold;
  color: #C9A24D;
  margin-bottom: 6px;
}

.about-values{
  background: #1B2A41;
  color: #fff;
}

.about-values h2{
  color: #fff;
}

.values-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.value-card{
  background: rgba(255,255,255,.08);
  padding: 22px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(201,162,77,.25);
  font-weight: bold;
  transition: .2s ease;
}

.value-card:hover{
  transform: translateY(-3px);
  border-color: #C9A24D;
}

.about-cta{
  background: #f4f7fb;
  padding: 70px 20px;
  text-align: center;
}

.about-cta h2{
  color: #1B2A41;
  margin-bottom: 12px;
}

.about-cta p{
  margin-bottom: 20px;
  color: #555;
}

/* RESPONSIVO */
@media (max-width: 900px){
  .about-grid{
    grid-template-columns: 1fr;
  }

  .about-hero h1{
    font-size: 32px;
  }
}

/* =========================
   PRODUTOS
========================= */
.prod-hero{
  background: #1B2A41;
  color: #fff;
  padding: 70px 20px;
  text-align: left;
}

.prod-hero h1{
  margin: 0 0 12px;
  font-size: 38px;
}

.prod-hero p{
  margin: 0;
  max-width: 850px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  font-size: 16px;
}

.prod-hero__note{
  margin-top: 18px;
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(201,162,77,.18);
  border-radius: 14px;
  padding: 12px 14px;
}

.prod-section{
  padding: 60px 0;
  background: #fff;
}

.prod-list{
  display: grid;
  gap: 18px;
}

.prod-card{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 18px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(27,42,65,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  background: #f9f9f9;
}

.prod-card__img img{
  width: 100%;
  height: 320px;        /* EXIBIÇÃO NA PÁGINA */
  object-fit: cover;    /* corte elegante */
  display:block;
}

.prod-card__content{
  padding: 18px;
}

.prod-card__content h2{
  margin: 0 0 10px;
  color: #1B2A41;
  font-size: 22px;
}

.prod-card__content p{
  margin: 0 0 12px;
  color: #333;
  line-height: 1.7;
}

.prod-card__content ul{
  margin: 0;
  padding-left: 18px;
  color: #333;
  line-height: 1.7;
}

.prod-card__cta{
  margin-top: 14px;
}

.prod-cta{
  background: #f4f7fb;
  padding: 70px 20px;
  text-align: center;
}

.prod-cta h2{
  color: #1B2A41;
  margin-bottom: 10px;
}

.prod-cta p{
  margin: 0 auto 18px;
  max-width: 820px;
  color: #555;
}

/* RESPONSIVO */
@media (max-width: 980px){
  .prod-card{
    grid-template-columns: 1fr;
  }
  .prod-card__img img{
    height: 320px;
  }
}

/* =========================
   SERVIÇOS
========================= */

.serv-hero{
  background:#1B2A41;
  color:#fff;
  padding:70px 20px;
}

.serv-section{
  padding:60px 20px;
}

.serv-alt{
  background:#f4f7fb;
}

.serv-table-wrapper{
  overflow-x:auto;
  margin-top:30px;
}

.serv-table{
  width:100%;
  border-collapse:collapse;
  text-align:center;
  background:#fff;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
}

.serv-table th,
.serv-table td{
  padding:16px;
  border:1px solid #eee;
}

.serv-table thead{
  background:#f4f7fb;
}

.logo-slot{
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo-slot img{
  max-height:60px;
  max-width:180px;
  object-fit:contain;
}

/* Definições */
.def-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}

.def-card{
  background:#f9f9f9;
  padding:20px;
  border-radius:14px;
  border:1px solid rgba(27,42,65,.10);
}

/* Coluna de rótulos (primeira coluna) */
.serv-rowhead{
  text-align: left;
  font-weight: bold;
  color: #1B2A41;
  background: #f4f7fb;
  min-width: 240px;
}

.serv-link{
  color: #1B2A41;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px dashed rgba(27,42,65,.35);
}

.serv-link:hover{
  color: #C9A24D;
  border-bottom-color: rgba(201,162,77,.75);
}

/* =========================
   INFORMAÇÕES
========================= */

.info-section{
  padding:60px 20px;
  background:#f4f4f4;
}

.info-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
  gap:30px;
}

.info-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
  transition:transform .3s ease;
}

.info-card:hover{
  transform:translateY(-6px);
}

.info-img{
  position:relative;
  height:220px;
  overflow:hidden;
}

.info-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.info-tag{
  position:absolute;
  top:15px;
  right:15px;
  background:#1B2A41;
  color:#fff;
  padding:6px 12px;
  font-size:12px;
  border-radius:20px;
}

.tag-green{
  background:#1B2A41;
}

.info-content{
  padding:20px;
}

.info-content h3{
  margin-bottom:10px;
  color:#1B2A41;
}

.info-content p{
  font-size:14px;
  color:#666;
  margin-bottom:12px;
}

.info-link{
  font-weight:bold;
  text-decoration:none;
  color:#1B2A41;
}

.info-link:hover{
  color:#C9A24D;
}

.info-date{
  font-size:12px;
  color:#999;
  margin-top:12px;
}

/* link tipo botão (pra manter o layout do modelo) */
.btn-link{
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

/* modal */
.no-scroll{ overflow: hidden; }

.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}

.modal.is-open{ display: block; }

.modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.modal__panel{
  position: relative;
  width: min(880px, calc(100% - 28px));
  max-height: calc(100% - 28px);
  overflow: auto;
  margin: 14px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  padding: 18px;
}

.modal__close{
  position: sticky;
  top: 0;
  margin-left: auto;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(27,42,65,.15);
  background: #f4f7fb;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: #1B2A41;
}

.modal__body h2{
  margin: 8px 0 10px;
  color: #1B2A41;
}

.modal__body p{
  line-height: 1.8;
  color: #333;
  margin: 10px 0;
}