/* =========================================================
   ROTA EMBALAGENS — folha de estilos
   Paleta e tipografia extraídas do layout Adobe XD
   ========================================================= */

:root {
  --black: #000000;
  --white: #ffffff;
  --blue: #00aeef;
  --pink: #ec0c8c;
  --yellow: #ffe600;

  --gray-900: #1a1a1a;
  --gray-800: #262626;
  --gray-700: #6d6d6d;
  --gray-600: #8a8a8a;
  --gray-500: #8e8e8e;
  --gray-400: #a4a4a4;
  --gray-300: #bfbfbf;
  --gray-200: #cfcfcf;
  --gray-100: #dadada;
  --gray-50: #f2f2f2;

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Chivo', 'Montserrat', sans-serif;

  --container-max: 1320px;
}

.row {
    --bs-gutter-x: 0rem;
}

* { box-sizing: border-box; }

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-900);
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

a { text-decoration: none; }

img { max-width: 100%; display: block; }

#fotos_empresa img, #muito-alem img, #inovacao img { width: 100%;}

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 5vw; }

.text-blue { color: var(--blue); }
.text-pink { color: var(--pink); }
.text-yellow { color: var(--yellow); }
.text-gray { color: var(--gray-700); }

section { position: relative; }

/* ===== Botões ===== */
.btn-vermais {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: 'Segoe UI', var(--font-display), sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.55rem 1.6rem;
  border-radius: 30px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.btn-vermais:hover { background: var(--white); color: var(--black); }

.btn-vermais-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  color: var(--black);
  font-family: 'Segoe UI', var(--font-display), sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.55rem 1.6rem;
  border-radius: 30px;
  background: var(--gray-300);
  transition: background 0.2s;
}
.btn-vermais-dark:hover { background: var(--gray-400); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 30px;
  background: var(--blue);
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #0092cc; transform: translateY(-2px); }

/* ===== Navbar ===== */
.site-header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 5vw;
  transition: top 0.3s ease;
}
@media (max-width: 991.98px) {
	.site-header {
		padding: 0 0vw !important;
		background: #000;
	}
	.nav-badge
	{
		display: none;
	}
}

.navbar-rota {
  width: 84%;
  max-width: 1400px;
  background: rgba(0,0,0,0.92);
  border-radius: 0px 0px 30px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.6rem 0.6rem 1.8rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: padding 0.3s ease;
}
.site-header.scrolled { top: 0; }
.site-header.scrolled .navbar-rota { border-radius: 0px 0px 30px 30px; padding: 0.5rem 1.8rem; }

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.brand-word {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.brand-word .o-swirl {
  width: 0.78em;
  height: 0.78em;
  margin: 0 0.02em;
  border-radius: 50%;
  background: url('../img/logo-icon.png') center/cover;
  display: inline-block;
}
.brand-sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--gray-400);
  margin-left: 0.15em;
  margin-top: 0.15em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--gray-100);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.social-icons { display: flex; gap: 0.6rem; }
.social-icons a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 0px solid var(--white);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.social-icons a:hover { transform: scale(0.9); /*background: var(--white); color: var(--black);*/ }

.nav-badge {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: url('../img/logo-icon.png') center/cover;
  flex-shrink: 0;
  /*box-shadow: 0 4px 14px rgba(0,0,0,0.3);*/
  
  margin-right: -30px;
  margin-top: 0px;
  
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 1.6rem;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0; right: 0;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem 1.8rem;
    border-radius: 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .navbar-right { gap: 0.6rem; }
  .nav-badge { width: 42px; height: 42px; }
  .brand-word { font-size: 1.25rem; }
}

/* ===== Page header (banner interno) ===== */
.page-header {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  background: var(--black) url('../img/banner-page.png') center/cover no-repeat;
  padding-top: 120px;
  overflow: hidden;
}
/*.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
}*/


