/* ===== ROSAL - GLOBAL STYLESHEET (LARANJA) ===== */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;600&display=swap');

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

:root {
  --dark: #1a1a1a;
  --dark2: #222222;
  --accent: #4a7c3a;
  --accent2: #6a9b54;
  --accent-soft: rgba(74,124,58,0.10);
  --light: #f5f5f3;
  --text: #333333;
  --text-light: #666666;
  --border: #e0e0e0;
  --white: #ffffff;
  --font-main: 'Raleway', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== HEADER ===== */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--dark); transition: all 0.3s ease;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto; padding: 0 30px; height: 80px;
  gap: 20px;
}
.site-logo img { height: 45px; width: auto; }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block; padding: 28px 18px;
  color: var(--white); font-family: var(--font-main);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; transition: color 0.2s; white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li.active > a { color: var(--accent2); }

/* MEGA Dropdown — full-width, large */
.mega-dropdown {
  display: none;
  position: fixed; left: 0; right: 0; top: 80px;
  background: var(--dark2);
  border-top: 3px solid var(--accent);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 999;
  padding: 36px 0;
}
.main-nav > li:hover .mega-dropdown { display: block; }
.mega-dropdown-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 50px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.mega-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  text-decoration: none;
  transition: transform 0.25s;
  cursor: pointer;
  padding: 10px 20px 16px;
}
.mega-item:hover { transform: translateY(-5px); background: transparent; border-color: transparent; }
.mega-item .mega-img-wrap {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
  transition: border-color 0.3s;
  order: 2;
  margin: 12px 0;
}
.mega-item:hover .mega-img-wrap { border-color: var(--accent); }
.mega-item .mega-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
  border-radius: 50%;
}
.mega-item:hover .mega-img-wrap img { transform: scale(1.08); }
.mega-item span.mega-title {
  order: 1;
  display: block;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  line-height: 1.3;
}
.mega-item span.mega-sub { display: none; }
.mega-item .mega-arrow {
  order: 3;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent2);
  font-family: var(--font-main);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: gap 0.2s;
}
.mega-item:hover .mega-arrow { gap: 10px; }

/* Header Icons */
.header-icons { display: flex; align-items: center; gap: 10px; }
.header-icons button {
  color: var(--white); font-size: 17px; padding: 8px;
  transition: color 0.2s; display: flex; align-items: center;
}
.header-icons button:hover { color: var(--accent2); }

/* Hide hamburger entirely – we'll use scroll bar on mobile */
.mobile-toggle { display: none !important; }

/* Mobile nav bar */
.mobile-nav-bar { display: none; }
@media (max-width: 960px) {
  .main-nav { display: none; }
  .mobile-nav-bar {
    display: flex; background: rgba(0,0,0,0.95);
    overflow-x: auto; padding: 0 15px;
    scrollbar-width: none;
    position: fixed; top: 80px; left: 0; right: 0; z-index: 998;
  }
  .mobile-nav-bar::-webkit-scrollbar { display: none; }
  .mobile-nav-bar a {
    color: var(--white); font-family: var(--font-main); font-size: 11px;
    font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 14px 14px; white-space: nowrap; display: block;
    border-bottom: 2px solid transparent; transition: all 0.2s;
  }
  .mobile-nav-bar a:hover,
  .mobile-nav-bar a.active { color: var(--accent2); border-bottom-color: var(--accent); }
  body { padding-top: 130px; }
  .hero-slider { margin-top: 0; }
  .page-hero { margin-top: 0; }
}

/* Search Overlay */
.search-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 2000; align-items: center; justify-content: center; flex-direction: column; gap: 20px;
}
.search-overlay.active { display: flex; }
.search-overlay h2 { color: var(--white); font-family: var(--font-main); font-size: 22px; font-weight: 300; letter-spacing: 2px; }
.search-overlay form { display: flex; width: 600px; max-width: 90vw; }
.search-overlay input { flex: 1; padding: 15px 20px; font-size: 17px; border: none; background: var(--white); }
.search-overlay button[type="submit"] { padding: 15px 25px; background: var(--accent); color: var(--white); font-size: 18px; }
.search-overlay .close-search { position: absolute; top: 20px; right: 30px; color: var(--white); font-size: 28px; }
.search-tags { display: flex; gap: 10px; align-items: center; }
.search-tags a { color: rgba(255,255,255,0.6); font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; }
.search-tags a:hover { color: var(--white); }

