/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Paleta oficial Refriloc */
  --orange:      #e8862e;
  --orange-dark: #cf6f1c;
  --orange-tint: #fbe9d7;
  --orange-soft: #fdf4ec;
  --chumbo:      #1a1a1a;
  --chumbo-2:    #262626;
  --white:       #ffffff;
  --gray-50:     #f7f7f7;
  --gray-100:    #f0f0f0;
  --gray-200:    #e6e6e6;
  --gray-300:    #d6d6d6;
  --gray-400:    #9a9a9a;
  --gray-500:    #7d7d7d;
  --gray-600:    #6b6b6b;
  --gray-700:    #3d3d3d;
  --ink:         #1a1a1a;

  --radius:   14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 6px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 18px 50px rgba(0,0,0,.16);
  --transition: .22s ease;
  --maxw: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.hero-title span { overflow-wrap: break-word; max-width: 100%; }

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--orange); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: .01em;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-dark { background: var(--chumbo); color: var(--white); border-color: var(--chumbo); }
.btn-dark:hover { background: #000; }
.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== SECTION COMMON ===== */
.section-badge {
  display: inline-block;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding-left: 26px;
}
.section-badge::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 2px;
  background: var(--orange);
  transform: translateY(-50%);
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header .section-badge { padding-left: 0; }
.section-header .section-badge::before { display: none; }
.about-text .section-badge { padding-left: 0; }
.about-text .section-badge::before { display: none; }
.section-header h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 800; color: var(--ink); margin-bottom: 14px; line-height: 1.15; }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  box-shadow: var(--shadow-sm);
}
.navbar-inner { display: flex; align-items: center; gap: 28px; height: 80px; }
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 4px; align-items: center; margin-left: 14px; }
.nav-links a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 600;
  font-size: .94rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.nav-social { display: flex; gap: 8px; }
.soc-box {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--chumbo);
  color: var(--white);
  border-radius: 7px;
  transition: all var(--transition);
}
.soc-box:hover { background: var(--orange); transform: translateY(-2px); }
.nav-cta { padding: 11px 22px; font-size: .88rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--chumbo); border-radius: 2px; transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
  background: radial-gradient(circle at 78% 30%, #2b2b2b 0%, #1a1a1a 48%, #121212 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.hero-swoosh {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
.hero-swoosh-tr { background-image: url("swoosh-tr.png"); background-position: top right; }
.hero-swoosh-bl { background-image: url("swoosh-bl.png"); background-position: bottom left; }
.hero-inner {
  display: flex;
  align-items: center;
  min-height: 620px;
  padding: 72px 24px;
  position: relative;
  z-index: 2;
}
.hero-text { position: relative; z-index: 2; max-width: 620px; }
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(2.4rem, 4.8vw, 3.7rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 26px;
  letter-spacing: -.015em;
}
.hero-title .hl {
  background: rgba(255,255,255,.10);
  padding: 4px 16px;
  border-radius: 3px;
}
.hero-title .accent { color: var(--orange); }
.hero-sub { color: rgba(255,255,255,.8); font-size: 1.12rem; max-width: 560px; margin-bottom: 38px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }
.hero-visual::after {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,134,46,.16) 0%, transparent 70%);
  z-index: 0;
}
.hero-img { position: relative; z-index: 1; max-height: 580px; width: auto; filter: drop-shadow(0 34px 54px rgba(0,0,0,.6)); }
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(18,18,18,.92) 0%, rgba(18,18,18,.72) 42%, rgba(18,18,18,.40) 72%, rgba(18,18,18,.30) 100%);
}
.btn-pill { border-radius: 99px; }