.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 3rem 0;
}
.page-header .eyebrow {
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.page-header p {
  color: var(--gray-100);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ===== Page header — versão somente imagem ===== */
.page-header-banner {
  position: relative;
  background: var(--black);
  line-height: 0;
  overflow: hidden;
}
.page-header-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Hero (home slider) ===== */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.hero-slider {
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero-slide-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-cta-bar {
  background: var(--black);
  padding: 2.2rem 0;
}
.hero-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-cta-inner p {
  color: var(--gray-200);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 560px;
  margin: 0;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; flex-shrink: 0; }

.scroll-down {
  position: absolute;
  bottom: 28px;
  left: 5vw;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 3;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Small floating chevrons between sections */
.section-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.05rem;
  position: relative;
  margin: -20px auto 0;
  z-index: 5;
  
  position: absolute;
  float: right;
  left: 90%;
}
.chevron-blue { background: var(--blue); }
.chevron-pink { background: var(--pink); }
.chevron-yellow { background: var(--yellow); color: var(--black); }
.baixo-pulsar {animation: bounce 2s infinite;}

/* ===== Decorative rings (Elipse) ===== */
.ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.ring::before {
  content: '';
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: var(--white);
}
.ring-blue { background: var(--blue); }
.ring-pink { background: var(--pink); }
.ring-yellow { background: var(--yellow); }

/* ===== Diferenciais strip ===== */
.diferenciais-section {
  padding: 3.2rem 0;
  background: var(--white);
}
.diferenciais-section img { width: 100%; height: auto; }

/* Grid (row/col-*) agora vem do Bootstrap 5, carregado no <head> de cada página */
.diferenciais-section .row > [class*="col-"] { margin-bottom: 1.5rem; }

.diferencial-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 7px 36px -27px rgba(0,0,0,0.06);
}
.diferencial-card img { transition: transform 0.35s ease; }
.diferencial-card:hover img { transform: scale(1.03);     }
.diferencial-hover {
  max-height: 0;
  overflow: hidden;
  background: var(--gray-50);
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.1rem;
  border-radius: 34px 10px 6px 10px;
}
.diferencial-hover p {
  color: var(--gray-700);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}
.diferencial-card:hover .diferencial-hover,
.diferencial-card:focus-within .diferencial-hover {
  max-height: 180px;
  padding: 1.1rem;
}

/* ===== Portfólio ===== */
.portfolio-section {
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}




.portfolio-grid > div { min-width: 0; }
.portfolio-grid h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); margin-bottom: 1.4rem; }
.portfolio-grid > div:first-child p { color: var(--gray-700); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.8rem; }

.portfolio-tabs { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.8rem; }
.tab-link {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gray-500);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.tab-link .arrow { opacity: 0; transition: opacity 0.2s; color: var(--blue); font-size: 1rem; }
.tab-link.active { color: var(--blue); }
.tab-link.active .arrow { opacity: 1; }

.carousel-wrap {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.carousel-arrow {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--gray-300);
  color: var(--gray-700);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.carousel-arrow:hover { background: var(--gray-400); color: var(--white); }

.carousel-track {
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.2rem;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
  text-align: center;
  
  
    background: #ddd;
    border-radius: 12px;
    height: 420px;
}
.carousel-card img {
  border-radius: 20px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 1rem;
}
@media (max-width: 991.98px) {
	.carousel-card img {
        border-radius: 20px;
        width: auto;
        height: 100%;
        object-fit: contain;
    }
	
	.carousel-card {
    flex: 0 0 auto;
    width: 100% !important;
    
	}
}

.carousel-card-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--gray-900);
  margin: 0;
}
.carousel-card-label span { display: block; font-weight: 400; font-size: 0.82rem; color: var(--gray-600); }

.portfolio-panel { display: none; }
.portfolio-panel.active { display: block; }