/* Cookie Banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark2); color: var(--white); z-index: 9000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 40px; font-size: 13px; gap: 20px;
}
.cookie-banner a { color: var(--accent2); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 8px 20px; font-size: 13px; font-family: var(--font-main); font-weight: 600; letter-spacing: 0.5px; }
.cookie-btn-ok { background: var(--accent); color: var(--white); }
.cookie-btn-ok:hover { background: var(--accent2); }
.cookie-btn-policy { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; height: 100vh; min-height: 600px; overflow: hidden; margin-top: 80px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.hero-content { position: absolute; bottom: 100px; left: 10%; z-index: 2; color: var(--white); }
.hero-content .tagline { font-family: var(--font-main); font-size: clamp(36px, 5vw, 70px); font-weight: 700; text-transform: uppercase; letter-spacing: 3px; line-height: 1.1; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-content .sub { font-size: 14px; margin-bottom: 8px; opacity: 0.85; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; }
.btn-video { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; color: var(--white); font-family: var(--font-main); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.6); padding: 12px 25px; transition: all 0.3s; }
.btn-video:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-video .play-icon { width: 36px; height: 36px; border: 1px solid var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: background 0.3s; }
.hero-dot.active { background: var(--white); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-inner { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.section-title { font-family: var(--font-main); font-size: clamp(22px, 3vw, 36px); font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 2px; }
.section-subtitle { font-family: var(--font-main); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 12px; display: block; }

/* ===== INTRO ===== */
.intro-section { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-text .comfort-label { font-family: var(--font-main); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; display: block; }
.intro-text h2 { font-family: var(--font-main); font-size: clamp(26px,3vw,40px); font-weight: 700; line-height: 1.2; margin-bottom: 25px; }
.intro-text p { font-size: 15px; line-height: 1.9; color: var(--text-light); margin-bottom: 15px; }
.intro-text p strong { color: var(--text); }
.btn-more { display: inline-block; margin-top: 20px; padding: 12px 35px; background: var(--accent); color: var(--white); font-family: var(--font-main); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; transition: background 0.3s; }
.btn-more:hover { background: var(--accent2); }
.intro-image img { width: 100%; height: 600px; object-fit: cover; }

/* ===== SOLUTIONS ===== */
.solutions-section { background: var(--dark); }
.solutions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.solutions-text .section-subtitle { color: var(--accent2); }
.solutions-text h2 { font-family: var(--font-main); font-size: clamp(24px,3vw,38px); font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 2px; line-height: 1.2; margin-bottom: 25px; }
.solutions-text p { font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.7); margin-bottom: 15px; }
.solutions-text a { color: var(--accent2); text-decoration: underline; }
.fire-gif img { width: 100%; height: auto; }