/* ===== PRODUCTS / CATÁLOGO (Swiper) ===== */
.catalog-section { padding: 96px 0; background: var(--white); position: relative; overflow: hidden; }
.catalog-swoosh {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.catalog-swoosh-tr { background-image: url("swoosh-tr.png"); background-position: top right; background-size: 40% auto; }
.catalog-swoosh-bl { background-image: url("swoosh-bl.png"); background-position: bottom left; background-size: 32% auto; }
.catalog-container { max-width: 1270px; position: relative; z-index: 1; }
.catalog-header {  text-align:center; margin-bottom:40px; }
.catalog-header .section-badge { padding-left: 0; }
.catalog-header .section-badge::before { display: none; }
.catalog-header h2 {  font-size:56px;font-weight:800; color:#1d2430; margin-bottom:12px; }
.catalog-header h2 .accent { color: var(--orange); }
.catalog-header p {  max-width:800px; margin:auto; color:#444; font-size:15px; }

.catalog-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--orange);
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  overflow: hidden;
}
.catalogSwiper { width: 100%; }
.catalogSwiper .swiper-slide { height: auto; border-right: 1px solid var(--gray-100); }
.product-card {
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 34px 22px;
  text-decoration: none;
  background: var(--white);
  transition: background .35s ease;
}
.product-card:hover { background:#efefef; transform:translateY(-4px); }
.product-image {
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.product-image img {   height:180px; display:flex; align-items:center; justify-content:center; margin-bottom:25px; }
.product-image img { max-width:230px; max-height:150px; object-fit:contain; }
    .product-category {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 18px;
}
.product-title {  font-size:20px; font-weight:500; color:#111; }

.catalog-pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 36px; }
.catalog-pagination .swiper-pagination-bullet { width: 12px; height: 5px; border-radius: 0; background: #bdbdbd; opacity: 1; transition: width .3s, background .3s; }
.catalog-pagination .swiper-pagination-bullet-active { width: 42px; background: var(--orange); }

.catalog-button{ text-align:center; margin-top:40px;
}

.catalog-button a{ display:inline-flex; align-items:center; justify-content:center; min-width:260px; height:58px; background:var(--orange); color:#fff; padding:18px 40px; font-weight:700; border-radius:0; text-decoration:none; transition:.3s;
}
.catalog-button a:hover{ background:var(--orange-dark); }

/* ===== PÁGINA EQUIPAMENTOS ===== */
.equip-page { padding: 64px 0 88px; background: var(--gray-50); }
.equip-header { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.equip-header .section-badge { padding-left: 0; }
.equip-header .section-badge::before { display: none; }
.equip-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--ink); margin-bottom: 14px; line-height: 1.1; }
.equip-header h1 .accent { color: var(--orange); }
.equip-header p { color: var(--gray-600); font-size: 1.05rem; }
/* Banner do catálogo */
.catalog-banner {
  background: radial-gradient(circle at 78% 30%, #2b2b2b 0%, #1a1a1a 48%, #121212 100%);
  color: var(--white);
  padding: 72px 0;
}
.catalog-banner h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 800; letter-spacing: -.01em; }

/* Layout do catálogo (sidebar + produtos) */
.catalog-page { padding: 32px 0 88px; background: var(--gray-50); }
.catalog-page .breadcrumb { margin: 16px 0 24px; }
.catalog-intro { max-width: 1000px; color: var(--gray-700); font-size: 1.02rem; line-height: 1.7; margin: 0 0 40px; }
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }

/* Sidebar de filtros */
.catalog-sidebar { background: var(--white); border: 1px solid var(--gray-200); }
.sidebar-head { padding: 16px 20px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); font-weight: 700; color: var(--gray-600); }
.sidebar-body { padding: 22px 20px; }
.sidebar-title { font-size: 1.3rem; font-weight: 800; color: var(--ink); padding-bottom: 14px; border-bottom: 2px solid var(--gray-200); margin-bottom: 6px; }
.filter-list { list-style: none; margin: 16px 0 0; display: flex; flex-direction: column; gap: 14px; }
.filter-check { display: flex; align-items: center; gap: 10px; cursor: pointer; color: var(--gray-700); font-weight: 600; }
.filter-check input { width: 17px; height: 17px; accent-color: var(--orange); cursor: pointer; flex-shrink: 0; }
.filter-check .count { color: var(--gray-400); font-weight: 500; margin-left: auto; }
.filter-check:hover { color: var(--orange); }
.filter-clear { margin-top: 22px; background: none; border: none; padding: 0; color: var(--orange); font-family: inherit; font-weight: 700; font-size: .9rem; cursor: pointer; }
.filter-clear:hover { text-decoration: underline; }

.no-results { text-align: center; color: var(--gray-600); padding: 48px 0; font-weight: 600; }

.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--orange);
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
}
.equip-grid .product-card { border-right: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); height: 340px; }
@media (max-width: 1100px) { .equip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .catalog-layout { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .equip-grid { grid-template-columns: 1fr; } }

/* ===== PÁGINA DE DETALHE DO EQUIPAMENTO ===== */
.product-page { padding: 24px 0 88px; background: var(--gray-50); }
.breadcrumb { font-size: .9rem; color: var(--gray-600); margin: 20px 0 32px; }
.breadcrumb a { color: var(--gray-600); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--orange);
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  padding: 40px;
}
.product-detail-img {
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-50); border: 1px solid var(--gray-100);
  min-height: 360px; padding: 24px;
}
.product-detail-img img { max-width: 100%; max-height: 380px; object-fit: contain; }
.product-detail-info .product-category { margin-bottom: 10px; }
.product-detail-info h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--ink); margin-bottom: 18px; line-height: 1.15; }
.product-desc { color: var(--gray-700); font-size: 1.02rem; line-height: 1.7; }
.specs-title { font-size: 1.05rem; font-weight: 800; color: var(--ink); margin: 28px 0 8px; }
.product-specs { list-style: none; margin: 0 0 24px; }
.product-specs li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.product-specs li strong { color: var(--ink); font-weight: 700; }
.product-includes { list-style: none; margin: 0 0 28px; display: flex; flex-direction: column; gap: 8px; }
.product-includes li { color: var(--gray-700); font-weight: 600; }
@media (max-width: 860px) {
  .product-detail { grid-template-columns: 1fr; gap: 28px; padding: 24px; }
}

