@charset "UTF-8";
:root {
  --bg:#f5fbff;
  --deep:#031d3b;
  --primary:#0066ff;
  --accent:#00d1ff;
  --card:#ffffff;
  --muted:#6c7a89;
  --container:1280px;
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

* { box-sizing:border-box; }


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


html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* corta qualquer sobra lateral */
}


  html {
  scroll-behavior: smooth;
}

body { margin:0; background:linear-gradient(180deg,var(--bg),#ffffff); color:var(--deep); -webkit-font-smoothing:antialiased; font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  line-height: 1.65;
  color: var(--deep);
  background: linear-gradient(180deg, var(--bg), #ffffff);}
  



.wpcf7-form {
  max-width: 100% !important;
  width: 100%;
}



/* Ícones em laranja */


h2 i,
h2.map-title i,
a.btn-primary i {
  color: var(--primary); /* usa o laranja definido */
  margin-right: 6px; /* espaço entre ícone e texto */
  transition: color 0.3s ease;
}

/* Hover nos ícones do botão */
a.btn-primary:hover i {
  color: #ff8533; /* laranja mais claro ao passar o mouse */
}




.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
}




/* Ícones de contato laranja */
.contact-info i {
  color: var(--primary); /* usando a variável laranja que você já definiu */
  margin-right: 8px;     /* espaço entre ícone e texto */
  min-width: 20px;       /* opcional: alinha os ícones */
}




.contact-info a:hover {
  color: #e67600; /* ou outro tom de laranja para hover */
}


.card .preco {
  font-weight: bold;
  font-size: 18px; /* maior que antes */
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card .preco del {
  color: #999;
  font-size: 14px;
}

.card .preco span.promocao {
  color: #e53935; /* vermelho chamativo */
  font-size: 20px; /* maior que o original */
  font-weight: 900;
  background-color: #ffe6e6; /* leve fundo para destacar */
  padding: 2px 6px;
  border-radius: 4px;
}




.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  width: 100%;
  justify-items: stretch; /* Garante que os cards ocupem todo o espaço da coluna */
}

/* Card base */
.promo-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  width: 100%; /* Faz o card preencher a coluna */
}

/* Hover suave */
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

/* Imagem */
.promo-card .thumb {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.promo-card .thumb img {
  width: 100%;
  height: 220px;
  min-height: 220px;
  object-fit: contain;
  background: #f7f9fb;
  transition: transform 0.4s ease;
  z-index: 1;
  position: relative;
}

/* Badge */
.promo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(90deg, #ff6600, #ff3300);
  color: #fff;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 6px rgba(255,102,0,0.3);
  z-index: 5;
}

/* Conteúdo */
.card-content {
  padding: 18px 16px 22px;
  text-align: left;
  flex: 1 0 auto; /* Faz o conteúdo crescer para preencher o card */
}

.card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00263e;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Preço */
.preco {
  font-size: 1rem;
  margin-top: 10px;
}

.price-old {
  color: #999;
  margin-right: 8px;
}

.price-old del {
  color: #bbb;
}

.price-new {
  color: #ff3300;
  font-weight: 700;
  background: rgba(255, 102, 0, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}


/* CTA final */
.ver-todos-btn {
  background: linear-gradient(90deg, #ff6600, #ff3300);
  color: #fff;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255,102,0,0.3);
}

.ver-todos-btn:hover {
  background: linear-gradient(90deg, #ff8533, #ff4d1a);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,102,0,0.5);
}

/* Responsivo */
@media (max-width: 768px) {
  .promo-card img {
    height: 180px;
  }
  .card-content h3 {
    text-align: center;
  }
  .card-content p {
    text-align: center;
  }
}








/* ===== Popup Responsivo ===== */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 90%;
  width: 500px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  overflow: hidden;
  animation: popupIn 0.4s ease;
}

@keyframes popupIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-img {
  width: 100%;
  height: auto;
  display: block;
}

.popup-close {
  position: absolute;
  top: 10px; right: 14px;
  background: transparent;
  border: none;
  color: #333;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.popup-close:hover {
  color: #0073aa;
}

/* Responsividade */
@media (max-width: 480px) {
  .popup-content {
    width: 90%;
    border-radius: 8px;
  }
  .popup-close {
    font-size: 24px;
    top: 8px; right: 10px;
  }
}






a { color:inherit; text-decoration:none; }
.container { max-width:var(--container); margin:0 auto; padding:0 0px; width: 94%; height: auto; }





/* ===========================
   Resto do CSS existente
=========================== */
/*About, Features, Stats, Products, Partners, Contact, Footer, etc... */
/* Mantenha seu CSS existente daqui para frente */


/* ===========================
   Partners
=========================== */
.partners {
  padding-top:40px;
  padding-bottom: 40px;
  overflow: hidden;
}


.img_slick {
position: relative;
text-align: center;

padding: 20px;
padding-top: 0px;
padding-bottom: 0px;


  
}




.slick-track {
  display: flex !important;
  align-items: center; /* Vertically centers the slides within the track */
  height: auto; /* Or set a specific height if needed */
}

.slick-slide {
  display: flex !important;
  justify-content: center; /* Horizontally centers content within each slide */
  align-items: center; /* Vertically centers content within each slide */
  height: inherit !important; /* Ensures slides inherit track height if desired */
}

.slick-slide img {
width: 100%;
  /* Optional: Styles for the images themselves */
  max-width: 150px;
  height: auto;
  object-fit: contain; /* Or cover, depending on desired image scaling */

 /* filter: grayscale(100%) brightness(120%) opacity(0.8);*/


}


/********Mapa**********/

.map-section {
  text-align: center;
  background: #f5fbff;
  padding: 60px 20px 0;
  font-family: 'Poppins', sans-serif;
}

.map-title {
  font-size: 1.8rem;
  color: #031d3b;
  margin-bottom: 10px;
}

.map-title i {
  color: #000;
  margin-right: 8px;
}

.map-text {
  font-size: 1rem;
  color: #6c7a89;
  max-width:100%;
  line-height: 1.6;
}

.map-embed iframe {
  width: 100%;
  height: 400px;
  border: none;
}




/****** galeria quem somnos******/

/* ===== Container da galeria ===== */
.img_sobre {
  flex: 1 1 100%;
  width: 100%;
  height: auto;
  display: block;
  padding: 0;
  margin-top: 20px;
}

/* ===== Grid principal ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 180px;
  grid-gap: 12px;
  width: 100%;
}

/* ===== Itens ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  animation: fadeInUp .6s ease both;
}

.gallery-item:nth-child(2n) {
  grid-column: span 2;
}

.gallery-item:nth-child(3n) {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .3s ease;
  cursor: pointer;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* ===== Animação suave ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsivo ===== */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-auto-rows: 150px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    grid-gap: 8px;
  }

  .gallery-item:nth-child(2n),
  .gallery-item:nth-child(3n) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}


















.mapa {
	
	width:100%;height:0;padding-bottom:46%;position:relative; 
}




@media (max-width: 600px) {
.mapa {
	
	padding-bottom:56%;
}
	
}





.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value {
  display: flex;
  align-items: baseline; /* mantÃ©m o + e o nÃºmero alinhados na base */
  justify-content: center;
}

.plus {
  font-size: 2rem;
  font-weight: bold;
  margin-right: 4px;
	color:#000;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
}

.stat-label {
  margin-top: 6px;
  font-size: 1rem;
}






.anvisa-seal {
  display: flex;
  align-items: center;
  gap: 6px;
  /*background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;*/
  margin-top: 50px;
  margin-bottom: 50px;
  /*box-shadow: 0 4px 12px rgba(0,0,0,0.05);*/
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: fit-content;
  width: 100%; /* <â€” fundamental */
 
}

.anvisa-seal:hover {
  transform: translateY(-2px);
  
}

.anvisa-seal img {
width: 100%;
max-width: 340px;
display: block;
height: auto;
}

.anvisa-info span {
  display: block;
  font-size: 0.9rem;
  color: #4a5568;
}

.anvisa-info strong {
  font-size: 1rem;
  color: #0055cc;
}










/* About */
.about{ padding:56px 0; background:linear-gradient(180deg,#f8fcff,#ffffff); }
.about-top{ display:flex; gap:28px; align-items:center; flex-wrap:wrap }
.about-text{ flex:1; min-width:320px }
.about-text h2{ margin:0 0 12px; font-size:28px; color:var(--deep) }
.about-text p{ color:var(--muted); line-height:1.6; margin:0 0 18px }

/* features */
.features{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px; margin-top:22px }
.feature{ background:var(--card); padding:18px; border-radius:12px; box-shadow:0 12px 30px rgba(10,40,80,0.04); text-align:center; }
.feature h4{margin:0;color:var(--primary);font-weight:700}
.feature p{color:var(--muted);margin:4px 0 0}

/* Stats */
.stats {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
  justify-content: flex-start !important; /* forÃ§a alinhamento Ã  esquerda */
}

.stat {
  flex: 0 0 160px;
  background: linear-gradient(180deg, #ffffff, #f7fdff);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(10,40,80,0.03);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.stat .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.stat .stat-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}


/* Products */
.section{ padding:44px 0 }
.section {
  padding: 80px 0;
}
.section h2{ margin:0 0 18px; font-size:22px; color:var(--deep) }
.grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:20px }
.card{ background:var(--card); border-radius:14px; padding:16px; box-shadow:0 12px 30px rgba(10,40,80,0.06); transition:transform .28s,box-shadow .28s }
.card {
  box-shadow: 0 8px 24px rgba(3,29,59,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(3,29,59,0.12);
}

.card:hover{ transform:translateY(-8px); box-shadow:0 26px 58px rgba(8,40,90,0.12) }
.thumb{ height:220px; border-radius:10px; overflow:hidden; margin-bottom:12px }
.thumb img {
  width: 100%;
  height: auto; /* mantÃ©m a proporÃ§Ã£o */
  display: block;
}



/* Responsivo */

@media(max-width:600px){
.container {
width: 90%;
}

}

@media(max-width:768px){
  
  .section { padding: 60px 0; }
 
h2{text-align: center } 


.centralizar{text-align: center }
 
 
}


/* MantÃ©m o layout e corrige a largura */
.contact-wrap {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  max-width: 90%;
}

/* Aplica o mesmo estilo no novo form */
.wpcf7 form.contact-form {
  flex: 1;
  width: 100%;
  min-width: 400px !important;
  background: var(--card);
  padding: 18px;
  padding-bottom: 0px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(10, 40, 80, 0.06);
  box-sizing: border-box;
}

/* Garante que o wrapper externo tambÃ©m ocupe o espaÃ§o corretamente */
.wpcf7 {
  flex: 1;
  width: 100%;
  display: flex;
}

.contact-form p {
  margin: 0 0 14px 0; /* igual ao .field anterior */
}


.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e6eef5;
  font-size: 14px;
  box-sizing: border-box;
}


/* Campos do formulÃ¡rio */
.contact-form input,
.contact-form textarea,
.contact-form select {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid #e6eef5;
  border-radius: 10px;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* Ao focar (campo ativo) */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 80, 200, 0.08);
  outline: none;
}

/* Campo invÃ¡lido */
.contact-form .wpcf7-not-valid {
  border-color: #e63946; /* vermelho elegante */
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

/* Remove os estilos amarelos padrÃµes */
.wpcf7-not-valid-tip {
  color: #e63946;
  font-size: 13px;
  margin-top: 4px;
}


/* Ajuste do spinner */
.wpcf7-spinner {
  margin-left: 10px !important;
  position: relative;
  top: 10px;
}

/* Se quiser esconder e usar o seu */
.wpcf7-spinner::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.wpcf7-spinner > img { display: none; } /* esconde o GIF original */

@keyframes spin {
  to { transform: rotate(360deg); }
}



/* Caixa das mensagens */
.wpcf7-response-output {
  margin-top: 0px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  padding-top: 0px;
}

/* Sucesso */
.wpcf7-form.sent .wpcf7-response-output {
  background: #e6fff0;
  border: 1px solid #33cc66;
  color: #227a42;
}

/* Erro */
.wpcf7-form.invalid .wpcf7-response-output {
  background: #ffe6e6;
  border: 1px solid #ff4444;
  color: #a60000;
}

/* Aviso (campos obrigatÃ³rios nÃ£o preenchidos) */
.wpcf7-form.spam .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output {
  background: #fff8e6;
  border: 1px solid #ffcc00;
  color: #665c00;
}




.wpcf7-not-valid-tip {
  font-size: 12px;
  opacity: 0.8;
}




.contact-form {
  flex: 1;
  width: 100%;
  min-width: 300px;
  background: var(--card);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(10, 40, 80, 0.06);
  box-sizing: border-box;
}

/* BotÃ£o de envio */
.contact-form input[type="submit"] {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, color 0.2s ease;
  opacity: 1 !important; /* garante que nÃ£o fica esbranquiÃ§ado */
}

/* Hover */
.contact-form input[type="submit"]:hover {
  background: #1e40af; /* azul escuro bonito */
  color: #fff;              /* garante que o texto continue branco */
  opacity: 1 !important;    /* impede efeito de desbotamento do CF7 */
  transform: translateY(-1px);
}

/* Estado ativo (ao clicar) */
.contact-form input[type="submit"]:active {
  transform: translateY(0);
  background: var(--primary-dark);
  opacity: 0.95;
}


/* ===============================
   FOOTER
   =============================== */
.footer {
  background-color: #333; /* fundo limpo */
  color: #fff;
  padding: 60px 20px 40px;
  border-top: 2px solid #f0f0f0;
  font-family: "Inter", sans-serif;
  text-align: left;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  
}

/* Logo + descrição */
.footer-brand {
  flex: 1 1 180px;

}
.footer-logo {
  max-width: 180px;
  margin-bottom: 12px;
}
.footer-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left
 
}

/* Contatos */
.footer-contacts {
  flex: 1 1 300px;
}
.footer-contacts h3 {
  color: var(--primary); /* destaque laranja */
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.footer-contacts .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  text-align-last: left;

}
.footer-contacts .contact-item i {
  color: var(--primary); /* ícones laranja */
  margin-right: 10px;
  min-width: 20px;
  font-size: 1.1rem;
 
}
.footer-contacts a {
color: #e67600 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contacts a:hover {
  color: #fff !important; /* laranja hover mais intenso */
}



.phone-block {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.phone-block i {
  margin-top: 4px;
  color: var(--cor-laranja, #ff6600);
}

.phone-lines {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.phone-lines a {
  color: var(--cor-laranja, #ff6600) !important;
  text-decoration: none;
}

.phone-lines span {
  font-weight: 600;
   color: var(--cor-laranja, #ff6600);
}

@media (max-width: 768px) {
  .phone-block {
    flex-direction: row;
    align-items: flex-start;
  }
  .phone-lines {
    text-align: left;
  }
}







/* Selo ANVISA */
.footer-selo-anvisa {
  flex: 1 1 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.footer-selo-anvisa img {
  max-width: 260px;
}

/* COPYRIGHT */
.footer-right {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #999;
}



.phone-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1.4;
}

.phone-block i {
  color: var(--cor-laranja, #ff6600);
  margin-right: 3px !important;
  font-size: 16px;
}


.phone-block .divider {
  color: #ccc;
  font-weight: normal;
}

.phone-block a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.phone-block a:hover {
  color: var(--cor-laranja, #ff6600);
}

/* Responsivo */
@media (max-width: 768px) {
  .phone-block {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .phone-block i {
    margin-bottom: 4px;
  }
  .phone-block span,
  .phone-block a {
    font-size: 14px;
  }
}


@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px; /* reduz o espaçamento entre as seções */
  }

  .footer-contacts {
    flex: 1 1 100%;
    margin-top: 0; /* remove margem extra */
  }

  .footer-selo-anvisa {
    margin-top: 0; /* remove margem extra */
  }
}


/* ===============================
   Fade-in suave e leve
   =============================== */
/*
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform; /* ðŸ”¥ dica de performance */
}
/*
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
*/

/* ===============================
   Seção Diferenciais - RF Química
   =============================== */

.diferenciais {
  padding: 80px 0;
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

/*
.diferenciais h2 {
  text-align: left;
  font-weight: 700;
  color: #00263e;
  margin-bottom: 16px;
}
*/

.diferenciais .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}


.subtitulo-diferenciais {
  text-align: center;
  color: #667;
  font-size: 1.05rem;
  margin-top: 8px;
}


/* Card base */
.card-diferencial {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.35s ease;
  border-top: 4px solid transparent;
  cursor: default;
}

/* Ícone circular */
.card-diferencial img {
  width: 64px;
  height: 64px;
  background: rgba(255, 102, 0, 0.08);
  padding: 12px;
  border-radius: 50%;
  margin-bottom: 18px;
  transition: all 0.35s ease;
}

/* Título e texto */
.card-diferencial h3 {
  font-size: 1.2rem;
  color: #00263e;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-diferencial p {
  font-size: 0.95rem;
  color: #556;
  line-height: 1.6;
}

/* Hover comercial */
.card-diferencial:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-top: 4px solid #ff6600;
}

.card-diferencial:hover img {
  background: linear-gradient(135deg, #ff6600, #ff3300);
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .diferenciais {
    padding: 60px 0;
  }

  .card-diferencial {
    padding: 28px 20px;
  }
}




/* ===============================
   Cards de produtos
   =============================== */
.cards-container {
  display: grid;
  gap: 24px;
  margin: 0 auto;
  padding: 0 0px;
}

/* 4 cards em telas grandes */
@media (min-width: 1400px) {
  .cards-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 3 cards em telas mÃ©dias */
@media (min-width: 1024px) and (max-width: 1399px) {
  .cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 2 cards em tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 1 card em mobile */
@media (max-width: 767px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   Cards estilos
   =============================== */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card .thumb {
  width: 100%;
  height: 200px; /* mesma altura para todos */
  overflow: hidden;
  border-radius: 12px 12px 0 0; /* mantÃ©m cantos arredondados */
}

.card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* garante que a imagem preencha o espaÃ§o sem distorcer */
  transition: transform 0.5s ease;
  min-height: 200px;
}

.card:hover .thumb img {
  transform: scale(1.05); /* efeito de zoom suave */
}











/* ===============================
   CATEGORIAS - VERSÃO COMERCIAL
   =============================== */
#categorias {
  background: #fff;
  padding: 80px 0;
}

/*
#categorias h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0b2c4d;
  text-align: center;
  margin-bottom: 12px;
}

#categorias p {
  text-align: center;
  color: #6f7a83;
  max-width: 700px;
  margin: 0 auto;
}
*/
/* Container dos cards */
#categorias .cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

/* Card base */
#categorias .categoria-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  padding: 24px 18px;
  transition: all 0.35s ease;
  position: relative;
}

/* Imagem da categoria */
#categorias .categoria-card .thumb {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px;
}

#categorias .categoria-card img {
  max-width: 100%;
  max-height: 220px;
  min-height: 200px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* Título e texto */
#categorias .categoria-card h3 {
  color: #0b2c4d;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

#categorias .categoria-card p {
  color: #6c757d;
  font-size: 0.95rem;
}

/* Hover com foco em conversão */
#categorias .categoria-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

#categorias .categoria-card:hover img {
  transform: scale(1.08);
}

#categorias .categoria-card::after {
  content: "Ver produtos";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ff6600;
  color: #fff;
  font-weight: 600;
  padding: 12px 0;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}


#categorias .categoria-card {
  text-decoration: none;
  display: block;
  cursor: pointer;
}
#categorias .categoria-card h3,
#categorias .categoria-card p {
  text-decoration: none;
  color: inherit;
}



#categorias .categoria-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Responsivo */
@media (max-width: 768px) {
  #categorias .categoria-card {
    padding: 20px 16px;
  }
  #categorias .categoria-card .thumb {
    height: 150px;
  }
}







/* ===============================
   TESTIMONIALS
   =============================== */
.testimonials {
  padding: 60px 0;
  background: #f9f9f9;
  position: relative;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.testimonials .testimonial-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 40px 24px;
  margin: 0 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 24px);
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  position: relative;
  padding: 0 24px;
}