/* ===== História / Nossa Empresa ===== */
.dark-section {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0;
}
.dark-section h2 { color: var(--white); font-size: clamp(1.9rem, 3.3vw, 2.7rem); }
.dark-section .lede { color: var(--gray-200); font-size: 1.08rem; line-height: 1.75; }

.historia-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

.feature-list { list-style: none; margin: 2.2rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 1.6rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-list .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); margin-top: 0.5rem; flex-shrink: 0; }
.feature-list strong { display: block; color: var(--white); font-family: var(--font-display); font-weight: 700; margin-bottom: 0.25rem; }
.feature-list span { color: var(--gray-300); font-size: 0.95rem; line-height: 1.6; }

.photo-duo { border-radius: 20px; overflow: hidden; margin-top: 3rem; }
.photo-duo img { width: 100%; }

/* ===== Nossa Empresa — versão clara (página dedicada) ===== */
.historia-light-section { background: var(--white); padding: 6.5rem 0; }
.historia-light-section h2 { color: var(--black); font-size: clamp(1.9rem, 3.3vw, 2.7rem); letter-spacing: -0.02em; }
.historia-light-section .lede-20 { color: var(--gray-700); font-size: 1.2rem; line-height: 1.7; }
.historia-light-section .lede-18 { color: var(--gray-700); font-size: 1.05rem; line-height: 1.7; }
.photo-duo-light { margin-top: 3.5rem; }

.muito-alem-section { position: relative; }
.muito-alem-photo { position: relative; height: 58vh; min-height: 420px; overflow: hidden; }
.muito-alem-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.muito-alem-overlay {
  position: relative;
  inset: 0;
  
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 3.5rem 5vw;
}
.muito-alem-overlay h2 {
  color: #000;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}


.texto-muito-alem-right, .titulo-muito-alem-right
{
	text-align: right;
	width: 100%
}

/* ===== Do Offset à Flexografia ===== */
.offset-flexo-tabs { margin-bottom: 0.5rem; }
.offset-flexo-tabs .col-6,
.offset-flexo-tabs .caixa-cor-azul,
.offset-flexo-tabs .caixa-cor-rosa {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}
.offset-flexo-tabs img { width: 22px; height: 22px; object-fit: contain; }
.offset-flexo-tabs .caixa-cor-azul { color: var(--blue); }
.offset-flexo-tabs .caixa-cor-rosa { color: var(--pink); }
.offset-flexo-tabs [data-tab-vantagem].active { opacity: 1; }

.icone-lista { list-style: none; margin: 1.5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.icone-lista li { display: flex; align-items: center; gap: 1rem; }
.icone-lista img { width: 30px; height: 30px; object-fit: contain; flex-shrink: 0; }
.icone-lista span { color: var(--gray-700); font-size: 1.02rem; line-height: 1.4; }

/* ===== Efeito parallax ===== */
.parallax-section {
  min-height: 65vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.parallax-materia-prima {
  background-image: url('../nossas-solucoes/Materias-primas-que-valorizam-o-seu-produto.png');
}

.parallax-mundo {
  background-image: url('../nossas-solucoes/entrega-em-todo-brasil.png');
}
@media (max-width: 991.98px) {
  /* background-attachment: fixed não funciona bem em mobile/iOS — cai para scroll normal */
  .parallax-section { background-attachment: scroll; min-height: 40vh; }
}

.texto-inovacao-right, .titulo-inovacao-right
{
	text-align: left;
	width: 100%
}



#muito-alem, #inovacao
{
	background:#dadada;
}

p
{
	color: #6d6d6d
}


#muito-alem p 
{
	width: 60%;
	float: right;
}

#inovacao p
{
	width: 60%;
	float: left;
}

.inovacao-section { padding: 6.5rem 0; background: var(--gray-50); }
.inovacao-tag {
  display: block;
  text-align: center;
  color: var(--gray-700);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  max-width: 620px;
  margin: 0 auto 3rem;
}
.inovacao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-bottom: 3.5rem;
}
.inovacao-item { display: flex; gap: 1rem; align-items: flex-start; }
.elipse-dot { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; position: relative; margin-top: 0.1rem; }
.elipse-dot::after { content: ''; position: absolute; inset: 30%; background: var(--gray-50); border-radius: 50%; }
.elipse-blue { background: var(--blue); }
.elipse-pink { background: var(--pink); }
.elipse-yellow { background: var(--yellow); }
.inovacao-item strong { display: block; color: var(--black); font-family: var(--font-display); font-weight: 700; margin-bottom: 0.3rem; }
.inovacao-item span { color: var(--gray-700); font-size: 0.92rem; line-height: 1.55; }
.inovacao-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.inovacao-photos img { width: 100%; height: 300px; object-fit: cover; border-radius: 18px; }

.machine-block { text-align: center; padding: 5.5rem 0; background: #d9d9d9; }
.machine-block h2 { font-size: clamp(1.9rem, 3.3vw, 2.6rem); margin-bottom: 0.5rem; }
.machine-block .sub { color: var(--gray-700); font-size: 1.05rem; margin-bottom: 2.5rem; }
.machine-visual { /*max-width: 900px; margin: 0 auto 2.2rem; border-radius: 18px; overflow: hidden; background: var(--white); box-shadow: 0 20px 45px rgba(0,0,0,0.08); padding: 1.5rem;*/ }
.machine-name { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.05rem; margin-bottom: 0.8rem; }
.badge-pill-dark {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  border-radius: 30px;
  padding: 0.55rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-display);
}

/* ===== Nossas Soluções ===== */
.solucoes-section { padding: 6rem 0; }
.solucao-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.solucao-row:last-child { border-bottom: none; }
.solucao-row.reverse .solucao-photo { order: 2; }
.solucao-photo { border-radius: 20px; overflow: hidden; }
.solucao-photo img { width: 100%; height: 340px; object-fit: cover; }
.solucao-text .tag { color: var(--blue); font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.9rem; display: block; }
.solucao-text h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); line-height: 1.2; margin-bottom: 1.1rem; }
.solucao-text p { color: var(--gray-700); font-size: 1.05rem; line-height: 1.75; }

