:root{
  --bg-main:#0b1e2d;
  --bg-header:#081724;
  --bg-card:#102a3a;
  --brand:#00c853;
  --brand-dark:#00a844;
  --text-main:#ffffff;
  --text-muted:#cfd8dc;
  --border-soft:rgba(255,255,255,.1);
}

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

body{
  font-family:system-ui, Segoe UI, Arial, sans-serif;
  background:var(--bg-main);
  color:var(--text-main);
  line-height:1.6;
}

a{color:inherit;text-decoration:none}

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

/* Header + Menu (namespaced to avoid WP conflicts) */
.ms-site-header{
  background:#ffffff;
  border-bottom:1px solid rgba(8,23,36,.12);
  position:sticky;
  top:0;
  z-index:9999;
}

.ms-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:90px;
  gap:14px;
}

/* ── Logo: fixo, sem animação ──────────────────────────── */
.ms-logo{
  flex-shrink:0;
  line-height:0;
}

.ms-logo a{
  display:block;
  line-height:0;
}

.ms-logo img{
  display:block;
  width:260px;
  height:auto;
  max-width:260px;
  max-height:82px;
  object-fit:contain;
  object-position:left center;
  /* SEM animation, SEM transform */
}
/* ─────────────────────────────────────────────────────── */

.ms-menu-toggle{
  display:none;
  font-size:26px;
  line-height:1;
  background:none;
  border:0;
  color:#0b1e2d;
  cursor:pointer;
}

.ms-main-nav{
  display:flex;
  align-items:center;
}

.ms-main-nav > ul{
  list-style:none;
  display:flex;
  align-items:center;
  gap:4px;
}

.ms-main-nav li{position:relative}

.ms-nav-link-row{
  display:flex;
  align-items:center;
}

.ms-main-nav a{
  display:block;
  padding:12px 14px;
  font-weight:600;
  font-size:14.5px;
  white-space:nowrap;
  border-radius:8px;
  color:#0b1e2d;
  transition:color .2s ease, background .2s ease;
}

.ms-main-nav a:hover{
  color:var(--brand);
  background:rgba(8,23,36,.06);
}

.ms-main-nav li.active > .ms-nav-link-row > a{
  outline:1px solid rgba(0,200,83,.35);
  background:rgba(0,200,83,.12);
}

.ms-btn-cta{
  background:var(--brand);
  color:#001a0f !important;
  border-radius:10px;
  padding:12px 16px !important;
  margin-left:8px;
}

.ms-btn-cta:hover{
  background:var(--brand-dark);
  color:#001a0f !important;
}

.ms-sub-toggle{
  width:32px;
  height:32px;
  margin-left:-4px;
  border:0;
  border-radius:8px;
  background:transparent;
  color:#0b1e2d;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.ms-sub-toggle:hover,
.ms-sub-toggle:focus-visible{
  background:rgba(8,23,36,.08);
  outline:none;
}

.ms-sub-toggle span{
  display:inline-block;
  transition:transform .2s ease;
}
.ms-has-sub.ms-open > .ms-nav-link-row > .ms-sub-toggle span{
  transform:rotate(180deg);
}

.ms-main-nav > ul > li > .ms-sub-menu{
  display:none !important;
  position:absolute;
  top:100%;
  left:0;
  min-width:240px;
  background:#ffffff;
  border-radius:10px;
  padding:8px 0;
  border:1px solid rgba(8,23,36,.12);
  box-shadow:0 14px 34px rgba(8,23,36,.16);
  z-index:999;
}

.ms-main-nav > ul > li > .ms-sub-menu li a{
  padding:12px 16px;
  font-weight:550;
  font-size:14px;
  color:#335061;
  border-radius:0;
}

.ms-main-nav > ul > li > .ms-sub-menu li a:hover{
  color:var(--brand);
  background:rgba(255,255,255,.06);
}

.ms-main-nav > ul > li.ms-has-sub:hover > .ms-sub-menu,
.ms-main-nav > ul > li.ms-has-sub:focus-within > .ms-sub-menu,
.ms-main-nav > ul > li.ms-has-sub.ms-open > .ms-sub-menu{
  display:block !important;
}

.site-main{min-height:60vh}

/* Hero */
.hero{
  position:relative;
  height:65vh;
  min-height:420px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to right, rgba(11,30,45,.85), rgba(11,30,45,.55), rgba(11,30,45,.25));
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:680px;
}

.hero h1{
  font-size:42px;
  line-height:1.15;
  margin-bottom:14px;
}