/* ===== BLOG ===== */
.blog-list-section { padding: 24px 0 96px; background: var(--white); }
.breadcrumb-blog { margin: 22px 0 8px; font-weight: 600; }
.breadcrumb-blog .sep { color: var(--orange); margin: 0 8px; font-weight: 700; }
.breadcrumb-blog span:last-child { color: var(--ink); }

.blog-list { display: flex; flex-direction: column; }
.blog-post-row {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 44px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid var(--gray-200);
}
.blog-post-row:first-child { border-top: 1px solid var(--gray-200); }
.blog-post-img {
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 16px;
}
.blog-post-img img { width: 100%; height: 300px; object-fit: contain; transition: transform var(--transition); }
.blog-post-img:hover img { transform: scale(1.04); }
.blog-post-content h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 800; color: var(--ink); line-height: 1.2; margin-bottom: 14px; }
.blog-post-content h2 a { text-decoration: none; transition: color var(--transition); }
.blog-post-content h2 a:hover { color: var(--orange); }
.blog-post-cat { color: var(--orange); font-weight: 800; font-size: 1.02rem; margin-bottom: 4px; }
.blog-post-date { color: var(--gray-500); font-size: .9rem; font-weight: 600; margin-bottom: 16px; }
.blog-post-excerpt { color: var(--gray-600); margin-bottom: 24px; max-width: 620px; }
@media (max-width: 820px) {
  .blog-post-row { grid-template-columns: 1fr; gap: 22px; padding: 32px 0; }
  .blog-post-img img { height: 220px; }
}

/* ===== BENEFITS / DIFERENCIAIS ===== */
.benefits { padding: 96px 0; background: var(--gray-50); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: all var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gray-300); }
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--orange-tint);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-card h3 { font-size: 1.12rem; font-weight: 800; color: var(--ink); margin-bottom: 9px; }
.benefit-card p { font-size: .92rem; color: var(--gray-600); line-height: 1.6; }

/* ===== ORÇAMENTO CTA ===== */
.quote-cta {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(rgba(20,20,20,.78), rgba(20,20,20,.86)),
    radial-gradient(circle at 50% 50%, #2b2b2b 0%, #111 100%);
  background-size: cover;
  background-position: center;
}
.quote-card {
  background: var(--white);
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--orange);
}
.quote-card h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.quote-sub { color: var(--orange); font-weight: 700; font-size: 1.05rem; letter-spacing: .04em; margin-bottom: 18px; }
.quote-card > p { color: var(--gray-600); max-width: 480px; margin: 0 auto 28px; }