.cta-band {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 5.5rem 5vw;
  border-radius: 28px;
  margin: 0 5vw 6rem;
}

.cta-band-portfolio{
  background: #dadada;
  color: #000;
  text-align: center;
  padding: 5.5rem 5vw;
  border-radius: 28px;
  margin: 0 5vw 6rem;
}

.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }
.cta-band p { color: var(--gray-200); font-size: 1.05rem; max-width: 620px; margin: 0 auto 2rem; line-height: 1.6; }

/* ===== Contato ===== */
.contato-section {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
}
.contato-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; }
.contato-section h2 { color: var(--white); font-size: clamp(2rem, 3.4vw, 2.7rem); margin-bottom: 1rem; }
.contato-section > .container > .contato-grid > div:first-child > p { color: #9b9b9b; font-size: 1.05rem; margin-bottom: 2.4rem; line-height: 1.6; }

.endereco-block { margin-bottom: 1.4rem;     text-align: right; padding-right:0px; }
.endereco-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.endereco-block p { color: var(--gray-200); margin: 0; font-size: 0.85rem; line-height: 1.5; }

.contato-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-label-v2 {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  margin-bottom: 0.45rem;
}
.form-control-v2, .form-select-v2 {
  width: 100%;
  background: var(--white);
  border: 1px solid #333;
  color: #8a8a8a;
  border-radius: 40px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  
}
.contato-form label
{
	display: none;
}
.contato-section textarea
{
	border-radius: 20px !important;
}
.form-control-v2:focus, .form-select-v2:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.2);
}
.form-control-v2::placeholder { color: #6a6a6a; }
.form-row { display: grid; /*grid-template-columns: 1fr 1fr;*/ gap: 1.2rem; }
textarea.form-control-v2 { resize: vertical; min-height: 110px; }

.btn-enviar {
  align-self: flex-start;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
}
.btn-enviar:hover { background: #0092cc; }

/* ===== Contato (home) — versão pill ===== */
.form-contato {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0;
}
.form-contato h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
  max-width: 100%;
}
.form-contato > .container > .contato-grid > div:first-child > p {
  color: var(--gray-200);
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
  line-height: 1.6;
}
.pin-icon { color: var(--yellow); font-size: 0.85em; margin-left: 0.2em; }

.social-icons-plain { display: flex; gap: 1.1rem; margin-top: 1.6rem; }
.social-icons-plain a {
  color: var(--blue);
  font-size: 1.3rem;
  transition: color 0.2s, transform 0.2s;
}
.social-icons-plain a:hover { color: var(--white); transform: translateY(-2px); }

.contato-form-pill { display: flex; flex-direction: column; gap: 1rem; }
.pill-input {
  width: 100%;
  background: var(--gray-50);
  border: none;
  color: var(--gray-700);
  border-radius: 26px;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  appearance: none;
}
select.pill-input {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%236d6d6d' stroke-width='2' fill='none' fill-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  padding-right: 2.6rem;
  cursor: pointer;
}
.pill-textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 130px;
  padding: 1rem 1.4rem;
}
.pill-input::placeholder { color: var(--gray-600); }
.pill-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,174,239,0.35);
}