.testimonial p::before {
  content: "\201C"; /* equivalente a &ldquo; */
  font-size: 3rem;
  color: #f28c28;
  position: absolute;
  left: -8px;
  top: -16px;
}

.testimonial p::after {
  content: "\201D"; /* equivalente a &rdquo; */
  font-size: 3rem;
  color: #f28c28;
  position: absolute;
  right: -8px;
  bottom: -16px;
}

.testimonial strong {
  display: block;
  margin-top: 16px;
  color: #222;
  font-weight: 600;
  font-size: 1.05rem;
}

/* Dots */
.testimonial-dots {
  text-align: center;
  margin-top: 32px;
}

.testimonial-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots span.active {
  background: #f28c28; /* laranja ativo */
  transform: scale(1.3);
}

/* Prev / Next buttons */
.testimonial-prev,
.testimonial-next {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
 padding: 8px 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 5;
  transition: background 0.3s ease;
  display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev {
  left: 16px; /* distância da borda esquerda */
}

.testimonial-next {
  right: 16px; /* distância da borda direita */
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: rgba(0,0,0,0.8);
}

/* Responsividade */
@media (max-width: 768px) {
  .testimonial {
    padding: 32px 16px;
    width: calc(100% - 16px);
  }
  .testimonial-prev,
  .testimonial-next {
    font-size: 1.2rem;
    padding: 8px 12px;
  }
  .testimonial p::before,
  .testimonial p::after {
    font-size: 1.2rem;
  }
}



@media (max-width: 768px) {
  .testimonial-prev,
  .testimonial-next {
    display: block;
  }
  
 

/* Prev / Next buttons */
.testimonial-prev,
.testimonial-next {
  top:90%;
  padding: 6px 10px;
 font-size: 1.1rem;
}
 
  
}





/* ===============================
   Botões - Padrão RFQuímica
   =============================== */
/* ===============================
   🔶 Padronização Global RFQuímica
   =============================== */

/* Força o laranja como cor primária global */
:root {
  --primary: #ff6600 !important;
  --primary-hover: #ff3300 !important;
  --primary-gradient: linear-gradient(90deg, #ff6600, #ff3300) !important;
}

/* Corrige botões padrão que ainda estão azuis */
a.cta-btn, button.cta-btn {
  background: var(--primary-gradient) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3) !important;
}

a.cta-btn:hover, button.cta-btn:hover {
  background: linear-gradient(90deg, #ff8533, #ff4d1a) !important;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.5) !important;
  transform: translateY(-2px);
}

/* Corrige botões outline (borda) */
a.btn-outline, button.btn-outline {
  border: 2px solid #ff6600 !important;
  color: #ff6600 !important;
  background: transparent !important;
  box-shadow: none !important;
}

a.btn-outline:hover, button.btn-outline:hover {
  background: var(--primary-gradient) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4) !important;
}

/* Garante consistência em elementos genéricos com classe .btn */
.btn, .button, input[type="submit"], input[type="button"] {
  background: var(--primary-gradient) !important;
  color: #fff !important;
  border: none !important;
  transition: all 0.3s ease;
}

.btn:hover, .button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  background: linear-gradient(90deg, #ff8533, #ff4d1a) !important;
}

/* Remove sombra azul se existir */
button, .btn, .cta-btn {
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3) !important;
}