.hero p{
  font-size:18px;
  color:var(--text-muted);
  margin-bottom:22px;
}

.hero-highlights{
  list-style:none;
  display:grid;
  gap:8px;
  max-width:560px;
}

.hero-highlights li{
  padding:8px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(8,23,36,.44);
  font-size:14px;
  color:#e6eef4;
}

/* Home section */
.services-section{
  padding:62px 0 78px;
}

.section-header{
  text-align:center;
  max-width:760px;
  margin:0 auto 34px;
}

.section-kicker{
  display:block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#80e7a9;
  margin-bottom:8px;
}

.section-header h2{
  font-size:36px;
  line-height:1.14;
  margin-bottom:10px;
}

.section-lead{
  font-size:17px;
  color:var(--text-muted);
}

/* 4 columns desktop, 2 tablet, 1 mobile */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}

.premium-service-card{
  background:#f3f8fb;
  color:#082031;
  border:1px solid rgba(0,0,0,.07);
  border-radius:16px;
  padding:18px 16px;
  min-height:220px;
  display:flex;
  flex-direction:column;
  transition:transform .34s cubic-bezier(.22,.61,.36,1), box-shadow .34s cubic-bezier(.22,.61,.36,1), border-color .34s ease-in-out;
}

.premium-service-card:hover{
  transform:translateY(-9px) scale(1.02);
  box-shadow:0 24px 40px rgba(3,20,30,.34);
  border-color:rgba(0,168,68,.28);
}

.card-icon{
  width:80px;
  height:80px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 0 14px;
  color:#0b3753;
  background:transparent;
  transition:transform .28s ease-in-out, color .28s ease-in-out;
}

.premium-service-card:hover .card-icon{
  transform:translateY(-3px) scale(1.1);
  color:#0d6c41;
}

.card-icon svg{
  width:22px;
  height:22px;
  display:block;
}

.card-icon img{
  width:64px;
  height:64px;
  object-fit:contain;
  display:block;
}

.premium-service-card h3{
  font-size:20px;
  line-height:1.2;
  margin-bottom:8px;
}

.premium-service-card p{
  font-size:15px;
  line-height:1.5;
  color:#375063;
  margin-bottom:14px;
}

.card-link{
  margin-top:auto;
  font-size:14px;
  font-weight:700;
  color:#0f6e43;
}

.card-link:hover{color:#0a4f2f}

.section-header--left{
  text-align:left;
  max-width:840px;
  margin:0 0 28px;
}

.trust-section,
.testimonials-section,
.about-section,
.final-cta-section{
  padding:0 0 72px;
}

.trust-grid,
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

.trust-layout{
  display:grid;
  grid-template-columns:1.25fr .95fr;
  gap:18px;
  align-items:stretch;
}

.trust-card,
.testimonial-card{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(16,42,58,.82);
  padding:20px;
}

.trust-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.trust-card p,
.testimonial-card p{
  color:var(--text-muted);
  font-size:15px;
}

.trust-card .trust-highlight{
  margin-top:10px;
  color:#9fe8be;
  font-weight:700;
}

.testimonial-card{
  margin:0;
}

.testimonial-head{
  display:flex;
  align-items:flex-start;
  margin-bottom:10px;
}

.testimonial-avatar{
  width:52px;
  height:52px;
  border-radius:999px;
  object-fit:cover;
  border:2px solid rgba(255,255,255,.5);
  box-shadow:0 6px 16px rgba(0,0,0,.22);
}

.testimonial-card cite{
  display:block;
  margin-top:12px;
  font-style:normal;
  font-weight:700;
  color:#9fe8be;
  font-size:14px;
}

.trust-image-card{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(16,42,58,.82);
}

.trust-image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.about-content{
  display:grid;
  gap:14px;
  max-width:900px;
}

.about-layout{
  display:grid;
  grid-template-columns:.95fr 1.2fr;
  gap:18px;
  align-items:stretch;
}

.about-image-card{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(16,42,58,.82);
}

.about-image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.about-content p{
  color:var(--text-muted);
  font-size:17px;
}

.final-cta-card{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(16,42,58,.95), rgba(7,24,37,.95));
  padding:34px 28px;
}

.final-cta-card h2{
  font-size:32px;
  line-height:1.2;
  margin-bottom:10px;
}

.final-cta-card p{
  color:var(--text-muted);
  font-size:17px;
  margin-bottom:20px;
}

.final-cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:10px;
  background:var(--brand);
  color:#001a0f;
  font-weight:700;
}

.final-cta-button:hover{
  background:var(--brand-dark);
}