.btn-enviar-pink {
  align-self: flex-start;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
}
.btn-enviar-pink:hover { background: #c60a75; }

/* ===== Mapas ===== */
.maps-section { background: var(--gray-50); }
.maps-row { display: flex; position: relative; }
.map-col { flex: 1; position: relative; }
.map-col iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(0.1); }
.map-label {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  z-index: 2;
}
.map-divider { width: 1px; background: var(--gray-200); }

/* ===== Footer ===== */
.site-footer { background: var(--black); color: var(--gray-400); padding: 3.5rem 0 1.6rem; position: relative;
    z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.6; margin-top: 1rem; max-width: 280px; }
.footer-col h5 { font-family: var(--font-display); color: var(--white); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { color: var(--gray-400); font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom .social-icons a { border-color: #444; }

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 8px 22px rgba(37,211,102,0.45);
  z-index: 1000;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== Responsivo ===== */
@media (max-width: 991.98px) {
  .page-header { padding-top: 130px; }
  .page-header-inner { max-width: 100%; }
  .hero-cta-inner { flex-direction: column; align-items: flex-start; }
  .portfolio-grid, .historia-grid, .contato-grid { grid-template-columns: 1fr; }
  .solucao-row, .solucao-row.reverse { grid-template-columns: 1fr; }
  .solucao-row.reverse .solucao-photo { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .inovacao-grid, .inovacao-photos { grid-template-columns: 1fr; }
  .muito-alem-photo { height: 44vh; }
}

@media (max-width: 575.98px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 3.5rem 1.5rem; margin: 0 4vw 4rem; }
}

.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
   
    font-weight: bolder !important;
	
}

.icon-baixo-1 
{
	POSITION: relative;
  
    LEFT: 90%;
}

.carousel-card img:hover
{
	transform: scale(0.96);
}

.text-center
{
	text-align: center
}



#historia { overflow: visible; }
#historia::after {
	content: '';
	width: 408px;
	background: transparent url(../imagens/Elipse7.png) 0% 0% no-repeat padding-box;
	position: absolute;
	opacity: 1;
	z-index: 9999;
	left: 92%;
	height: 490px !important;
	background-size: 300px;
	margin-top: -9%;
}


#inovacao { overflow: visible; }
#inovacao::after {
	content: '';
	width: 408px;
	background: transparent url(../imagens/Elipse12.png) 0% 0% no-repeat padding-box;
	position: absolute;
	opacity: 1;
	z-index: 9999;
	left: 92%;
	height: 490px !important;
	background-size: 300px;
	margin-top: -9%;
}

