:root{
  --color-text: #777777;
  --color-heading: #222831;
  --color-accent: #09cea1;
  --color-magenta: #970c59;
  --color-purple: #764370;
  --color-blue1: #3a57fe;
  --color-blue2: #4a57fe;
  --color-green: #63ad35;
  --color-dark: #222831;
  --color-bg-light: #f2f2f2;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --font-display: 'Abril Fatface', Georgia, 'Times New Roman', serif;
  --radius: 4px;
  --container-width: 1180px;
}
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1, h2, h3{
  font-family: var(--font-body);
  color: var(--color-heading);
  margin: 0 0 16px;
  line-height: 1.25;
}
h1{ font-size: 44px; font-weight: 700; color: #fff; }
h2{ font-size: 28px; font-weight: 700; }
h3{ font-size: 17px; font-weight: 700; }
p{ margin: 0 0 14px; }
.container{
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-dark);
  color: #fff;
  padding: 10px 16px;
  z-index: 2000;
}
.skip-link:focus{ left: 8px; top: 8px; }
:focus-visible{ outline: 3px solid var(--color-blue2); outline-offset: 2px; }
.visually-hidden{
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.icon{ display: inline-block; width: 1em; height: 1em; line-height: 0; }
.icon svg{ width: 100%; height: 100%; display: block; }
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); opacity: .92; }
.btn-arrow .icon{ width: 14px; height: 14px; }
.btn-dark{ background: var(--color-dark); color: #fff; }
.btn-green{ background: var(--color-green); color: #fff; }
.btn-blue-solid{ background: var(--color-blue1); color: #fff; }
.btn-outline-dark{ background: transparent; color: #fff; border-color: #fff; }
.btn-plan{ background: var(--color-dark); color: #fff; width: 100%; justify-content: center; text-align: center; border-radius: 0; padding: 14px 10px; }
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(34, 40, 49, 0.9);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  gap: 12px;
}
.logo img{ width: 190px; height: auto; }
.menu-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span{
  display: block; height: 3px; width: 100%;
  background: #fff; border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity: 0; }
.menu-toggle.open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }
.main-nav{ display: flex; align-items: center; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.main-nav ul{ display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0; }
.main-nav ul li{ position: relative; padding: 0 10px; }
.main-nav ul li:first-child{ padding-left: 0; }
.main-nav ul li a{
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .2px; white-space: nowrap;
}
.main-nav ul li a:hover{ color: var(--color-accent); }
.social-list{ display: flex; gap: 12px; align-items: center; justify-content: flex-end; }
.social-list .icon{ width: 15px; height: 15px; color: #fff; }
.social-list a:hover .icon{ color: var(--color-accent); }
.hero{
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 56px 0 70px;
}
.hero-content{ max-width: 620px; margin: 0; text-align: left; }
.hero-content h1{ margin-bottom: 14px; }
.hero-social{ display: flex; gap: 10px; margin-bottom: 24px; }
.hero-social a{
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: #fff; color: var(--color-dark);
}
.hero-social .icon{ width: 15px; height: 15px; }
.hero-social a:hover{ background: var(--color-dark); color: #fff; }
.hero-tagline{
  display: flex; flex-direction: column; gap: 2px;
  font-size: 19px; font-weight: 600; margin: 0 0 20px;
}
.hero-subtitle{ color: #fff; font-size: 26px; font-weight: 700; margin-bottom: 24px; }
.hero-buttons{ display: flex; gap: 12px; flex-wrap: wrap; }
.strip-3col{
  background-color: var(--color-purple);
  background-size: cover;
  background-position: center;
  padding: 28px 0;
  color: #fff;
}
.strip-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.strip-item{ display: flex; align-items: center; gap: 14px; }
.strip-icon{
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  color: #fff;
}
.strip-icon .icon{ width: 32px; height: 32px; }
.strip-icon-teal{ background: var(--color-accent); }
.strip-icon-blue{ background: var(--color-blue1); }
.strip-icon-indigo{ background: var(--color-blue2); }
.strip-item h3{ color: #fff; font-size: 15px; margin: 0 0 4px; }
.strip-item p{ color: rgba(255,255,255,.85); font-size: 13px; margin: 0; }
.cta-bar{ padding: 20px 0; }
.cta-bar-blue1{ background: var(--color-blue1); }
.cta-bar-blue2{ background: var(--color-blue2); }
.cta-bar-inner{
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.cta-bar-inner p{
  color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .3px; margin: 0;
}
.why-choose{ padding: 40px 0 8px; background: #fff; }
.why-choose h2{ color: var(--color-magenta); margin: 0; }
.why-photos{ padding: 8px 0 48px; background: #fff; }
.why-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-item img{ width: 100%; height: 210px; object-fit: cover; margin-bottom: 20px; }
.why-item h3{ color: var(--color-magenta); font-size: 16px; margin-bottom: 10px; }
.why-item p{ font-size: 14px; }
.why-item strong{ color: var(--color-blue1); font-weight: 700; }
.counters{
  padding: 64px 0;
  background-color: #1c1c1c;
  background-size: cover;
  background-position: center;
  text-align: left;
}
.counters h2{ color: #fff; max-width: 760px; margin: 0 auto 44px; text-align: center; }
.counters-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.counter-icon{ display: inline-flex; align-items: center; justify-content: center; color: var(--color-accent); width: 72px; height: 72px; margin-bottom: 16px; }
.counter-icon .icon{ width: 100%; height: 100%; }
.counter-value{ margin: 0; }
.counter-number, .counter-suffix{ font-size: 38px; font-weight: 700; color: var(--color-accent); }
.counter-label{ margin-top: 6px; color: rgba(255,255,255,.85); font-size: 13px; }
.who-we-are{ display: grid; grid-template-columns: 42% 58%; align-items: stretch; background: #fff; }
.who-img{
  background-size: cover;
  background-position: center;
  min-height: 620px;
}
.who-content{ padding: 64px 48px; }
.who-content h2{ color: var(--color-magenta); margin-bottom: 32px; }
.who-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 32px; margin-bottom: 32px; }
.who-item h3{
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--color-heading); text-transform: uppercase; margin-bottom: 8px;
}
.who-icon{
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-accent); color: #fff; flex-shrink: 0;
}
.who-icon .icon{ width: 20px; height: 20px; }
.who-item p{ font-size: 13px; margin: 0; }
.who-strategy{ border-top: 1px solid #eee; padding-top: 20px; }
.who-strategy-toggle{
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer; padding: 8px 0;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  color: var(--color-heading); letter-spacing: .3px; text-transform: uppercase;
}
.who-strategy-icon{
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--color-heading);
  font-size: 16px; line-height: 1;
}
.who-strategy-panel{
  overflow: hidden;
  max-height: 240px;
  transition: max-height .3s ease, opacity .3s ease;
  opacity: 1;
}
.who-strategy-panel.closed{ max-height: 0; opacity: 0; }
.who-strategy-panel p{ font-size: 13px; margin: 12px 0 0; }
.planos-intro-section{ padding: 56px 0 16px; background: #fff; text-align: center; }
.planos-intro-section h2{ color: var(--color-magenta); max-width: 760px; margin: 0 auto 40px; }
.features-grid{
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 48px;
  text-align: left; max-width: 900px; margin: 0 auto;
}
.feature-item{ display: flex; gap: 16px; align-items: flex-start; }
.feature-icon{
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; color: var(--color-accent);
}
.feature-icon .icon{ width: 100%; height: 100%; }
.feature-item h3{ color: var(--color-magenta); font-size: 14px; margin-bottom: 6px; }
.feature-item p{ font-size: 13px; margin: 0; }
.planos{
  background-size: cover;
  background-position: center;
  padding: 56px 0 0;
  margin-bottom: -60px;
  position: relative;
}
.planos-intro{
  text-align: center; color: #fff; font-weight: 700; font-size: 22px;
  margin-bottom: 24px; line-height: 1.4;
}
.whats-pill{
  display: flex; align-items: center; gap: 12px;
  max-width: 340px; margin: 0 auto 56px;
  background: var(--color-green); color: #fff;
  border-radius: 30px; padding: 12px 22px;
}
.whats-pill .icon{ width: 26px; height: 26px; flex-shrink: 0; }
.whats-pill span{ font-size: 12px; line-height: 1.4; }
.whats-pill strong{ font-size: 13px; }
.plans-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid #eee; }
.plan-card{ background: #fff; display: flex; flex-direction: column; border-left: 1px solid #eee; }
.plan-card:first-child{ border-left: none; }
.plan-head{ background: var(--color-blue1); padding: 18px 16px; text-align: center; }
.plan-head h3{ color: #fff; font-size: 15px; margin: 0; line-height: 1.35; }
.plan-body{ padding: 22px 18px; display: flex; flex-direction: column; flex: 1; }
.plan-price{ text-align: center; font-size: 14px; color: var(--color-text); margin-bottom: 18px; }
.plan-price span{ font-family: var(--font-body); font-size: 30px; font-weight: 800; letter-spacing: -.5px; color: var(--color-heading); display: block; }
.plan-card ul{ flex: 1; margin-bottom: 20px; }
.plan-card ul li{ font-size: 12px; padding: 7px 0; border-bottom: 1px solid #eee; color: var(--color-text); }
.planos-fallback{ text-align: center; padding: 88px 0 80px; }
.planos-fallback p{ font-size: 18px; color: var(--color-blue1); font-weight: 700; margin-bottom: 20px; }
.testimonials{ background: #fff; padding-top: 40px; position: relative; z-index: 1; }
.testimonials h2{ color: var(--color-magenta); margin-bottom: 0; }
.testimonial-slider{ position: relative; overflow: hidden; margin-top: 32px; }
.testimonial-track{ display: flex; transition: transform .5s ease; }
.testimonial-slide{
  flex: 0 0 100%;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.testimonial-slide::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,20,20,.8) 0%, rgba(20,20,20,.55) 38%, rgba(20,20,20,0) 62%);
}
.testimonial-box{
  position: relative; z-index: 1;
  max-width: 380px;
  padding: 0 0 0 clamp(24px, 5vw, 56px);
  color: #fff;
}
.testimonial-box p{ font-size: 19px; font-style: italic; margin-bottom: 16px; }
.testimonial-box cite{ display: block; font-style: normal; font-weight: 700; }
.testimonial-box cite span{ display: block; font-weight: 400; font-size: 12px; opacity: .8; margin-top: 2px; }
.slider-arrow{
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2; background: rgba(255,255,255,.9); border: none;
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  color: var(--color-heading); font-size: 14px;
}
.slider-prev{ left: 20px; }
.slider-next{ right: 20px; }
.search-here{ padding: 56px 0; background: var(--color-bg-light); }
.search-here h2{ color: var(--color-magenta); margin-bottom: 40px; }
.search-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 40px; }
.search-item h3{
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; color: var(--color-heading); margin-bottom: 8px;
}
.search-icon{
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--color-accent); color: var(--color-accent); flex-shrink: 0;
}
.search-icon .icon{ width: 22px; height: 22px; }
.search-item p{ font-size: 13px; margin: 0; }
.contact-form-section{
  background-size: cover;
  background-position: center;
  padding: 64px 0 32px;
  color: #fff;
}
.contact-grid{
  display: grid; grid-template-columns: 34% 66%; gap: 32px;
}
.contact-info h2{ color: #fff; font-size: 34px; margin-bottom: 20px; }
.contact-info p{ font-size: 14px; max-width: 320px; }
.contact-form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: min-content;
  gap: 14px 16px;
}
.form-honeypot{
  position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden;
}
.form-row-message{ grid-row: span 2; }
.form-row input,
.form-row select,
.form-row textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 2px;
  border: none;
  background: rgba(255,255,255,.92);
  font-family: var(--font-body);
  font-size: 13px;
  color: #333;
}
.form-row textarea{ height: 100%; min-height: 108px; resize: vertical; }
.form-row select{ appearance: none; -webkit-appearance: none; }
.form-error{ display: block; color: #ffd0d0; font-size: 11px; min-height: 14px; margin-top: 2px; }
.form-row-full{ grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; margin-top: 6px; }
.form-feedback{ margin: 0; font-weight: 600; font-size: 13px; }
.form-feedback.success{ color: #b7ffcf; }
.form-feedback.error{ color: #ffd0d0; }
.contact-bottom{
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  border-top: 1px solid rgba(255,255,255,.25);
  margin-top: 32px; padding-top: 24px;
}
.contact-bottom p{ display: flex; gap: 10px; align-items: flex-start; font-size: 13px; margin: 0; }
.contact-bottom .icon{ width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.contact-bottom a{ color: #fff; font-weight: 600; }
.site-footer{ background: #f4f4f4; padding: 36px 0; text-align: center; }
.footer-inner{
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 24px 40px;
}
.footer-credit{
  display: flex; align-items: center; gap: 12px;
  margin: 0; font-size: 13px; color: var(--color-text);
}
.footer-credit a{ display: inline-flex; }
.footer-credit-logo{ width: 180px; height: auto; }
.whatsapp-float{
  position: fixed; right: 24px; bottom: 24px; z-index: 1500;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s ease;
}
.whatsapp-float .icon{ width: 30px; height: 30px; }
.whatsapp-float:hover{ transform: scale(1.08); }
.cookie-banner{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 2000;
  background: #1f1f1f; color: #fff; padding: 18px 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.cookie-banner[hidden]{ display: none; }
.cookie-banner p{ margin: 0; max-width: 700px; font-size: 13px; }
.cookie-banner a{ color: var(--color-accent); text-decoration: underline; }
.cookie-actions{ display: flex; gap: 12px; flex-shrink: 0; }
@media (max-width: 1023px){
  .menu-toggle{ display: flex; }
  .main-nav{
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: rgba(34,40,49,.98);
    flex-direction: column; align-items: flex-start; width: 100%; padding: 16px 24px 20px;
  }
  .main-nav.open{ display: flex; }
  .main-nav ul{ flex-direction: column; gap: 14px; width: 100%; }
  .main-nav ul li{ padding: 0; }
  .social-list{ margin-top: 14px; }
  .header-inner{ position: relative; }
  .why-grid, .search-grid, .counters-grid{ grid-template-columns: repeat(2, 1fr); }
  .who-we-are{ grid-template-columns: 1fr; }
  .who-img{ position: static; height: 280px; min-height: 0; }
  .who-content{ padding: 40px 24px; }
  .features-grid{ grid-template-columns: 1fr; }
  .plans-grid{ grid-template-columns: repeat(2, 1fr); }
  .plan-card:nth-child(3){ border-left: none; }
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-bottom{ grid-template-columns: 1fr; }
}
@media (max-width: 767px){
  h1{ font-size: 32px; }
  h2{ font-size: 24px; }
  .hero{ padding: 40px 0 48px; }
  .strip-grid{ grid-template-columns: 1fr; gap: 20px; }
  .cta-bar-inner{ flex-direction: column; align-items: flex-start; }
  .why-grid, .search-grid, .counters-grid, .plans-grid{ grid-template-columns: 1fr; }
  .plan-card{ border-left: none; border-top: 1px solid #eee; }
  .plan-card:first-child{ border-top: none; }
  .who-grid{ grid-template-columns: 1fr; }
  .contact-form{ grid-template-columns: 1fr; }
  .form-row-message{ grid-row: auto; }
  .testimonial-box{ max-width: 100%; }
  .cookie-banner{ flex-direction: column; align-items: flex-start; }
}
