/* ============================================================
   Casa das Correias - Main Stylesheet
   Colors: Primary #2D9132 | Accent #81D742 | Dark #1a5c1d
   ============================================================ */

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

:root {
  --green: #2D9132;
  --green-dark: #1a5c1d;
  --green-light: #3cb044;
  --green-accent: #81D742;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #e0e0e0;
  --gray-text: #555555;
  --dark: #222222;
  --font-main: 'Lato', Arial, sans-serif;
  --font-accent: 'Baloo 2', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--green-dark);
  color: var(--white);
  font-size: 13px;
  padding: 7px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg { flex-shrink: 0; }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-right a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity .2s;
}

.top-bar-right a:hover { opacity: .8; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo img {
  height: 100px;
  width: auto;
}

.site-logo-text {
  font-family: var(--font-accent);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}

.site-logo-text span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-text);
  font-family: var(--font-main);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  border-radius: 3px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--green);
  color: var(--white);
}

.nav-cta a {
  background: var(--green-dark);
  color: var(--white) !important;
  border-radius: 3px;
}

.nav-cta a:hover { background: var(--green) !important; }
.nav-cta a.active { background: var(--green-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: all .3s;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}

.slider-track {
  display: flex;
  transition: transform .6s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 1240 / 577;
  min-height: 380px;
  max-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.slide-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 60px;
  max-width: 700px;
}

.slide-content h2 {
  font-family: var(--font-accent);
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 28px;
  opacity: .9;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all .2s;
  cursor: pointer;
  border: none;
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover { background: var(--green-dark); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover { background: #1da851; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover { background: var(--white); color: var(--dark); }

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 10;
}

.slider-arrow {
  pointer-events: all;
  background: rgba(255,255,255,.2);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover { background: rgba(255,255,255,.4); }

.slider-dots {
  position: absolute;
  bottom: 18px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  border: none;
  transition: background .2s, transform .2s;
}

.slider-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 70px 0; }
.section-gray { background: var(--gray-light); }
.section-green { background: var(--green); color: var(--white); }
.section-dark { background: var(--green-dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: 50px; }

.section-header h2 {
  font-family: var(--font-accent);
  font-size: 34px;
  color: var(--green);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-green .section-header h2,
.section-dark .section-header h2 { color: var(--white); }

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--green-accent);
  margin: 10px auto 0;
}

.section-green .section-header h2::after,
.section-dark .section-header h2::after { background: var(--white); }

.section-header p {
  color: var(--gray-text);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.section-green .section-header p,
.section-dark .section-header p { color: rgba(255,255,255,.85); }

/* ============================================================
   QUICK INFO BAR
   ============================================================ */
.info-bar {
  background: var(--green);
  color: var(--white);
  padding: 20px 0;
}

.info-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.info-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  flex: 1 1 0;
  justify-content: flex-start;
}

.info-bar-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-bar-text strong { display: block; font-size: 16px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-accent);
  font-size: 32px;
  color: var(--green);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--gray-text);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text .tagline {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  font-family: var(--font-accent);
  border-left: 4px solid var(--green-accent);
  padding-left: 16px;
  margin: 24px 0;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.about-value {
  text-align: center;
  padding: 16px 10px;
  background: var(--gray-light);
  border-radius: 6px;
  border-bottom: 3px solid var(--green);
}

.about-value strong {
  display: block;
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

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

.about-image img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.about-image-badge .years {
  font-family: var(--font-accent);
  font-size: 32px;
  line-height: 1;
}

.about-image-badge small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
}

.product-card-image {
  height: 200px;
  overflow: hidden;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-family: var(--font-accent);
  font-size: 20px;
  color: var(--green);
  margin-bottom: 10px;
}

.product-card-body p {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}

.product-card-footer {
  padding: 16px 22px;
  border-top: 1px solid var(--gray);
}

.product-card-footer .btn {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 10px;
}

/* ============================================================
   PRODUCT LIST (inner pages)
   ============================================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  padding: 50px 0;
  border-bottom: 1px solid var(--gray);
}

.product-detail:last-child { border-bottom: none; }

.product-detail.reverse { direction: rtl; }
.product-detail.reverse > * { direction: ltr; }

.product-detail-img img {
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

.product-detail-body h3 {
  font-family: var(--font-accent);
  font-size: 26px;
  color: var(--green);
  margin-bottom: 12px;
}

.product-detail-body p {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.product-tag {
  background: var(--green);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-tag.outline {
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-accent);
  font-size: 34px;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 17px;
  opacity: .9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.cta-card {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.cta-card-icon {
  margin-bottom: 16px;
}

.cta-card strong {
  display: block;
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--white);
}

.cta-card p {
  font-size: 14px;
  opacity: .85;
  margin: 0;
}

@media (max-width: 768px) {
  .cta-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  padding: 60px 0 50px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-accent);
  font-size: 42px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 17px;
  opacity: .88;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  opacity: .8;
  margin-bottom: 18px;
}

.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   TEAM / FOUNDER
   ============================================================ */
.founder-card {
  display: flex;
  gap: 40px;
  align-items: center;
  background: var(--gray-light);
  border-radius: 10px;
  padding: 40px;
  margin-top: 40px;
}

.founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid var(--green);
}

.founder-info h3 {
  font-family: var(--font-accent);
  font-size: 24px;
  color: var(--green);
}

.founder-info .title {
  color: var(--gray-text);
  font-size: 14px;
  margin-bottom: 12px;
}

.founder-info p { color: var(--gray-text); line-height: 1.8; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-accent);
  font-size: 30px;
  color: var(--green);
  margin-bottom: 8px;
}

.contact-info p {
  color: var(--gray-text);
  margin-bottom: 28px;
}

.contact-items { display: flex; flex-direction: column; gap: 18px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-text strong { display: block; color: var(--dark); }
.contact-item-text span { color: var(--gray-text); font-size: 14px; }

.contact-buttons { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

.contact-buttons .btn { justify-content: center; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.store-photo {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.store-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

.store-photo figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--gray-text);
  text-align: center;
}

.map-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
  pointer-events: auto !important; /* permite navegar/arrastar dentro do mapa */
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .4px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--gray);
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--dark);
  transition: border-color .2s;
  background: var(--white);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}