/* ===== PRODUCTS SECTION (home) ===== */
.products-section { background: var(--light); }
.products-header { text-align: center; margin-bottom: 50px; }
.products-header p { max-width: 750px; margin: 20px auto 0; font-size: 15px; line-height: 1.8; color: var(--text-light); }
.products-tabs { display: flex; justify-content: center; gap: 5px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn { padding: 10px 22px; font-family: var(--font-main); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: 1px solid var(--border); background: var(--white); color: var(--text-light); transition: all 0.2s; }
.tab-btn:hover, .tab-btn.active { background: var(--accent); color: var(--white); border-color: var(--accent); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { background: var(--white); position: relative; overflow: hidden; transition: box-shadow 0.3s; cursor: pointer; }
.product-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.product-card-img { position: relative; overflow: hidden; aspect-ratio: 1; background: #e8e8e6; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: var(--white); font-family: var(--font-main); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; z-index: 2; }
.product-quick { position: absolute; bottom: 0; left: 0; right: 0; background: var(--accent); color: var(--white); text-align: center; padding: 11px; font-family: var(--font-main); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; transform: translateY(100%); transition: transform 0.3s ease; z-index: 2; }
.product-card:hover .product-quick { transform: translateY(0); }
.product-card-info { padding: 14px 15px 16px; background: var(--white); }
.product-brand { font-size: 11px; color: var(--accent); font-weight: 700; letter-spacing: 0.5px; margin-bottom: 4px; }
.product-name { font-family: var(--font-main); font-size: 13px; font-weight: 600; line-height: 1.35; color: var(--dark); }
.products-cta { text-align: center; margin-top: 50px; }
.btn-outline { display: inline-block; padding: 14px 45px; border: 2px solid var(--dark); color: var(--dark); font-family: var(--font-main); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s; }
.btn-outline:hover { background: var(--dark); color: var(--white); }

/* ===== BRANDS CAROUSEL (auto-scrolling) ===== */
.brands-section { background: var(--white); padding: 70px 0; overflow: hidden; }
.brands-header { text-align: center; margin-bottom: 45px; padding: 0 40px; }
.brands-header h2 { font-family: var(--font-main); font-size: clamp(20px,2.5vw,28px); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.brands-header p { max-width: 600px; margin: 12px auto 0; font-size: 14px; color: var(--text-light); line-height: 1.7; }
.brands-carousel { position: relative; overflow: hidden; width: 100%; }
.brands-carousel::before,
.brands-carousel::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.brands-carousel::before { left: 0; background: linear-gradient(to right, var(--white) 20%, transparent); }
.brands-carousel::after { right: 0; background: linear-gradient(to left, var(--white) 20%, transparent); }
.brands-track {
  display: flex; align-items: center;
  min-width: max-content;
  animation: brandScroll 45s linear infinite;
  will-change: transform;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes brandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-logo-item {
  display: flex; align-items: center; justify-content: center;
  padding: 10px 30px; flex-shrink: 0;
  filter: grayscale(100%); opacity: 0.5; transition: filter 0.3s, opacity 0.3s;
  text-decoration: none;
}
.brand-logo-item:hover { filter: grayscale(0); opacity: 1; }
.brand-logo-item img { height: 48px; width: auto; object-fit: contain; max-width: 130px; display: block; }

/* ===== SERVICE CARDS (smaller, side-by-side) ===== */
.service-cards-section { background: var(--light); padding: 80px 0; }
.service-cards-inner { max-width: 1000px; margin: 0 auto; padding: 0 40px; }
.service-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card {
  display: block;
  position: relative; overflow: hidden;
  cursor: pointer; background: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.35s, box-shadow 0.35s;
  height: 320px;
  text-decoration: none;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s, filter 0.4s;
  filter: brightness(0.55);
}
.service-card:hover img { transform: scale(1.07); filter: brightness(0.35); }
.service-card-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 26px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.service-card-body h2 { font-family: var(--font-main); color: var(--white); font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; line-height: 1.2; }
.service-card-body p { color: rgba(255,255,255,0.75); font-size: 13px; line-height: 1.6; margin-bottom: 18px; max-width: 340px; }
.btn-card { display: inline-block; padding: 9px 22px; background: var(--accent); color: var(--white); font-family: var(--font-main); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; transition: background 0.3s; align-self: flex-start; flex-shrink: 0; }
.service-card:hover .btn-card { background: var(--accent2); }

/* ===== CONTACT CTA ===== */
.contact-section { background: var(--dark); padding: 100px 0; text-align: center; }
.contact-section h2 { font-family: var(--font-main); font-size: clamp(28px,4vw,52px); font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px; }
.contact-section p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 40px; }
.btn-contact { display: inline-block; padding: 16px 50px; background: var(--accent); color: var(--white); font-family: var(--font-main); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; transition: background 0.3s; }
.btn-contact:hover { background: var(--accent2); }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark2); color: rgba(255,255,255,0.75); }
.footer-top { max-width: 1300px; margin: 0 auto; padding: 60px 40px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 2fr; gap: 40px; }
.footer-logo img { height: 40px; margin-bottom: 20px; }
.footer-brand-text { font-size: 14px; line-height: 1.8; margin-bottom: 25px; }
.footer-brand-text strong { color: var(--white); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); font-size: 14px; transition: all 0.2s; border-radius: 50%; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-col h4 { font-family: var(--font-main); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--white); margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent2); }
.footer-contacts .contact-item { margin-bottom: 15px; }
.footer-contacts .contact-item h3 { font-size: 15px; font-weight: 600; color: var(--white); font-family: var(--font-main); }
.footer-contacts .contact-item p { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.footer-contacts .schedule { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.65); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); max-width: 1300px; margin: 0 auto; padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent2); }