#fotos_empresa{ overflow: visible; }
#fotos_empresa::after {
	content: '';
    width: 408px;
    background: transparent url(../img/icone_logo.png) 0% 0% no-repeat padding-box;
    position: absolute;
    opacity: 1;
    z-index: 0;
    left: 50%;
    height: 490px !important;
    background-size: 300px;
    margin-top: 0%;
    position: absolute;
    bottom: -344px;
    margin-left: -150px;
}

.container.text-left {
    text-align: left
}

.diferenciais-section 
{
	background: #dadada;
}
.caixa-cor-azul
{
	background:#00AEEF;
	cursor:pointer;
}

.caixa-cor-rosa
{
	background:#FF09B2;
	cursor:pointer;
}

#nossas-solucoes-interna-diferencias { overflow: visible; }
#nossas-solucoes-interna-diferencias::after { 
	content: '';
	width: 408px;
	background: transparent url(../imagens/Elipse7.png) 0% 0% no-repeat padding-box;
	position: absolute;
	opacity: 1;
	z-index: 9999;
	left: 92%;
	height: 490px !important;
	background-size: 300px;
	margin-top: -9%;
}



#Do-Offset_A_Flexografia {overflow: visible; background:#E8E8E8; }
#Do-Offset_A_Flexografia::after {
	content: '';
	width: 408px;
	background: transparent url(../imagens/Elipse8.png) 0% 0% no-repeat padding-box;
	position: absolute;
	opacity: 1;
	z-index: 9999;
	left: -9%;
	height: 490px !important;
	background-size: 300px;
	margin-top: -9%;
}

#controle-inicio-fim {overflow: visible; background:#ffffff; }
#controle-inicio-fim::after { 
	content: '';
	width: 408px;
	background: transparent url(../imagens/Elipse12.png) 0% 0% no-repeat padding-box;
	position: absolute;
	opacity: 1;
	z-index: 9999;
	left: 92%;
	height: 490px !important;
	background-size: 300px;
	margin-top: -9%;
}
.img-fluid
{
	width: 100%;
}

#controle-inicio-fim ul li
{
	line-height: 2.4vw;
	color: #818181;
}
#controle-inicio-fim p
{
	color: #8a8a8a;
}

#materia-prima-solucoes
{
	background: #000;
}

#entrega-rapida-com-frota
{
	background: #DADADA;
}

#caminhao-entrega p {color: #8a8a8a}

#entrega-rapida-com-frota {overflow: visible; background:#ffffff; }
#entrega-rapida-com-frota::after {
	content: '';
	width: 408px;
	background: transparent url(../imagens/Elipse7.png) 0% 0% no-repeat padding-box;
	position: absolute;
	opacity: 1;
	z-index: 9999;
	left: -9%;
	height: 490px !important;
	background-size: 300px;
	margin-top: -9%;
}

.bg-preto {background:#000;}

.bg-preto h1
{
	color:#fff
}
.bg-preto p{color: #b5b1b1 !important;}


#bg-todo-brasil {overflow: visible; }
#bg-todo-brasil::after {
	content: '';
	width: 408px;
	background: transparent url(../imagens/Elipse8.png) 0% 0% no-repeat padding-box;
	position: absolute;
	opacity: 1;
	z-index: 9999;
	left: 92%;
	height: 490px !important;
	background-size: 300px;
	margin-top: -9%;
}

.caixa-cor-azul:hover, .caixa-cor-rosa:hover
{
	transform: scale(0.96);
}

.caixa-cor-azul span, .caixa-cor-rosa span {
    font-size: 20px;
    color: #000;
}
.pin-amarelo
{
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-evenly;
    position: relative;
    float: right;
    right: -1%;
}
.icon-azuis i
{
 color:#00aeef;	
}
.social-icons.icon-azuis {
    float: right;
    padding-right: 0px;
}
.texto-right-contato
{
	float:right;
	text-align: right;
	padding-right: 10px;
}



#portfolio-1 {overflow: visible; background:#ffffff; }
#portfolio-1::after {
	content: '';
	width: 408px;
	background: transparent url(../imagens/Elipse7.png) 0% 0% no-repeat padding-box;
	position: absolute;
	opacity: 1;
	z-index: 9999;
	left: -9%;
	height: 490px !important;
	background-size: 300px;
	margin-top: -9%;
}

