/* ===========================================================
   LESHY MULTISERVICES — Design System
   Paleta: navy corporativo + verde-petróleo + dourado quente
   Tipografia: Open Sans (títulos + corpo)
=========================================================== */

:root{
  --navy: #0B2A4A;
  --navy-dark: #081D33;
  --petrol: #155E63;
  --gold: #C99A45;
  --gold-dark: #A87C30;
  --cream: #F7F4EE;
  --paper: #FFFFFF;
  --ink: #16212B;
  --muted: #5C6B78;
  --line: #E4E0D6;

  --font-head: 'Open Sans', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius: 14px;
  --shadow: 0 12px 32px -12px rgba(11,42,74,0.18);
  --shadow-sm: 0 4px 14px -6px rgba(11,42,74,0.14);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--font-head); color:var(--navy); margin:0 0 .5em; line-height:1.15; font-weight:600; }
p{ margin:0 0 1em; }
ul{ margin:0; padding:0; list-style:none; }
.container{ max-width:1180px; margin:0 auto; padding:0 24px; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 28px; border-radius:999px; font-weight:600; font-size:0.95rem;
  border:2px solid transparent; cursor:pointer; transition:all .2s ease; white-space:nowrap;
}
.btn-primary{ background:var(--gold); color:var(--navy-dark); }
.btn-primary:hover{ background:var(--gold-dark); transform:translateY(-2px); box-shadow:var(--shadow-sm); }
.btn-ghost{ border-color:rgba(255,255,255,0.5); color:#fff; }
.btn-ghost:hover{ background:rgba(255,255,255,0.12); }
.btn-lg{ padding:16px 36px; font-size:1.05rem; }
.btn-block{ width:100%; }
.btn-header{ margin-left:auto; }

/* ===== HEADER ===== */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(247,244,238,0.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{ display:flex; align-items:center; gap:32px; padding:14px 24px; }
.logo{ display:flex; align-items:center; gap:12px; }
.logo-img{ height:44px; width:auto; border-radius:8px; display:block; }
.main-nav{ display:flex; gap:28px; margin-left:16px; }
.main-nav a{ font-weight:500; font-size:0.95rem; color:var(--ink); position:relative; padding:4px 0; }
.main-nav a:hover{ color:var(--navy); }
.main-nav a::after{ content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--gold); transition:width .2s ease; }
.main-nav a:hover::after{ width:100%; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.nav-toggle span{ width:24px; height:2px; background:var(--navy); }

/* ===== HERO ===== */
.hero{ position:relative; overflow:hidden; background:var(--navy-dark); color:#fff; padding:150px 0 90px; }
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg svg{ width:100%; height:100%; }
.hero-inner{ position:relative; z-index:1; max-width:820px; }
.eyebrow{ text-transform:uppercase; letter-spacing:2px; font-size:0.78rem; font-weight:700; color:var(--gold); margin-bottom:18px; }
.hero h1{ color:#fff; font-size:clamp(2.4rem, 5vw, 4rem); margin-bottom:20px; }
.hero h1 span{ color:var(--gold); }
.hero-sub{ font-size:1.15rem; color:rgba(255,255,255,0.82); max-width:640px; margin-bottom:36px; }
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:60px; }
.hero-stats{
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:40px; border-top:1px solid rgba(255,255,255,0.18); padding-top:32px;
}
.hero-stats li{ display:flex; flex-direction:column; min-width:0; }
.hero-stats strong{ font-family:var(--font-head); font-size:1.8rem; color:var(--gold); }
.hero-stats span{ font-size:0.85rem; color:rgba(255,255,255,0.7); }

/* ===== SECTIONS ===== */
.section{ padding:110px 0; }
.section-alt{ background:var(--paper); }
.section-dark{ background:var(--navy); color:#fff; }
.section-dark h2, .section-dark h3{ color:#fff; }
.section-head{ max-width:680px; margin-bottom:56px; }
.section-head-light{ max-width:760px; }
.tag{ text-transform:uppercase; letter-spacing:2px; font-size:0.78rem; font-weight:700; color:var(--petrol); margin-bottom:14px; }
.tag-light{ color:var(--gold); }
.section-head h2{ font-size:clamp(1.8rem, 3.4vw, 2.6rem); }
.section-lead{ color:var(--muted); font-size:1.08rem; }
.section-lead-light{ color:rgba(255,255,255,0.78); }
.section-note{ font-size:0.85rem; color:var(--muted); font-style:italic; }

/* ===== ABOUT ===== */
.about-grid{ display:grid; grid-template-columns:1.2fr 1fr; gap:64px; align-items:center; }
.about-text p{ font-size:1.15rem; line-height:1.8; }
.about-photo{
  margin-top:24px; border-radius:var(--radius); overflow:hidden;
  aspect-ratio:3/1; background:var(--navy);
}
.about-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.about-photo--empty{
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.5); font-size:0.85rem; text-align:center; padding:24px;
}
.about-photo--empty::after{ content:'Espaço reservado para fotografia da equipa LESHY'; }
.about-cards{ display:flex; flex-direction:column; gap:24px; }
.vm-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:32px; box-shadow:var(--shadow-sm); }
.vm-card-alt{ background:var(--navy); color:#fff; border:none; }
.vm-card-alt.vm-card p{ color:rgba(255,255,255,0.85); }
.vm-label{ display:block; font-family:var(--font-head); font-weight:700; color:var(--gold); font-size:1.1rem; margin-bottom:10px; }
.vm-card p{ font-size:1.05rem; color:var(--ink); margin:0; }

/* ===== AREAS ===== */
.areas-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.area-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px 32px 24px; transition:transform .2s ease, box-shadow .2s ease;
}
.area-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.area-icon{ width:52px; height:52px; border-radius:12px; background:var(--cream); color:var(--petrol); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.area-icon svg{ width:28px; height:28px; }
.area-card h3{ font-size:1.15rem; margin-bottom:10px; }
.area-card p{ font-size:0.95rem; color:var(--muted); margin-bottom:0; }
.area-link{ display:inline-block; margin-top:14px; font-size:0.88rem; font-weight:600; color:var(--petrol); }
.area-link:hover{ color:var(--navy); }
.area-diff{ border-top:1px solid var(--line); padding-top:14px; margin-top:14px; font-size:0.88rem; color:var(--ink); }
.area-diff strong{ color:var(--petrol); }

.area-card-cta{ background:var(--cream); border:2px dashed var(--gold); display:flex; flex-direction:column; justify-content:center; }
.area-card-cta .area-icon{ background:transparent; color:var(--gold); font-size:1.6rem; font-weight:700; }
.area-card-cta .area-diff a{ color:var(--petrol); font-weight:600; }

/* ===== VALUES ===== */
.values-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:24px; }
.value-item{ padding:28px 20px; border-top:3px solid var(--gold); }
.value-num{ font-family:var(--font-head); font-size:1.4rem; color:var(--line); font-weight:700; }
.value-item h3{ font-size:1.05rem; margin:10px 0; }
.value-item p{ font-size:0.9rem; color:var(--muted); }

/* ===== BENEFITS ===== */
.benefits-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px 40px; }
.benefit{ display:flex; gap:14px; align-items:flex-start; font-size:1.02rem; color:rgba(255,255,255,0.9); }
.check{ color:var(--gold); font-weight:800; flex-shrink:0; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-bottom:56px; }
.testimonial{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:32px; margin:0; box-shadow:var(--shadow-sm); }
.testimonial p{ font-family:var(--font-head); font-size:1.05rem; color:var(--ink); }
.testimonial footer{ font-size:0.85rem; font-weight:600; color:var(--petrol); }
.testimonial footer span{ font-weight:400; color:var(--muted); }
.testimonial-avatar{
  width:56px; height:56px; border-radius:50%;
  background:var(--cream); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; margin-bottom:16px;
}
.testimonial-avatar img{ width:100%; height:100%; object-fit:cover; }
.testimonial-avatar svg{ width:26px; height:26px; color:var(--petrol); }
.stats-strip{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; background:var(--navy); border-radius:var(--radius); padding:36px; text-align:center; }
.stats-strip strong{ display:block; font-family:var(--font-head); font-size:1.9rem; color:var(--gold); }
.stats-strip span{ font-size:0.85rem; color:rgba(255,255,255,0.75); }

/* ===== PARCEIROS (MARQUEE) ===== */
.partners-marquee{
  overflow:hidden; width:100%; padding:16px 0 8px;
  -webkit-mask-image:linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image:linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.partners-track{ display:flex; align-items:center; width:max-content; gap:72px; animation:partners-scroll 48s linear infinite; }
.partners-marquee:hover .partners-track{ animation-play-state:paused; }
.partner-logo{ flex:0 0 auto; height:60px; display:flex; align-items:center; }
.partner-logo img{
  max-height:60px; width:auto; max-width:160px;
  filter:grayscale(1); opacity:0.55;
  transition:filter .35s ease, opacity .35s ease;
}
.partner-logo:hover img, .partner-logo.is-active img{ filter:grayscale(0); opacity:1; }

@keyframes partners-scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

@media (prefers-reduced-motion: reduce){
  .partners-track{ animation:none; }
}

@media (max-width:768px){
  .partners-track{ gap:48px; }
  .partner-logo{ height:44px; }
  .partner-logo img{ max-height:44px; max-width:120px; }
}

/* ===== CTA SECTION ===== */
.cta-section{ background:linear-gradient(135deg, var(--navy) 0%, var(--petrol) 100%); color:#fff; padding:90px 0; text-align:center; }
.cta-inner{ max-width:680px; margin:0 auto; }
.cta-section h2{ color:#fff; font-size:clamp(1.8rem,3.4vw,2.4rem); }
.cta-section p{ color:rgba(255,255,255,0.85); font-size:1.1rem; margin-bottom:32px; }
.cta-reassure{ display:flex; justify-content:center; gap:28px; flex-wrap:wrap; margin-top:28px; font-size:0.88rem; color:rgba(255,255,255,0.75); }
.cta-reassure li::before{ content:'✓ '; color:var(--gold); }

/* ===== CONTACT ===== */
.contact-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:64px; }
.contact-details{ margin:28px 0 10px; display:flex; flex-direction:column; gap:16px; }
.contact-details li{ display:flex; flex-direction:column; }
.contact-details strong{ color:var(--navy); font-size:0.85rem; text-transform:uppercase; letter-spacing:1px; }
.contact-form{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:36px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; gap:18px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.contact-form label{ display:flex; flex-direction:column; gap:8px; font-size:0.88rem; font-weight:600; color:var(--navy); }
.contact-form input, .contact-form select, .contact-form textarea{
  font-family:var(--font-body); font-size:0.95rem; padding:12px 14px; border:1px solid var(--line);
  border-radius:8px; background:var(--cream); color:var(--ink); font-weight:400; resize:vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus{ outline:2px solid var(--gold); }
.form-success{ display:none; color:var(--petrol); font-weight:600; text-align:center; }
.form-success.show{ display:block; }
.form-error{ display:none; color:#B3261E; font-weight:600; text-align:center; }
.form-error.show{ display:block; }
.hp-field{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }

/* ===== FOOTER ===== */
.site-footer{ background:var(--navy-dark); color:rgba(255,255,255,0.8); padding-top:70px; }
.footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1.1fr; gap:40px; padding-bottom:50px; }
.footer-logo-img{ height:52px; }
.footer-brand p{ margin-top:14px; color:rgba(255,255,255,0.55); font-style:italic; }
.footer-col h4{ color:#fff; font-family:var(--font-body); font-size:0.85rem; text-transform:uppercase; letter-spacing:1.5px; margin-bottom:16px; }
.footer-col a, .footer-col span{ display:block; margin-bottom:10px; font-size:0.92rem; color:rgba(255,255,255,0.7); }
.footer-col a:hover{ color:var(--gold); }
.footer-social{ display:flex; gap:14px; margin-top:6px; }
.footer-social a{ margin:0; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,0.12); padding:22px 0; font-size:0.82rem; color:rgba(255,255,255,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .main-nav{
    display:none; position:absolute; top:100%; left:0; right:0;
    background:var(--paper); flex-direction:column; gap:0;
    border-bottom:1px solid var(--line); box-shadow:var(--shadow-sm);
  }
  .main-nav.open{ display:flex; }
  .main-nav a{ padding:16px 24px; border-bottom:1px solid var(--line); }
  .btn-header{ display:none; }
  .nav-toggle{ display:flex; margin-left:auto; }
  .about-grid, .contact-grid{ grid-template-columns:1fr; }
  .areas-grid{ grid-template-columns:repeat(2,1fr); }
  .values-grid{ grid-template-columns:repeat(2,1fr); }
  .benefits-grid{ grid-template-columns:1fr; }
  .testimonials-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .hero{ padding:100px 0 60px; }
  .hero-stats{ gap:28px 24px; }
}
@media (max-width: 620px){
  .hero{ padding:80px 0 50px; }
  .eyebrow{ letter-spacing:1px; font-size:0.72rem; }
  .areas-grid, .values-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .section{ padding:70px 0; }
  .hero-stats{ gap:24px 16px; }
  .stats-strip{ gap:24px 16px; padding:28px 20px; }
}
@media (max-width: 420px){
  .hero-stats{ grid-template-columns:1fr; gap:20px; }
  .stats-strip{ grid-template-columns:1fr; }
}