/* Transições e efeitos */
a.cta-btn, button.cta-btn,
a.btn-outline, button.btn-outline {
  transition: all 0.25s ease;
}
a.cta-btn:hover, button.cta-btn:hover,
a.btn-outline:hover, button.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 102, 0, 0.3);
}

/* Layout container */
.cta-container {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
  }

  .cta-container a {
    width: 100%;
    text-align: center;
  }
}

/* ===============================
   Botões principais
   =============================== */
.cta-btn {
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

.cta-btn:hover {
  background: linear-gradient(90deg, #ff8533, #ff4d1a);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.5);
}

/* ===============================
   Botões contorno (secundários)
   =============================== */
.btn-outline {
  border: 2px solid #ff6600;
  color: #ff6600;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: linear-gradient(90deg, #ff6600, #ff3300);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}

/* ===============================
   Mobile
   =============================== */
@media (max-width: 600px) {
  .cta-btn, .btn-outline {
    width: 100%;
    margin: 0 auto;
  }
}






/* ===============================
   FormulÃ¡rio
   =============================== */
.contact-form .field {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
}

/* ===============================
   Responsividade
   =============================== */
@media(max-width: 768px){
  .about-top {
    flex-direction: column;
    gap: 24px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
}






/* Ajuste para setas do lightbox no mobile */
@media (max-width: 768px) {
.lb-nav a.lb-prev {
  opacity: 1 !important;
}


.lb-nav a.lb-next {
  opacity: 1 !important;
}
}



/* Corrige logos no marquee contínuo */
.slider img {
    height: 160px;
    width: auto;
    display: block;
    margin: 0 30px;
    object-fit: contain;
}

/* Evita cortes */
.img_slick {
    display: flex !important;
    align-items: center;
    justify-content: center;
}




.testimonial { display: none; opacity: 0; transition: .4s; }
.testimonial.active { display: block; opacity: 1; }

.testimonial-dots { text-align:center; margin-top:20px; }
.testimonial-dots span {
    width: 12px; height: 12px; 
    background: #ccc; display:inline-block;
    border-radius: 50%; margin: 4px; cursor:pointer;
    transition: .3s;
}
.testimonial-dots span.active {
    background: #006699;
}

.testimonial-prev, .testimonial-next {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #006699;
    margin: 10px;
}