/* ============================================================
   MODAL DE CONTATO
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 10px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.modal h2 {
  font-family: var(--font-accent);
  color: var(--green);
  font-size: 24px;
  margin-bottom: 6px;
}
.modal .modal-sub { color: var(--gray-text); font-size: 14px; margin-bottom: 22px; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  color: var(--gray-text);
  cursor: pointer;
}
.modal-close:hover { color: var(--dark); }

.modal-form { display: flex; flex-direction: column; gap: 16px; }
.modal-form .btn { justify-content: center; margin-top: 4px; }

.modal-success { text-align: center; padding: 16px 0 8px; }
.modal-success h2 { color: var(--green); margin-bottom: 8px; }
.modal-success p { color: var(--gray-text); font-size: 15px; }

.form-feedback { font-size: 14px; line-height: 1.5; }
.form-feedback.error { color: #c0392b; }
.form-feedback.success { color: var(--green); font-weight: 600; }

.recaptcha-note { font-size: 11px; color: var(--gray-text); line-height: 1.4; margin-top: 2px; }
.recaptcha-note a { color: var(--gray-text); text-decoration: underline; }

/* Sobe o badge do reCAPTCHA para não sobrepor o botão flutuante do WhatsApp */
.grecaptcha-badge { bottom: 100px !important; }

.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  font-family: var(--font-accent);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background .2s;
}

.footer-social a:hover { background: var(--green); }

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }

.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}

.footer-col ul a:hover { color: var(--green-accent); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--green-accent); }

.payment-methods { display: flex; align-items: center; gap: 8px; }

.payment-methods img { height: 26px; opacity: .7; }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  animation: pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37,211,102,.6);
  animation: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,.8); }
}

/* ============================================================
   RESUME PAGE
   ============================================================ */
.resume-section { padding: 60px 0; }

.resume-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

.resume-info h2 {
  font-family: var(--font-accent);
  font-size: 28px;
  color: var(--green);
  margin-bottom: 14px;
}

.resume-info p { color: var(--gray-text); line-height: 1.8; margin-bottom: 14px; }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}

.privacy-content h1 {
  font-family: var(--font-accent);
  color: var(--green);
  font-size: 34px;
  margin-bottom: 10px;
}

.privacy-content h2 {
  font-family: var(--font-accent);
  color: var(--green);
  font-size: 22px;
  margin: 32px 0 10px;
}

.privacy-content p,
.privacy-content li { color: var(--gray-text); line-height: 1.8; margin-bottom: 12px; }

.privacy-content ul { list-style: disc; padding-left: 24px; }

/* ============================================================
   PRODUCT DETAIL SECTIONS
   ============================================================ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-detail-grid-reverse {
  direction: rtl;
}

.product-detail-grid-reverse > * {
  direction: ltr;
}

.product-detail-text h2 {
  font-family: var(--font-accent);
  font-size: 32px;
  color: var(--green);
  margin-bottom: 20px;
}

.product-detail-text p {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 14px;
}

.product-detail-text .btn {
  margin-top: 10px;
}

.product-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: var(--gray-text);
  line-height: 2;
}

.product-detail-list li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: bold;
}

.product-detail-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 16px; box-shadow: 0 8px 20px rgba(0,0,0,.1); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 11px 16px; }
  .hamburger { display: flex; }
  .top-bar { display: none; }
  .info-bar .container { display: grid; grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail.reverse { direction: ltr; }
  .product-detail-grid { grid-template-columns: 1fr; direction: ltr; }
  .product-detail-grid-reverse { direction: ltr; }
  .product-detail-image { order: -1; }
  .acc-row { grid-template-columns: 1fr !important; gap: 18px !important; }
  .acc-row > div { order: 0 !important; }
  .acc-row > div:last-child { order: -1 !important; }
  .resume-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .slide-content { padding: 0 30px; }
  .slide-content h2 { font-size: 28px; }
  .slide { aspect-ratio: auto; height: 380px; }
  .founder-card { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .top-bar-left { flex-direction: column; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .info-bar .container { grid-template-columns: 1fr; }
  .cta-banner h2 { font-size: 26px; }
  .page-hero h1 { font-size: 28px; }
}
