/* Na Contramão Planejados — style.css
   Dica: se sua logo/cores forem outras, posso ajustar rapidinho.
*/

:root{
  --bg: #0b1212;
  --surface: #0f1f1f;
  --card: #0f1a1a;
  --text: #e9f1f1;
  --muted: rgba(233,241,241,.72);
  --muted2: rgba(233,241,241,.56);
  --line: rgba(233,241,241,.12);
  --accent: #20c997; /* verde elegante */
  --accent2: #0d3b3a; /* seu verde escuro */
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1100px 550px at 80% 10%, rgba(32,201,151,.18), transparent 60%),
    radial-gradient(900px 500px at 10% 30%, rgba(13,59,58,.35), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

.container{
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* Topbar */
.topbar{
  border-bottom: 1px solid var(--line);
  background: rgba(10,16,16,.55);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  display:flex;
  gap: 12px;
  justify-content: space-between;
  align-items:center;
  padding: 10px 0;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border: 1px solid rgba(32,201,151,.35);
  background: rgba(32,201,151,.10);
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}
.sep{ color: rgba(233,241,241,.35); }
.mini{ font-size: 12px; color: var(--muted); }
.mini-link{ font-size: 12px; color: var(--muted); }
.mini-link:hover{ color: var(--text); }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(10,16,16,.75);
  backdrop-filter: blur(12px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.logo{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.logo img{
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.logo-text{ display:flex; flex-direction: column; }
.site-name{ font-weight: 800; letter-spacing: .2px; }
.site-subtitle{ font-size: 12px; color: var(--muted2); }

.nav-menu{
  display:flex;
  gap: 16px;
  align-items:center;
}
.nav-menu a{
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 10px;
}
.nav-menu a:hover{
  background: rgba(233,241,241,.06);
  color: var(--text);
}
.nav-menu .nav-cta{
  background: rgba(32,201,151,.16);
  border: 1px solid rgba(32,201,151,.25);
  color: var(--text);
}
.nav-menu .nav-cta:hover{
  background: rgba(32,201,151,.24);
}

.top-social{
  display:flex;
  align-items:center;
  gap: 10px;
}
.top-social a{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(233,241,241,.04);
}
.top-social a:hover{
  border-color: rgba(32,201,151,.35);
  background: rgba(32,201,151,.10);
}
.top-social img{
  width: 18px; height: 18px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.25));
}

/* Mobile menu */
.menu-toggle{
  display:none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(233,241,241,.04);
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 2px;
}

/* Sections */
.section{
  padding: 70px 0;
}
.section-head{
  margin-bottom: 22px;
}
.section-title{
  margin: 0 0 6px 0;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.3px;
}
.section-subtitle{
  margin:0;
  color: var(--muted);
  max-width: 720px;
}

/* Hero */
.hero{
  padding: 52px 0 28px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:center;
}
.kicker{
  display:inline-block;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(233,241,241,.75);
  margin:0 0 10px;
}
.hero h1{
  margin:0 0 12px 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.6px;
}
.accent{ color: var(--accent); }
.lead{
  margin:0 0 18px 0;
  color: var(--muted);
  font-size: 16px;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(32,201,151,.95), rgba(32,201,151,.70));
  color: #06211a;
  border: 1px solid rgba(32,201,151,.25);
  box-shadow: 0 14px 40px rgba(32,201,151,.18);
}
.cta:hover{ transform: translateY(-1px); }
.cta.ghost{
  background: rgba(233,241,241,.05);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.cta.ghost:hover{ background: rgba(233,241,241,.08); }
.cta.small{ padding: 10px 14px; border-radius: 12px; font-size: 14px; }

.trust-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.trust-item{
  border: 1px solid var(--line);
  background: rgba(233,241,241,.03);
  border-radius: var(--radius);
  padding: 12px;
}
.trust-item strong{ display:block; font-size: 13px; }
.trust-item span{ display:block; color: var(--muted2); font-size: 12px; margin-top: 3px; }

.hero-image{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-image img{
  width:100%;
  height: 420px;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}
.hero-card{
  position:absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  border-radius: 18px;
  border: 1px solid rgba(233,241,241,.18);
  background: rgba(10,16,16,.68);
  backdrop-filter: blur(12px);
  padding: 14px;
}
.hero-card strong{ display:block; }
.hero-card p{ margin: 4px 0 0; color: var(--muted); font-size: 13px; }

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card{
  border: 1px solid var(--line);
  background: rgba(233,241,241,.03);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,.22);
}
.card img{
  width:100%;
  height: 150px;
  object-fit: cover;
}
.card-body{ padding: 14px; }
.card h3{ margin:0 0 6px; font-size: 18px; }
.card p{ margin:0 0 10px; color: var(--muted); }
.mini-list{
  margin:0;
  padding-left: 18px;
  color: var(--muted2);
  font-size: 13px;
}
.mini-list li{ margin: 4px 0; }

/* Credibility */
.credibility{
  background: rgba(233,241,241,.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cred-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}
.cred-bullets{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.cred-bullet{
  border: 1px solid var(--line);
  background: rgba(233,241,241,.03);
  border-radius: 18px;
  padding: 12px;
}
.cred-bullet strong{ display:block; font-size: 13px; }
.cred-bullet span{ display:block; color: var(--muted2); font-size: 12px; margin-top: 3px; }
.cred-card{
  border: 1px solid rgba(32,201,151,.22);
  background: rgba(32,201,151,.08);
  border-radius: 22px;
  padding: 16px;
}
.cred-card h3{ margin:0 0 10px; }
.steps{ margin:0 0 14px; padding-left: 18px; color: var(--muted); }
.steps li{ margin: 10px 0; }
.steps strong{ color: var(--text); }

/* About */
.sobre-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.sobre-text p{ color: var(--muted); margin-top:0; }
.btn-leia-mais{
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(233,241,241,.05);
  color: var(--text);
  font-weight: 800;
  cursor:pointer;
}
.btn-leia-mais:hover{ background: rgba(233,241,241,.08); }

.sobre-expand{
  margin-top: 12px;
  border-top: 1px dashed rgba(233,241,241,.18);
  padding-top: 12px;
}
.checklist{
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--muted);
}
.mvvs{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mvvs-card{
  border: 1px solid var(--line);
  background: rgba(233,241,241,.03);
  border-radius: 18px;
  padding: 12px;
}
.mvvs-card h4{ margin:0 0 6px; }
.mvvs-card p{ margin:0; color: var(--muted); font-size: 13px; }

.sobre-list{
  display:grid;
  gap: 10px;
}
.sobre-block{
  border: 1px solid var(--line);
  background: rgba(233,241,241,.03);
  border-radius: 20px;
  padding: 14px;
}
.sobre-block h3{ margin:0 0 6px; }
.sobre-block p{ margin:0; color: var(--muted); }

/* Portfolio */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.portfolio-item{
  border: 1px solid var(--line);
  background: rgba(233,241,241,.03);
  border-radius: 20px;
  overflow:hidden;
}
.portfolio-item img{
  width:100%;
  height: 200px;
  object-fit: cover;
}
.portfolio-item figcaption{
  padding: 10px 12px;
  font-size: 13px;
  color: var(--muted);
}

/* =========================
   DEPOIMENTOS COM PROJETO
========================= */

.testimonials .test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonials .test-card {
  background: #0f1a1a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
}

.testimonials .test-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.testimonials .quote {
  padding: 16px 16px 8px;
  font-size: 15px;
  line-height: 1.5;
  color: #e9f1f1;
}

.testimonials .who {
  padding: 0 16px 16px;
  font-size: 13px;
  color: #9fbcbc;
}

/* Contact */
.contato-inner{
  display:grid;
  grid-template-columns: 1fr .85fr;
  gap: 16px;
  align-items: start;
}
.contato-form{
  border: 1px solid var(--line);
  background: rgba(233,241,241,.03);
  border-radius: 22px;
  padding: 16px;
}
.contato-form label{ display:block; margin-bottom: 12px; }
.contato-form span{ display:block; font-size: 13px; color: var(--muted2); margin-bottom: 6px; }
.contato-form input, .contato-form textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(233,241,241,.18);
  background: rgba(10,16,16,.55);
  color: var(--text);
  outline: none;
}
.contato-form input:focus, .contato-form textarea:focus{
  border-color: rgba(32,201,151,.55);
  box-shadow: 0 0 0 4px rgba(32,201,151,.15);
}
.contato-btn{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(135deg, rgba(32,201,151,.95), rgba(32,201,151,.70));
  color: #06211a;
  font-weight: 900;
  cursor:pointer;
}
.form-note{
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted2);
}

.contato-info{
  border: 1px solid var(--line);
  background: rgba(233,241,241,.03);
  border-radius: 22px;
  padding: 16px;
}
.contato-info a{ color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.info-box{
  margin-top: 14px;
  border: 1px solid rgba(32,201,151,.22);
  background: rgba(32,201,151,.08);
  border-radius: 18px;
  padding: 14px;
}
.info-box h4{ margin:0 0 6px; }
.info-box p{ margin:0 0 10px; color: var(--muted); }

/* Footer */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 26px 0;
  background: rgba(10,16,16,.6);
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  gap: 16px;
  align-items:flex-start;
}
.footer-logo{
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.footer-left p{ margin: 8px 0 0; color: var(--muted); }
.footer-right p{ margin: 0 0 6px; color: var(--muted); }
.muted{ color: var(--muted2); font-size: 12px; }

/* WhatsApp float */
.whatsapp-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: rgba(32,201,151,.14);
  border: 1px solid rgba(32,201,151,.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  z-index: 200;
}
.whatsapp-float img{ width: 28px; height: 28px; object-fit: contain; }

/* Responsive */
@media (max-width: 980px){
  .hero-inner, .cred-grid, .sobre-inner, .contato-inner{ grid-template-columns: 1fr; }
  .trust-row{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid{ grid-template-columns: repeat(2, 1fr); }
  .test-grid{ grid-template-columns: 1fr; }
  .mvvs{ grid-template-columns: 1fr; }

  .menu-toggle{ display:block; }
  .nav-menu{
    position: absolute;
    right: 16px;
    top: 64px;
    display:none;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    width: min(280px, calc(100vw - 32px));
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(10,16,16,.92);
    box-shadow: var(--shadow);
  }
  .nav-menu.open{ display:flex; }
  .top-social{ display:none; }
  .topbar-inner{ flex-direction: column; align-items:flex-start; }
}

@media (max-width: 560px){
  .cards{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .hero-image img{ height: 320px; }
}
/* FORÇA A COR DO SVG DOS ÍCONES */
.top-social a svg {
  width: 18px;
  height: 18px;
  display: block;
  color: #e9f1f1;
}

.top-social a svg path {
  fill: currentColor;
}

/* hover */
.top-social a:hover svg {
  color: #20c997;
}
.video-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 16px 16px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(32,201,151,0.35);
  background: rgba(32,201,151,0.10);
  color: #e9f1f1;
  font-weight: 800;
  text-decoration: none;
}

.video-link:hover{
  background: rgba(32,201,151,0.18);
  border-color: rgba(32,201,151,0.55);
}