/* ===== VIDEO MODAL ===== */
.video-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 3000; align-items: center; justify-content: center; }
.video-modal.active { display: flex; }
.video-modal-inner { position: relative; width: 90vw; max-width: 900px; }
.video-modal-inner iframe { width: 100%; aspect-ratio: 16/9; border: none; }
.video-close { position: absolute; top: -40px; right: 0; color: var(--white); font-size: 28px; }

/* ===== INNER PAGE HERO ===== */
.page-hero { height: 260px; background: var(--dark); margin-top: 80px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 60%); }
.page-hero-content { text-align: center; position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-main); font-size: clamp(28px,4vw,48px); font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 4px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 12px; }
.breadcrumb a, .breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--accent2); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ===== PRODUCTS PAGE ===== */
.products-page { padding: 60px 0; }
.products-page-inner { max-width: 1300px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.sidebar { background: var(--light); padding: 30px; }
.sidebar-section { margin-bottom: 30px; border-bottom: 1px solid var(--border); padding-bottom: 25px; }
.sidebar-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-section h3 { font-family: var(--font-main); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); margin-bottom: 15px; }
.sidebar-section ul li { margin-bottom: 8px; }
.sidebar-section ul li a { font-size: 14px; color: var(--text-light); transition: color 0.2s; display: flex; justify-content: space-between; }
.sidebar-section ul li a:hover { color: var(--accent); }
.sidebar-section ul li a span { color: var(--border); font-size: 12px; }
.sidebar-section ul li.active a { color: var(--accent); font-weight: 600; }
.products-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
.products-toolbar span { font-size: 14px; color: var(--text-light); }
.products-sort { padding: 8px 15px; border: 1px solid var(--border); font-family: var(--font-body); font-size: 14px; color: var(--text); background: var(--white); }
.products-grid-page { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pagination { display: flex; align-items: center; gap: 5px; margin-top: 40px; justify-content: center; }
.page-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); font-family: var(--font-main); font-size: 13px; font-weight: 600; color: var(--text-light); transition: all 0.2s; background: var(--white); }
.page-btn:hover, .page-btn.active { background: var(--accent); color: var(--white); border-color: var(--accent); }
.page-btn.next-btn { width: auto; padding: 0 15px; font-size: 12px; letter-spacing: 1px; }
.btn-add-cart {
  display: block; width: 100%; padding: 10px; text-align: center;
  background: var(--dark); color: var(--white);
  font-family: var(--font-main); font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; transition: background 0.2s; margin-top: 10px;
}
.btn-add-cart:hover { background: var(--accent); }
.btn-add-cart.added { background: var(--accent); }

/* ===== ABOUT PAGE ===== */
.about-section { padding: 80px 0; }
.about-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 60px; }
.about-text h2 { font-family: var(--font-main); font-size: clamp(24px,3vw,36px); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; }
.about-text p { font-size: 15px; line-height: 1.9; color: var(--text-light); margin-bottom: 20px; }
.about-text p strong { color: var(--text); }
.about-img img { width: 100%; height: 500px; object-fit: cover; }