/* ===== ABOUT ===== */
.about { padding: 96px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); font-weight: 800; color: var(--ink); margin-bottom: 20px; line-height: 1.2; }
.about-text p { color: var(--gray-600); margin-bottom: 16px; font-size: 1.02rem; }
.about-text p strong { color: var(--orange); }
.about-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 13px; }
.about-list li { display: flex; align-items: center; gap: 12px; color: var(--gray-700); font-weight: 600; }
.about-list li svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }
.about-side { display: flex; flex-direction: column; gap: 22px; }
.seal {
  align-self: flex-start;
  display: flex; align-items: center; gap: 16px;
  background: var(--chumbo);
  color: var(--white);
  padding: 22px 30px;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
}
.seal-num { font-size: 2.8rem; font-weight: 900; color: var(--orange); line-height: 1; }
.seal-label { font-size: .9rem; font-weight: 600; line-height: 1.25; text-transform: uppercase; letter-spacing: .05em; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.astat { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 18px 20px; }
.astat strong { display: block; font-size: 1.35rem; font-weight: 800; color: var(--ink); }
.astat span { font-size: .82rem; color: var(--gray-600); }

/* ===== FAQ ===== */
.faq { padding: 96px 0; background: var(--gray-50); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item.open { border-color: var(--orange); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: none; border: none; text-align: left;
  font-size: 1rem; font-weight: 700; color: var(--ink); cursor: pointer; font-family: inherit;
}
.faq-arrow { flex-shrink: 0; color: var(--orange); transition: transform var(--transition); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 240px; }
.faq-answer p { padding: 0 24px 20px; color: var(--gray-600); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact { padding: 96px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-left h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 800; color: var(--ink); margin-bottom: 18px; line-height: 1.12; }
.contact-left > p { color: var(--gray-600); margin-bottom: 28px; max-width: 440px; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact-details li { display: flex; gap: 14px; align-items: flex-start; color: var(--gray-600); font-size: .95rem; }
.contact-details a { color: var(--gray-700); text-decoration: none; font-weight: 600; }
.contact-details a:hover { color: var(--orange); }
.ci {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--orange-tint);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.ci svg { width: 20px; height: 20px; }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
.contact-map iframe { display: block; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 38px;
}
#contactForm { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
#contactForm label { display: flex; flex-direction: column; gap: 7px; font-size: .82rem; font-weight: 700; color: var(--ink); }
#contactForm input, #contactForm select, #contactForm textarea {
  font-family: inherit;
  font-size: .95rem;
  font-weight: 400;
  color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  transition: border-color var(--transition), background var(--transition);
}
#contactForm input::placeholder, #contactForm textarea::placeholder { color: var(--gray-400); font-weight: 400; }
#contactForm input:focus, #contactForm select:focus, #contactForm textarea:focus {
  outline: none; border-color: var(--orange); background: var(--white);
}
#contactForm textarea { resize: vertical; min-height: 96px; }
#contactForm .btn { margin-top: 6px; }
.form-note { font-size: .8rem; color: var(--gray-400); text-align: center; }

/* ===== CTA BAR ===== */
.cta-bar { background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%); border-bottom: 3px solid var(--orange); }
.cta-bar-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; padding: 26px 24px; }
.cta-bar-inner p { color: var(--white); font-weight: 700; font-size: 1.05rem; }

/* ===== FOOTER ===== */
.footer { background: var(--white); padding: 72px 0 0; border-top: 1px solid var(--gray-200); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { height: 50px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--gray-600); font-size: .92rem; max-width: 300px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col strong { color: var(--orange); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.footer-col a, .footer-col p { color: var(--gray-600); font-size: .92rem; text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--gray-200); padding: 22px 0; }
.footer-bottom .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px 20px; }
.footer-bottom p { color: var(--gray-400); font-size: .84rem; text-align: center; margin: 0; }
.footer-credit { display: flex; align-items: center; justify-content: center; gap: 10px; white-space: nowrap; }
.footer-credit img { height: 40px; width: auto; opacity: .95; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 200; transition: all var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-wa { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 36px rgba(37,211,102,.65); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { min-height: auto; }
}
@media (max-width: 900px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .navbar-inner { gap: 14px; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 80px; left: 0; right: 0;
    background: var(--white); padding: 14px 24px 22px; box-shadow: var(--shadow-lg); gap: 2px;
    border-bottom: 3px solid var(--orange);
  }
  .nav-links.open a { padding: 13px 12px; border-radius: 8px; }
  .nav-links.open a:hover { background: var(--orange-soft); }

  .hero-inner { text-align: center; padding: 54px 22px 58px; justify-content: center; }
  .hero-text { max-width: 100%; }
  .hero-title { align-items: center; font-size: clamp(1.6rem, 6.2vw, 2.3rem); gap: 6px; margin-bottom: 20px; }
  .hero-title .hl { padding: 2px 10px; }
  .hero-sub { margin-left: auto; margin-right: auto; font-size: 1rem; line-height: 1.5; max-width: 460px; margin-bottom: 30px; }
  .hero-btns { justify-content: center; }
  .hero-bg-overlay { background: rgba(18,18,18,.7); }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-card { height: 340px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 26px; }
  .hero-title { font-size: clamp(1.45rem, 6.6vw, 1.95rem); }
  .hero-sub { font-size: .95rem; max-width: 360px; }
  .hero-btns .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-bar-inner { flex-direction: column; gap: 16px; text-align: center; }
}
