/* =========================
   TOKENS (Lovable-like)
========================= */
:root{
  --az-teal-dark: #0E5A5F;
  --az-teal: #167076;
  --az-teal-light: #2C8D93;

  --az-mint: #4ECDC4;
  --az-whatsapp: #25D366;
  --az-whatsapp-hover: #20BD5A;

  --az-text: #0F172A;
  --az-muted: rgba(15, 23, 42, .62);
  --az-muted2: rgba(15, 23, 42, .48);

  --az-bg: #ffffff;
  --az-soft: #F5FAFA;
  --az-soft2:#F2F8F8;

  --az-border: rgba(15, 23, 42, .08);
  --az-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  --az-shadow2: 0 10px 20px rgba(15, 23, 42, .05);

  --az-radius-xl: 20px;
  --az-radius-lg: 16px;
  --az-radius-md: 14px;

  --az-container: 1040px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--az-text);
  background: var(--az-bg);
}

::selection {
  background: var(--az-mint);
  color: #ffffff;
}

::-moz-selection {
  background: var(--az-mint);
  color: #ffffff;
}

/* largura da barra */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* fundo da barra */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* "thumb" (parte que arrasta) */
::-webkit-scrollbar-thumb {
  background: var(--az-teal-dark);
  border-radius: 0px;
}

/* hover no thumb */
::-webkit-scrollbar-thumb:hover {
  background: #3bb8b0;
}