/* ===== CATALOGOS ===== */
.catalogos-section { padding: 80px 0; }
.catalogos-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.catalogos-intro { text-align: center; margin-bottom: 50px; }
.catalogos-intro p { max-width: 720px; margin: 15px auto 0; font-size: 15px; color: var(--text-light); line-height: 1.8; }
.catalogos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.catalogo-card { background: var(--light); overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.catalogo-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-4px); }
.catalogo-card-img { aspect-ratio: 3/4; overflow: hidden; }
.catalogo-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.catalogo-card:hover .catalogo-card-img img { transform: scale(1.04); }
.catalogo-card-info { padding: 25px; }
.catalogo-card-info h3 { font-family: var(--font-main); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.catalogo-card-info p { font-size: 14px; color: var(--text-light); }
.catalogo-card-info .btn-folhear { display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; color: var(--white); background: var(--accent); font-family: var(--font-main); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 9px 18px; transition: background 0.2s; }
.catalogo-card-info .btn-folhear:hover { background: var(--accent2); }

/* Catalog flipbook (simulate) */
.flipbook-wrap { padding: 60px 0; background: var(--dark); min-height: calc(100vh - 80px); display: flex; align-items: center; justify-content: center; flex-direction: column; }
.flipbook-toolbar { display: flex; align-items: center; gap: 20px; color: var(--white); margin-bottom: 30px; font-family: var(--font-main); font-size: 13px; letter-spacing: 1px; }
.flipbook-toolbar button { color: var(--white); padding: 10px 14px; border: 1px solid rgba(255,255,255,0.3); transition: background 0.2s; }
.flipbook-toolbar button:hover { background: var(--accent); border-color: var(--accent); }
.flipbook { display: flex; gap: 0; max-width: 1100px; width: 90%; box-shadow: 0 30px 80px rgba(0,0,0,0.5); aspect-ratio: 2/1.4; background: var(--white); }
.flipbook-page { flex: 1; background: #fafafa; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.flipbook-page img { width: 100%; height: 100%; object-fit: cover; }
.flipbook-page::after { content:''; position:absolute; top:0; bottom:0; width:30px; pointer-events:none; }
.flipbook-page.left::after { right:0; background: linear-gradient(to left, rgba(0,0,0,0.12), transparent); }
.flipbook-page.right::after { left:0; background: linear-gradient(to right, rgba(0,0,0,0.12), transparent); }

/* ===== ORCAMENTOS / CART ===== */
.cart-section { padding: 80px 0; }
.cart-inner { max-width: 980px; margin: 0 auto; padding: 0 40px; }
.cart-intro { text-align: center; margin-bottom: 40px; }
.cart-intro h2 { font-family: var(--font-main); font-size: clamp(24px,3vw,36px); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-top: 8px; }
.cart-intro p { max-width: 640px; margin: 15px auto 0; font-size: 15px; color: var(--text-light); line-height: 1.8; }

.cart-empty { text-align: center; padding: 60px 20px 40px; background: var(--light); }
.cart-empty-icon { font-size: 64px; color: var(--border); margin-bottom: 25px; }
.cart-empty h2 { font-family: var(--font-main); font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.cart-empty p { font-size: 15px; color: var(--text-light); margin-bottom: 30px; max-width: 520px; margin-left:auto; margin-right:auto; line-height: 1.7; }
.cart-empty .btn-more { padding: 14px 40px; }

.cart-list-wrap { background: var(--light); padding: 10px 30px; }
.cart-items { margin: 0; }
.cart-item { display: grid; grid-template-columns: 100px 1fr auto auto auto; align-items: center; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 100px; height: 100px; background: var(--white); flex-shrink: 0; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { min-width: 0; }
.cart-item-brand { font-size: 11px; color: var(--accent); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.cart-item-name { font-family: var(--font-main); font-size: 16px; font-weight: 700; margin-top: 4px; line-height: 1.3; }
.cart-item-cat { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.cart-item-qty { display: flex; align-items: center; }
.qty-btn { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); background: var(--white); font-size: 18px; transition: all 0.2s; font-weight: 300; }
.qty-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.qty-num { width: 44px; height: 34px; display: flex; align-items: center; justify-content: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); font-family: var(--font-main); font-size: 15px; font-weight: 700; background: var(--white); }
.cart-item-subtotal { font-family: var(--font-main); font-size: 14px; font-weight: 700; color: var(--accent); white-space: nowrap; }
.cart-item-remove { color: var(--text-light); font-size: 18px; padding: 8px; transition: color 0.2s; }
.cart-item-remove:hover { color: #c00; }

.cart-summary { background: var(--dark); color: var(--white); padding: 25px 30px; margin-top: 30px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
.cart-summary-info { font-family: var(--font-main); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.cart-summary-info strong { color: var(--accent2); font-size: 22px; margin-left: 10px; }
.cart-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-secondary { padding: 12px 25px; background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); font-family: var(--font-main); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; transition: all 0.3s; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.btn-primary { padding: 12px 30px; background: var(--accent); color: var(--white); font-family: var(--font-main); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; transition: background 0.3s; border: 1px solid var(--accent); }
.btn-primary:hover { background: var(--accent2); border-color: var(--accent2); }

.btn-request { display: block; width: 100%; padding: 16px; text-align: center; background: var(--accent); color: var(--white); font-family: var(--font-main); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; transition: background 0.3s; margin-top: 30px; }
.btn-request:hover { background: var(--accent2); }

.quote-form-wrap { margin-top: 60px; padding-top: 50px; border-top: 2px solid var(--accent); display: none; }
.quote-form-wrap.visible { display: block; }
.quote-form-wrap h3 { font-family: var(--font-main); font-size: clamp(20px,2.5vw,26px); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.quote-form-wrap p.intro { font-size: 14px; color: var(--text-light); margin-bottom: 30px; line-height: 1.7; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-main); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid var(--border); font-family: var(--font-body); font-size: 14px; color: var(--text); background: var(--white); transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit { text-align: center; margin-top: 25px; }
.btn-submit { padding: 15px 60px; background: var(--accent); color: var(--white); font-family: var(--font-main); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; transition: background 0.3s; }
.btn-submit:hover { background: var(--accent2); }
.form-success { display: none; text-align: center; padding: 40px; background: #edf7ee; color: #2a7a35; }
.form-success.visible { display: block; }
.form-success h3 { font-family: var(--font-main); font-size: 20px; margin-bottom: 10px; }

/* ===== CONTACTS ===== */
.contacts-section { padding: 80px 0 0; }
.contacts-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2, .contact-form-section h2 { font-family: var(--font-main); font-size: clamp(22px,3vw,34px); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; }
.contact-detail { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-detail-text h4 { font-family: var(--font-main); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.contact-detail-text p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.contact-map-fullwidth { width: 100%; margin-top: 60px; }
.contact-map-fullwidth iframe { width: 100%; height: 460px; border: none; display: block; }

/* ===== SCROLL TOP ===== */
.scroll-top { position: fixed; bottom: 80px; right: 30px; width: 44px; height: 44px; background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: center; z-index: 500; font-size: 18px; opacity: 0; transition: opacity 0.3s, background 0.3s; }
.scroll-top.visible { opacity: 1; }
.scroll-top:hover { background: var(--accent2); }

/* ===== STATS / VALUES (still used in About without stats-grid) ===== */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.value-box { text-align: center; padding: 40px 30px; background: var(--light); transition: transform 0.3s, box-shadow 0.3s; }
.value-box:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.value-box .icon { font-size: 40px; color: var(--accent); margin-bottom: 20px; }
.value-box h3 { font-family: var(--font-main); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.value-box p { font-size: 14px; color: var(--text-light); line-height: 1.8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 900px) {
  .intro-grid, .solutions-grid, .about-grid, .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid-page { grid-template-columns: repeat(2,1fr); }
  .products-page-inner { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .catalogos-grid { grid-template-columns: repeat(2,1fr); }
  .service-cards-row { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .mega-dropdown-inner { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 80px 1fr auto; }
  .cart-item-qty, .cart-item-subtotal { grid-column: 2 / 4; padding-left: 0; }
  .cart-item-remove { grid-column: 3; grid-row: 1; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 50px 0; }
  .section-inner { padding: 0 20px; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .catalogos-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .header-inner { padding: 0 20px; }
  .cookie-banner { flex-direction: column; padding: 15px 20px; text-align: center; }
  .cart-inner, .catalogos-inner, .contacts-inner, .about-inner, .section-inner { padding: 0 20px; }
}