/* Footer (basic) */
.site-footer{
  background:#ffffff;
  color:#0b1e2d;
  border-top:1px solid rgba(8,23,36,.12);
  padding-top:30px;
  padding-bottom:20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:24px;
}

/* ── Footer logo: fixo, sem animação ──────────────────── */
.footer-logo{
  display:block;
  width:200px;
  height:auto;
  max-height:62px;
  object-fit:contain;
  object-position:left center;
  margin-bottom:12px;
  /* SEM animation, SEM transform */
}
/* ─────────────────────────────────────────────────────── */

.site-footer h4{margin-bottom:8px}

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

.social-icons a{
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid rgba(8,23,36,.18);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#f2f6f9;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.social-icons a:hover{
  background:#e6edf3;
  border-color:rgba(8,23,36,.34);
  transform:translateY(-1px);
}

.social-icons img{
  width:22px;
  height:22px;
  object-fit:cover;
  border-radius:4px;
}

.social-fallback{
  font-size:11px;
  font-weight:700;
  letter-spacing:.03em;
  color:#0b1e2d;
}

.footer-bottom{
  margin-top:18px;
  color:#4e6575;
  font-size:14px;
}

.ms-whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:10001;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px 10px 10px;
  border-radius:999px;
  background:#25d366;
  color:#073b1f;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 12px 28px rgba(0,0,0,.24);
  font-weight:700;
}

.ms-whatsapp-float:hover{
  background:#1fbe5a;
}

.ms-whatsapp-icon{
  width:34px;
  height:34px;
  border-radius:999px;
  background:#ffffff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.ms-whatsapp-icon svg{
  width:20px;
  height:20px;
  fill:#25d366;
}

.ms-whatsapp-label{
  line-height:1;
  font-size:14px;
}

/* @keyframes logo-sail-sway REMOVIDO */

@media(max-width:1100px){
  .cards-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
}

@media(max-width:900px){
  .container{padding:0 14px}

  .ms-header-inner{min-height:74px}

  /* logo mobile: menor mas ainda fixo */
  .ms-logo img{
    width:200px;
    max-width:200px;
  }

  .ms-menu-toggle{display:inline-flex}

  .ms-main-nav{
    position:absolute;
    top:74px;
    left:0;
    right:0;
    background:#ffffff;
    display:none;
    border-bottom:1px solid rgba(8,23,36,.12);
    z-index:9998;
  }

  .ms-main-nav.ms-open{display:block}

  .ms-main-nav > ul{
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:8px 0;
  }

  .ms-main-nav > ul > li{
    border-top:1px solid rgba(8,23,36,.08);
  }

  .ms-main-nav > ul > li:first-child{border-top:0}

  .ms-nav-link-row{justify-content:space-between}

  .ms-main-nav a{
    width:100%;
    border-radius:0;
    padding:14px 18px;
  }

  .ms-main-nav > ul > li > .ms-sub-menu{
    position:static;
    box-shadow:none;
    border-radius:0;
    border:0;
    background:#f6f9fb;
    display:none !important;
  }

  .ms-main-nav > ul > li.ms-has-sub:hover > .ms-sub-menu,
  .ms-main-nav > ul > li.ms-has-sub:focus-within > .ms-sub-menu{
    display:none !important;
  }

  .ms-main-nav > ul > li.ms-has-sub.ms-open > .ms-sub-menu{
    display:block !important;
  }

  .ms-main-nav > ul > li > .ms-sub-menu li a{padding-left:34px}

  .ms-btn-cta{
    margin:10px 18px;
    text-align:center;
    border-radius:12px;
  }

  .hero{min-height:360px}
  .hero h1{font-size:32px}
  .hero p{font-size:16px}
  .hero-highlights li{font-size:13.5px}

  .trust-grid,
  .testimonials-grid{
    grid-template-columns:1fr;
  }

  .trust-layout{
    grid-template-columns:1fr;
  }

  .final-cta-card h2{font-size:28px}
  .about-content p{font-size:16px}
  .about-layout{grid-template-columns:1fr}

  .footer-grid{grid-template-columns:1fr}

  .ms-whatsapp-label{display:none}
  .ms-whatsapp-float{
    padding:10px;
    right:14px;
    bottom:14px;
  }
}

@media(max-width:700px){
  .container{padding:0 12px}

  .cards-grid{grid-template-columns:1fr}

  .services-section{padding:42px 0 52px}
  .section-header h2{font-size:30px}
  .section-lead{font-size:16px}
}