/* Container narrow (igual ao layout do print) */
.container-narrow{
  max-width: var(--az-container);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* =========================
   HEADER
========================= */
.az-header{
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.az-header.scrolled{
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}
.az-header__inner{
  height: 72px;
}
.az-logo{
  height: 34px;
  width: auto;
}
.az-nav__link{
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color .2s ease;
}
.az-header.scrolled .az-nav__link{
  color: rgba(15,23,42,.72);
}
.az-nav__link:hover{ color: var(--az-mint); }

.az-btn-whatsapp{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
  background: var(--az-whatsapp);
  color: #fff;
  box-shadow: 0 10px 18px rgba(37, 211, 102, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.az-btn-whatsapp:hover{
  background: var(--az-whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(37, 211, 102, .22);
  color: #fff;
}

.az-btn-icon{
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: #fff;
}
.az-header.scrolled .az-btn-icon{
  border-color: rgba(15,23,42,.10);
  background: rgba(15,23,42,.03);
  color: rgba(15,23,42,.85);
}

/* Offcanvas */
.az-offcanvas .az-nav__link{
  color: rgba(15,23,42,.82);
  padding: 10px 8px;
  border-radius: 12px;
}
.az-offcanvas .az-nav__link:hover{
  background: rgba(15,23,42,.04);
}

/* icons */
.az-ico{ width: 18px; height: 18px; color: currentColor; }
.az-ico-lg{ width: 22px; height: 22px; }

/* =========================
   HERO
========================= */
.az-hero{
  position: relative;
  min-height: 82vh;
  padding-top: 96px; /* espaço do header */
  overflow: hidden;
}
@media (min-height: 800px){
  .az-hero{ min-height: 92vh; }
}

.az-hero__bg{
  position:absolute; inset:0;
  background: radial-gradient(1200px 700px at 30% 20%, rgba(78,205,196,.18), transparent 60%),
  radial-gradient(900px 600px at 80% 30%, rgba(78,205,196,.12), transparent 60%),
  linear-gradient(135deg, var(--az-teal-dark), var(--az-teal));
}
.az-hero__blobs .blob{
  position:absolute; border-radius: 999px; filter: blur(50px);
  background: rgba(78,205,196,.18);
}
.az-hero__blobs .blob-1{ width: 360px; height: 360px; top: 90px; right: 90px; }
.az-hero__blobs .blob-2{ width: 460px; height: 460px; bottom: 90px; left: 70px; opacity:.55; }

.az-hero__dots{
  position:absolute; inset:0;
  opacity: .08;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 40px 40px;
}

.az-hero__content{
  position: relative;
  z-index: 2;
  padding-top: 26px;
  padding-bottom: 90px;
}

.az-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: 13px;
}
.az-badge .dot{
  width: 8px; height: 8px; border-radius: 99px;
  background: var(--az-mint);
  box-shadow: 0 0 0 6px rgba(78,205,196,.20);
  animation: pulse 1.5s ease-in-out infinite;
}

.az-hero__title{
  margin-top: 18px;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
}
.az-accent{ color: var(--az-mint); }

.az-hero__subtitle{
  margin-top: 14px;
  max-width: 620px;
  font-size: 18px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

.az-hero__cta{ margin-top: 22px; }

.az-btn-hero-whatsapp{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: var(--az-radius-xl);
  padding: 14px 20px;
  font-weight: 800;
  background: #ffffff;
  color: #0b3f43;
  border: 0;
  box-shadow: 0 18px 30px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.az-btn-hero-whatsapp:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(0,0,0,.22);
  background-color: #0b3f43;
  color: #ffffff;
}
.az-btn-hero-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: var(--az-radius-xl);
  padding: 10px 20px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.10);
  color: #fff;
  transition: background .2s ease, border-color .2s ease;
}
.az-btn-hero-outline:hover{
  background: #ffffff;
  border-color:  #ffffff;
  color: #0b3f43;
}

.az-hero__chips{ margin-top: 26px; }
.az-chip{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.90);
  font-weight: 600;
  font-size: 13px;
}
.az-chip__icon{
  width: 42px; height: 42px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--az-mint);
}

.az-hero__wave{
  position:absolute; left:0; right:0; bottom:-1px;
  z-index: 3;
}
.az-hero__wave svg{ width: 100%; height: auto; display:block; }

/* =========================
   SECTIONS
========================= */
.az-section{
  padding: 84px 0;
}
.az-section--white{ background: #fff; }
.az-section--soft{ background: var(--az-soft); }
.az-section--soft2{ background: var(--az-soft2); }
.az-section--contact{
  background: linear-gradient(to bottom, var(--az-soft2), #fff);
}

.az-kicker{
  display:inline-block;
  font-size: 18px;
  font-weight: 800;
  color: rgba(22,112,118,.75);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.az-h2{
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.az-h3{
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}
.az-h3-sm{
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 8px;
}
.az-h3-lg{
  font-size: 18px;
  font-weight: 800;
}
.az-p-lg{
  font-size: 16px;
  color: var(--az-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.az-p{
  font-size: 14px;
  color: var(--az-muted2);
  line-height: 1.7;
}
.az-p-sm{
  font-size: 13px;
  color: var(--az-muted2);
  line-height: 1.6;
  margin: 0;
}
.az-muted{ color: var(--az-muted2); font-size: 13px; }

.az-center-head{ max-width: 720px; margin-bottom: 36px; }

/* Cards (igual “flutuante”) */
.az-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: var(--az-radius-xl);
  box-shadow: var(--az-shadow2);
  padding: 18px;
}
.az-card--row{
  display:flex;
  gap: 14px;
  align-items:flex-start;
}
.az-card__icon{
  width: 44px; height: 44px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 14px;
  background: rgba(78,205,196,.10);
  color: var(--az-teal);
  flex: 0 0 auto;
}
.az-ico-mint{ color: var(--az-teal); }

/* Steps */
.az-steps{
  position: relative;
  margin-top: 26px;
}
.az-steps-line{
  position:absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(to right, transparent, rgba(78,205,196,.25), transparent);
}
.az-step-card{
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: var(--az-radius-xl);
  padding: 28px 24px;
  box-shadow: var(--az-shadow2);
  text-align: center;
  height: 100%;
}
.az-step-tag{
  position:absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(78,205,196,.14);
  color: rgba(22,112,118,.92);
  border: 1px solid rgba(78,205,196,.30);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 999px;
}
.az-step-icon{
  width: 58px; height: 58px;
  margin: 10px auto 0;
  display:flex; align-items:center; justify-content:center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--az-teal), var(--az-teal-light));
  color: #fff;
}
.az-ico-white{ color: #fff; }
.az-step-number{
  position:absolute;
  top: 22px;
  right: 22px;
  font-weight: 800;
  font-size: 44px;
  color: rgba(78,205,196,.18);
  letter-spacing: -0.02em;
}

/* Feature cards */
.az-feature-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: var(--az-radius-xl);
  box-shadow: var(--az-shadow2);
  padding: 20px;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.az-feature-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--az-shadow);
}
.az-feature-ico{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(78,205,196,.12);
  color: var(--az-teal);
  margin-bottom: 12px;
}
.az-ico-teal{ color: var(--az-teal); }

/* Operadoras */
.az-op-card{
  background:#fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 18px;
  box-shadow: var(--az-shadow2);
  padding: 12px 10px;
  text-align:center;
  height: 100%;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 8px;
  min-height: 92px;
}
.az-op-bubble{
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 800;
  color: var(--az-teal);
  background: linear-gradient(135deg, rgba(22,112,118,.10), rgba(78,205,196,.12));
  padding: 10px;
}
.az-op-name{
  font-size: 11px;
  color: rgba(15,23,42,.60);
  font-weight: 700;
  line-height: 1.2;
}

/* “col-lg-1_5” helper para 8 itens ficar “bem parecido” */
@media (min-width: 992px){
  .col-lg-1_5{
    flex: 0 0 auto;
    width: 12.5%;
  }
}

/* FAQ */
.az-faq{ max-width: 720px; }
.az-accordion .accordion-item{
  border: 0;
  background: transparent;
  margin-bottom: 10px;
}
.az-acc-btn{
  border-radius: 14px !important;
  border: 1px solid rgba(15,23,42,.06) !important;
  background: #fff !important;
  box-shadow: var(--az-shadow2);
  padding: 14px 16px;
  font-weight: 800;
  color: rgba(15,23,42,.82);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.az-acc-btn:focus{ box-shadow: 0 0 0 4px rgba(78,205,196,.18) !important; }
.az-accordion .accordion-button::after{ display:none; }

.az-chevron{
  width: 22px; height: 22px;
  border-radius: 10px;
  background: rgba(15,23,42,.04);
  position: relative;
  flex: 0 0 auto;
}
.az-chevron::before{
  content:"";
  position:absolute; inset:0;
  margin:auto;
  width: 8px; height: 8px;
  border-right: 2px solid rgba(15,23,42,.55);
  border-bottom: 2px solid rgba(15,23,42,.55);
  transform: rotate(45deg);
  top: 6px;
}
.accordion-button:not(.collapsed) .az-chevron::before{
  transform: rotate(-135deg);
  top: 8px;
}

.az-acc-body{
  padding: 14px 16px 2px;
  color: var(--az-muted2);
  font-size: 13px;
  line-height: 1.6;
}
.az-faq-cta{
  margin-top: 22px;
  padding: 22px;
  border-radius: var(--az-radius-xl);
  background: rgba(15,23,42,.03);
}

/* Contact form card */
.az-form-card{
  background:#fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: var(--az-radius-xl);
  box-shadow: var(--az-shadow);
  padding: 26px;
}

.az-label{
  font-size: 13px;
  font-weight: 700;
  color: rgba(15,23,42,.75);
  margin-bottom: 8px;
}

.az-input{
  position: relative;
}
.az-input__ico{
  position:absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(15,23,42,.45);
}
.az-input--textarea .az-input__ico--top{
  top: 18px;
  transform: none;
}
.az-control{
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  padding: 12px 14px 12px 44px;
  font-weight: 600;
}
.az-control:focus{
  border-color: rgba(78,205,196,.65);
  box-shadow: 0 0 0 4px rgba(78,205,196,.18);
}
.az-input--textarea .az-control{
  padding-top: 12px;
  padding-left: 44px;
  resize: none;
}

.az-toggle {
  width: 100%;
  min-height: 96px;               /* garante mesma altura */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  border-radius: 14px;
  padding: 12px 10px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;

  color: rgba(15, 23, 42, .55);
  font-weight: 800;
  text-align: center;

  transition: background .2s ease, border-color .2s ease, color .2s ease;
  flex-direction: column;
  line-height: 0;
}

/* Ícone padronizado */
.az-toggle .az-ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Texto */
.az-toggle div {
  font-size: 13px;
  line-height: 1.2;
}

/* Texto pequeno (por adesão) */
.az-toggle small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.75;
  margin-top: 2px;
}

/* Ativo */
.az-toggle.is-active {
  border-color: rgba(22,112,118,.45);
  background: rgba(22,112,118,.06);
  color: rgba(22,112,118,.92);
}

.az-btn-send{
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 800;
  background: #0F5D61;
  color: #fff;
  border: 0;
  box-shadow: 0 14px 20px rgba(15,93,97,.16);
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.az-btn-send:hover, .az-btn-send:active{
  transform: translateY(-1px);
  box-shadow: 0 18px 26px rgba(15,93,97,.20);
  background-color: var(--az-teal-light);
  color: #fff;
}

.az-btn-whatsapp--lg{
  border-radius: 18px;
  padding: 14px 18px;
}

/* Contact bullets */
.az-bullets .az-bullet{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: rgba(15,23,42,.58);
  font-weight: 700;
  font-size: 13px;
}
.az-bullets .dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(78,205,196,.9);
}

/* Footer */
.az-footer{
  background: #0F5D61;
  color: rgba(255,255,255,.88);
}

.az-footer__link{
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.az-footer__link:hover{
  color: #fff;
}

/* Linha divisória */
.az-footer__hr{
  height: 1px;
  background: rgba(255,255,255,.12);
}

/* Texto inferior */
.az-footer__bottom{
  font-size: 12px;
  color: rgba(255,255,255,.62);
}

.az-heart{
  color: var(--az-mint);
  font-weight: 900;
}

/* Redes sociais */
.az-footer__social a{
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 16px;
  transition: all .3s ease;
}

.az-footer__social a:hover{
  background: var(--az-mint);
  color: #0F5D61;
}
.az-footer__dev{
  font-size: 11px;
  color: rgba(255,255,255,.55);
  transition: opacity .3s ease;
}

.az-footer__dev:hover{
  opacity: .85;
}

.az-footer__dev-logo{
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.az-social{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.az-social__icon{
  width: 18px;
  height: 18px;
  fill: #fff;
}

.az-social:hover{
  background: var(--az-mint);
}

.az-social:hover .az-social__icon{
  fill: #0F5D61;
}

/* Floating WhatsApp */
.az-float-whatsapp{
  position: fixed;
  right: 18px;
  bottom: 30px;
  z-index: 999;
  text-decoration: none;
}
.az-float-whatsapp .pulse{
  position:absolute;
  inset: -10px;
  border-radius: 999px;
  background: var(--az-whatsapp);
  opacity: .18;
  animation: ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.az-float-whatsapp .inner{
  position: relative;
  display:flex;
  align-items:center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--az-whatsapp);
  color: #fff;
  box-shadow: 0 18px 26px rgba(37, 211, 102, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.az-float-whatsapp:hover .inner{
  background: var(--az-whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: 0 22px 32px rgba(37, 211, 102, .22);
}

/* Animations */
@keyframes ping{
  0%{ transform: scale(1); opacity: .25; }
  70%{ transform: scale(1.18); opacity: 0; }
  100%{ opacity: 0; }
}
@keyframes pulse{
  0%,100%{ transform: scale(1); }
  50%{ transform: scale(1.12); }
}

/* Small tweaks */
@media (max-width: 575.98px){
  .az-hero__subtitle{ font-size: 16px; }
  .az-header__inner{ height: 66px; }
  .az-hero{ padding-top: 90px; }
}

.az-btn-hero-outline2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--az-radius-xl);
  padding: 10px 20px;
  font-weight: 700;
  border: 2px solid rgb(0 95 115);
  background: rgb(237 250 249);
  color: #005f73;
  transition: background .2s ease, border-color .2s ease;
}

.az-btn-hero-outline2:hover{
  background: #e9f9f8;
  border-color: #005f73;
  color: #0b3f43;
}

/* Card */
.persona-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px 24px;
  max-width: 420px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef2f6;
  text-align: center;
}

/* Wrapper da foto */
.photo-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
}

/* Fundo claro inclinado */
.photo-bg {
  position: absolute;
  inset: 0;
  background: #b9f1ec;
  border-radius: 28px;
  z-index: 1;

  animation: rotateBg 18s linear infinite;
}

@keyframes rotateBg {
  from {
    transform: rotate(-6deg);
  }
  to {
    transform: rotate(354deg); /* -6 + 360 */
  }
}


/* Foto */
.persona-photo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* 👈 ajuste principal */
  border-radius: 28px;
  z-index: 2;
  background: #0a5c6d;
}


/* Tag */
.persona-tag {
  display: inline-block;
  background: #e8f1ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  margin-top: 10px;
}

/* Texto */
.persona-name {
  font-size: 22px;
  font-weight: 700;
  margin: 6px 0;
  color: #0f172a;
}

.persona-values {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 22px;
}

/* Blocos */
.persona-feature {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 12px;
  text-align: left;
}

.persona-feature strong {
  display: block;
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 4px;
}

.persona-feature span {
  font-size: 14px;
  color: #475569;
}

.az-list{
  list-style: none;
  padding: 0;
  margin:0;
}