#portfolio-2 {overflow: visible; }
#portfolio-2::after {
	content: '';
	width: 408px;
	background: transparent url(../imagens/Elipse8.png) 0% 0% no-repeat padding-box;
	position: absolute;
	opacity: 1;
	z-index: 9999;
	left: 92%;
	height: 490px !important;
	background-size: 300px;
	margin-top: -9%;
}


#portfolio-3 {overflow: visible; background:#ffffff; }
#portfolio-3::after {
	content: '';
	width: 408px;
	background: transparent url(../imagens/Elipse12.png) 0% 0% no-repeat padding-box;
	position: absolute;
	opacity: 1;
	z-index: 9999;
	left: -9%;
	height: 490px !important;
	background-size: 300px;
	margin-top: -16%;
}
#portfolio-1 .container, #portfolio-2 .container
{
	padding: 0px !important
}

#portfolio-1 .portfolio-grid , #portfolio-2 .portfolio-grid {
  display: grid;
  grid-template-columns: minmax(280px, 280px) minmax(0, 1fr) !important;
  gap: 3rem;
  align-items: center;
}



@media (max-width: 991.98px) {
	
	#portfolio-3::after,
	#portfolio-2::after,
	#portfolio-1::after,
	#bg-todo-brasil::after,
	#historia::after,
	#inovacao::after,
	#fotos_empresa::after,
	#nossas-solucoes-interna-diferencias::after,
	#Do-Offset_A_Flexografia::after,
	#controle-inicio-fim::after,
	#entrega-rapida-com-frota::after 
	{
	background-size: 68px !important
	}
	
	.container-full
	{
		padding: 0px 15px;
	}
	
	.caixa-cor-azul span, .caixa-cor-rosa span {
    font-size: 13px !important;
   	}
	#controle-inicio-fim ul li {
    line-height: 6.4vw!important;
	}
	
	section.page-header-banner {
    margin-top: 56px;
	}
	#muito-alem p, #inovacao p  {
		width:100%!important;
	}
	#fotos_empresa  .container-full
	{
		padding: 0px 0px !important;
	}
	
	#portfolio-1,#portfolio-2
	{
		padding: 30px 15px;
	}
	.carousel-card {
		height: 100% !important;
		padding: 10px 10px;
	}
	
	#fotos_empresa::after {
		display: none;
	}
	
	.navbar-rota img
	{
		height: 40px !important;
		padding-top: 0px;
	}
	
	
}

@media (min-width: 991.99px) AND  (max-width: 1024px){
	.nav-links {
		
		gap: 1.1rem !important;
	}

	#Do-Offset_A_Flexografia::after,#portfolio-1::after,#portfolio-3::after
	{
		left: -22% !important;
	}
	.parallax-section {
		min-height: 25vh!important
	}
	
	#fotos_empresa::after {
		display: none;
	}
	
	.nav-links a
	{
		font-size: 0.75rem;
	}
}

.scrolled .navbar-rota img
{
	height: 40px;
	padding-top: 10px;
}
@media (min-width: 1024.1px)
{
	.scrolled .navbar-rota img
	{
		height: 44px !important;
		padding: 2px !important;
	}
	.navbar-rota img
	{
		height: 48px 
	}
}