/* ==========================================================
   LP Franqueado — lp-franqueado.css
   Depende de app.css (carregado antes).
   Variáveis de cor: usa as mesmas definidas em app.css
     --green       #00A8BA   → alias: --lp-teal
     --dgreen      #005A64   → alias: --lp-teal-dark
     --green2      #00808E   → alias: --lp-teal-mid
     --lgreen      #D8F5F8   → alias: --lp-bg-sky
     --green3      #00363D   → alias: --lp-text
   ========================================================== */

:root {
	/* Aliases semânticos para a LP, apontam para as vars de app.css */
	--lp-teal:       var(--green);
	--lp-teal-dark:  var(--dgreen);
	--lp-teal-dark3:  var(--green3);
	--lp-teal-mid:   var(--green2);
	--lp-teal-light: #C0EDF1;
	--lp-bg-light:   #F0FEFF;
	--lp-bg-pale:    #FCFFFF;
	--lp-bg-sky:     var(--lgreen);
	--lp-text:       var(--green3);
	--lp-white:      #ffffff;
}

#header .w-texto h2 {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 0;
}

/* ── Base ─────────────────────────────────────────────── */
body.lp-franqueado {
	font-family: 'Inter', sans-serif;
	color: var(--lp-text);
	background: var(--lp-white);
}

body.lp-franqueado *,
body.lp-franqueado *::before,
body.lp-franqueado *::after {
	box-sizing: border-box;
}

/* ── Tipografia utilitária ───────────────────────────── */
.lp-title-xl { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 600; line-height: 1.15; }
.lp-title-xl2 { font-size: clamp(2rem, 4vw, 2.2rem); font-weight: 600; line-height: 1.15; }
.lp-title-lg { font-size: clamp(1.75rem, 3vw, 2rem); font-weight: 600; line-height: 1.2; }
.lp-title-md { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 600; line-height: 1.3; }
.lp-title-sm { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
.lp-text-lg  { font-size: 1.25rem; font-weight: 400; line-height: 1.6; }
.lp-text-md  { font-size: 1.125rem; font-weight: 400; line-height: 1.6; }
.lp-text-sm  { font-size: 1rem; font-weight: 400; line-height: 1.6; }
.lp-text-xs  { font-size: 0.875rem; font-weight: 400; line-height: 1.5; }

.text-lp-teal      { color: var(--lp-teal); }
.text-lp-teal-mid  { color: var(--lp-teal-mid); }
.text-lp-dark      { color: var(--lp-teal-dark); }
.text-lp-text      { color: var(--lp-text); }

/* ── Botão LP ─────────────────────────────────────────── */
.lp-btn {
	background-color: var(--lp-teal);
	border-color: var(--lp-teal);
	color: var(--lp-white);
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	padding: 0.75rem 1.75rem;
	border-radius: 6px;
	text-decoration: none;
	display: inline-block;
	transition: background-color 0.2s, border-color 0.2s;
}
.lp-btn:hover, .lp-btn:focus {
	background-color: var(--lp-teal-mid);
	border-color: var(--lp-teal-mid);
	color: var(--lp-white);
}

/* ── Seções gerais ───────────────────────────────────── */
.lp-section { padding-top: 80px; padding-bottom: 80px; }
.lp-section--sm { padding-top: 60px; padding-bottom: 60px; }
.lp-section--bg-light  { background: var(--lp-bg-light); }
.lp-section--bg-pale   { background: var(--lp-bg-pale); }
.lp-section--bg-sky    { background: var(--lp-bg-sky); }
.lp-section--bg-teal   { background: var(--lp-teal); }
.lp-section--bg-dark   { background: var(--lp-teal-dark); }

/* ── Hero ────────────────────────────────────────────── */
.lp-hero {
	background: var(--lp-bg-pale);
	padding-top: 80px;
	padding-bottom: 80px;
}
.lp-hero__title { font-size: clamp(2rem, 4.5vw, 2.2rem); font-weight: 500; color: var(--lp-teal-mid); line-height: 1.15; }
.lp-hero__subtitle { font-size: 1.25rem; color: var(--lp-teal-dark); margin-top: 1rem; }
.lp-hero__stats { display: flex; gap: 1.5rem; margin: 2rem 0; flex-wrap: wrap; }
.lp-hero__stat-box {
	background: var(--lp-bg-pale);
	border-radius: 10px;
	padding: 1.7rem;
	min-width: 160px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}
.lp-hero__stat-box-module {
  padding: 1px;
  background: linear-gradient(225deg, rgba(0, 168, 186, 1) 0%, rgba(255, 255, 255, 0) 26%);
  border-radius: 10px;
  height: 100%;
	width: 47%;
  box-shadow: 0px 0px 16px -1px rgb(0 230 255 / 20%);
}
.stat-box_text {
	line-height: 1;
}
.lp-hero__stat-num { font-size: 1.5rem; font-weight: 500; color: #00A8BA; line-height: 1; }
.lp-hero__stat-num span {font-size: 2rem; font-weight: 600; color: #00363D;}
.lp-hero__stat-label { font-size: 1rem; font-weight: 600; color: var(--lp-teal-dark); margin-top: 0.25rem; }
.lp-hero__disclaimer { font-size: 0.875rem; color: var(--lp-teal-dark); margin-top: 1rem; }
.lp-hero__quote-bar {
	background: var(--lp-teal-dark);
	color: var(--lp-white);
	padding: 1.25rem 0;
	font-size: 1rem;
	font-weight: 400;
	margin-top: 3rem;
}
.lp-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}
.lp-hero .w-imagem { position: relative; }
.lp-hero .w-imagem .w-legenda {
  position: absolute;
  width: 285px;
  bottom: 7px;
  right: 7px;
  padding: 7px;
  color: #fff;
  font-size: 14px;
	border-radius: 4px;
  background-color: #0000005c;
}
.lp-hero .w-imagem .w-legenda b {
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ── Cards de mercado ────────────────────────────────── */
.lp-market-card {
	background: var(--lp-bg-pale);
	border-radius: 12px;
	padding: 1.5rem;
	height: 100%;
}
.lp-market-card-module {
  padding: 1px;
  background: linear-gradient(225deg, rgba(0, 168, 186, 1) 0%, rgba(255, 255, 255, 0) 26%);
  border-radius: 12px;
  height: 100%;
	width: 100%;
  box-shadow: 0px 0px 16px -1px rgb(0 230 255 / 20%);
}
.lp-market-card__icon { width: auto; height: 50px; margin-bottom: 1rem; }
.lp-market-card__title { font-size: 1.2rem; color: var(--lp-teal-dark); }
.lp-market-card__text  { font-size: 1.125rem; font-weight: 400; color: var(--lp-teal-dark);}

.lp-market__img {
	border-radius: 12px;
}


/* ── Caixa de citação (quote) ────────────────────────── */
.lp-quote-box {
	background: var(--lp-teal-light);
	border-radius: 12px;
	padding: 2.5rem 8rem;
	text-align: center;
}
.lp-quote-box__text { font-size: clamp(1.5rem, 2vw, 2.5rem); font-weight: 500; color: var(--lp-teal-mid); line-height: 1.3; }
.lp-quote-box__author { font-size: 1.25rem; font-weight: 400; color: var(--lp-teal-mid); margin-top: 1rem; margin-bottom: 0; }

/* ── Lista de benefícios com check ──────────────────── */
.col-wrapper-module {
  padding: 1px;
  background: linear-gradient(225deg, rgba(0, 168, 186, 1) 0%, rgba(255, 255, 255, 0) 26%);
  border-radius: 60px;
  height: 100%;
  box-shadow: 0px 0px 16px -1px rgb(0 230 255 / 20%);
}
.col-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  padding: 20px;
  border-radius: 60px;
	height: 100%;
}
.lp-check-list__icon {
	width: 50px;
	flex: none;
}
.lp-check-list__icon img { max-width: 100%; height: auto; }
.lp-check-list__text {
	font-size: 1rem;
	font-weight: 500;
}
.lp-check-list .col-wrapper-module.glowing-border {
	border-radius: 75px;
}
.lp-check-list .col:nth-child(1) .glowing-border { --glow-intensity: 0.15; animation-delay: 0.6s; }
.lp-check-list .col:nth-child(2) .glowing-border { --glow-intensity: 0.1; animation-delay: 1.3s; }
.lp-check-list .col:nth-child(3) .glowing-border { --glow-intensity: 0.05; animation-delay: 2s; }


/* ── Cards de motivos (Por que investir) ─────────────── */
.lp-reason-card {
	background: var(--lp-white);
	border-radius: 12px;
	padding: 1.75rem;
	height: 100%;
	box-shadow: 0 2px 8px rgba(0,54,61,0.07);
}
.lp-reason-card__num { font-size: 2rem; font-weight: 600; color: var(--lp-teal-mid); }
.lp-reason-card__title { font-size: 2rem; font-weight: 600; color: var(--lp-teal-dark); line-height: 1.2; margin-top: 0.5rem; }
.lp-reason-card__text { font-size: 1rem; color: var(--lp-teal-dark); margin-top: 0.75rem; }
.lp-reason-card__icon { width: 48px; height: 48px; margin-bottom: 1rem; }

/* ── Cartões de diferenciais (6 cards) ───────────────── */
.col-quad-wrapper-module {
	background: linear-gradient(225deg, rgba(0, 168, 186, 1) 0%, rgba(255, 255, 255, 0) 26%);
	border-radius: 12px;
	padding: 1px;
	height: 100%;
	box-shadow: 0px 0px 16px -1px rgb(0 230 255 / 20%);
}
.col-quad-wrapper {
	background: var(--lp-white);
	border-radius: 12px;
	padding: 1.5rem;
	height: 100%;
	text-align: center;
}
.col-quad-wrapper .w-icon {
	display: inline-block;
	width: 60px;
	height: 60px;
	padding: 10px;
	margin-bottom: 1rem;
	border-radius: 50%;
	border: 1px solid var(--green)
}
.lp-diff-card__icon {
	max-width: 100%;
	height: auto;
}
.lp-diff-card__title { font-size: 1.25rem; font-weight: 700; color: var(--lp-teal-dark); margin-bottom: 0;; }
.lp-diff-card__text  { font-size: 1rem; color: var(--lp-teal-dark); margin-top: 0.5rem; margin-bottom: 0; }
.lp-quote-box__text_2 {
	font-size: 1.5rem;
}

.lp-list-ind .glowing-border { border-radius: 12px; }
.lp-list-ind .col:nth-child(1) .glowing-border { animation-delay: 0.6s; }
.lp-list-ind .col:nth-child(2) .glowing-border { animation-delay: 1.1s; }
.lp-list-ind .col:nth-child(3) .glowing-border { animation-delay: 1.5s; }
.lp-list-ind .col:nth-child(4) .glowing-border { animation-delay: 1.9s; }

/* ── Modelos de franquia ─────────────────────────────── */
.lp-section--bg-accent {
	background-image: url('../img/franqueado/bg-franq-01.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
.lp-model-card {
	background: var(--lp-teal);
	border-radius: 16px;
	padding: 2rem;
	color: var(--lp-white);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.lp-model-card .w-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.lp-model-card__label { font-size: 1.2rem; font-weight: 500; }
.lp-model-card__badge {
	display: inline-block;
	background: var(--lp-teal);
	font-size: 1.2rem;
	font-weight: 500;
	padding: 0.25rem 1rem;
	border-radius: 25px;
}
.lp-model-card--dark .lp-model-card__badge { background: var(--lp-teal-dark3); }
.lp-model-card__desc {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.3;
	margin-top: 1rem;
	margin-bottom: 0;
	text-align: center;
}
.lp-model-card--light .lp-model-card__badge { background: var(--lp-teal-mid); }

/* ── Indicadores financeiros ─────────────────────────── */
.lp-indicator-card {
	background: var(--lp-bg-pale);
	border-radius: 12px;
	padding: 1.75rem;
}
.lp-indicator-card__title { font-size: 1.2rem; font-weight: 600; color: var(--lp-teal-dark); margin-bottom: 0; }
.lp-indicator-card__text  { font-size: 1rem; color: var(--lp-teal-dark); margin-top: 0.5rem; }
.lp-section-ind .col-quad-wrapper { text-align: left; }
.lp-section-ind .col-quad-wrapper .w-icon { border: 0; padding: 0; }
.lp-section-ind .col-quad-wrapper .w-icon .lp-indicator-card__icon {
	max-width: 100%;
	height: auto;
}

/* ── Depoimentos ─────────────────────────────────────── */
.lp-testimonial-card-module {
	padding: 1px;
	background: linear-gradient(225deg, rgba(0, 168, 186, 1) 0%, rgba(255, 255, 255, 0) 26%);
	border-radius: 12px;
	box-shadow: 0px 0px 16px -1px rgb(0 230 255 / 20%);
	margin-top: 2rem;
}
.lp-testimonial-card {
	background: var(--lp-bg-pale);
	border-radius: 12px;
	padding: 2rem;
	text-align: left;
	position: relative;
}
.lp-testimonial-card::after {
	content: '';
	background-image: url('../img/franqueado/stars.svg');
	background-repeat: no-repeat;
	background-size: contain;
	width: 90px;
	height: 18px;
	position: absolute;
	top: 15px;
	right: 15px;
}
.lp-testimonial-card__name   { font-size: 1.25rem; font-weight: 700; color: var(--lp-teal-dark); }
.lp-testimonial-card__unit   { font-size: 1rem; font-weight: 400; color: var(--lp-teal); }
.lp-testimonial-card__avatar {
	width: 60px;
	height: 60px;
	border-radius: 9px;
	object-fit: cover;
	background: var(--lp-teal-light);
}
.lp-testimonial-card__quote {
	font-size: 1.2rem;
	color: var(--lp-teal-dark);
	font-style: italic;
	margin-top: 1rem;
	margin-bottom: 0;
	line-height: 1.5;
}
.video-franq { max-width: 100%; height: auto; aspect-ratio: 1/1; }

/* ── Suporte / etapas ────────────────────────────────── */
.etapa-slider .slick-track {
	display: flex;
	padding: 12px 0;
	margin: 0 -2px;
}
.etapa-slider .slick-slide {
	height: auto;
}
.etapa-slider .slick-arrow {
	font-size: 0;
  width: 30px;
  height: 47px;
  border: 0;
  background-color: transparent;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 5;
	opacity: 0;
	transition: .3s ease;
}
.etapa-slider:hover .slick-arrow {opacity: 0.8;}
.etapa-slider .slick-prev {
	background-image: url(../img/franqueado/prev-arrow.svg);
	left: 0;
}
.etapa-slider .slick-next {
	background-image: url(../img/franqueado/next-arrow.svg);
	right: 0;
}
.etapa-slider:hover .slick-arrow.slick-disabled {
    filter: grayscale(1);
    opacity: .3;
}
.lp-support-card {
	background: var(--lp-bg-pale);
	border-radius: 12px;
	padding: 1.5rem;
	height: 100%;
	box-shadow: 2px 2px 12px rgb(0, 0, 0, 0.07);
  margin: 0 8px;
}
.lp-support-card__icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--green);
  padding: 15px;
  margin-bottom: 1rem;
}
.lp-support-card__icon img { max-width: 100%; height: auto; }
.lp-support-card__title { font-size: 1.2rem; font-weight: 600; color: var(--lp-teal-dark); }
.lp-support-card__text  { font-size: 1rem; color: var(--lp-teal-dark); margin-top: 0.5rem; }

/* ── Milene Pavorô ───────────────────────────────── */
.col-image-wrapper .w-legenda {
	position: absolute;
  font-size: 1rem;
  text-align: left;
  color: #00808E;
  left: 0;
  bottom: 30px;
  padding: 2%;
  max-width: 280px;
}
.content-pavoro p {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.4;
}

/* ── Seção CEO ────────────────────────────────────────── */
.lp-ceo-section {
	background: url(../img/franqueado/bg-franq-02.jpg) no-repeat center center;
	background-size: cover;
}
.col-ceo-wrapper {
	background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
}
.lp-ceo-section__quote {
	font-size: 1rem;
	font-style: italic;
	color: var(--lp-teal-dark);
	line-height: 1.7;
}
.lp-ceo-section__name   { font-size: 1.5rem; font-weight: 600; color: var(--lp-teal-dark); margin-top: 1rem; }
.lp-ceo-section__role   { font-size: 1.125rem; font-weight: 400; color: var(--lp-teal-dark); }
.lp-ceo-section__img    { width: 100%; max-width: 380px; border-radius: 12px; object-fit: cover; }


/* ── Vídeo placeholder ───────────────────────────────── */
.lp-section-video iframe {
	border-radius: 16px;
}


/* ── Formulário ──────────────────────────────────────── */
.lp-form-section {
	background: var(--lp-bg-pale);
}
/* .lp-form-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
} */

/* ── Glowing Border ──────────────────────────────────────── */
@property --glow-deg {
  syntax: "<angle>";
  inherits: true;
  initial-value: -90deg;
}

/* the colors don't need to be registed */
@property --clr-1 {
  syntax: "<color>";
  inherits: true;
  initial-value: #ffffff;
}

@property --clr-2 {
  syntax: "<color>";
  inherits: true;
  initial-value: #00e6ff;
}

@property --clr-3 {
  syntax: "<color>";
  inherits: true;
  initial-value: #00e6ff;
}

@property --clr-4 {
  syntax: "<color>";
  inherits: true;
  initial-value: #0398a5;
}

@property --clr-5 {
  syntax: "<color>";
  inherits: true;
  initial-value: #006169;
}

.glowing-border {
  --gradient-glow: var(--clr-1), var(--clr-2), var(--clr-3), var(--clr-4),
    var(--clr-5), var(--clr-1);

  border: var(--border-width, 1px) solid transparent;
	border-left: 0;
  border-radius: 10px;
  background: linear-gradient(var(--surface, canvas) 0 0) padding-box,
    conic-gradient(from var(--glow-deg), var(--gradient-glow)) border-box;

  position: relative;
  isolation: isolate;

  animation: glow 3s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes glow {
  100% {
    --glow-deg: 270deg;
  }
}

.glowing-border::before,
.glowing-border::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.glowing-border::before {
  z-index: -1;
  background: var(--surface, canvas);
  inset: 0.5rem;
  scale: 1.2 1;
  transform-origin: right;
  filter: blur(var(--glow-size, 1rem));
}

.glowing-border::after {
  z-index: -2;
  inset: -1.5rem;
  background: conic-gradient(from var(--glow-deg), var(--gradient-glow));
  filter: blur(var(--glow-size, 1rem));
  opacity: var(--glow-intensity, 0.125);
}

.glowing-border.right {
  margin-inline-start: auto;
  border-radius: 100vw 0 0 100vw;
  border: var(--border-width, 3px) solid transparent;
  border-right: 0;

  &::before {
    transform-origin: left;
  }
}

.lp-check-list .glowing-border {
  border-radius: 75px;
}

@layer general-styling {
  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    overflow-x: clip;
  }
}



/* footer */
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #f0feff;
}
.bg__footer__top {
  background-color: #00a8ba;
  padding: 65px 0px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer__text {
  font-size: 21px !important;
  font-weight: 500;
  margin-bottom: 0px;
}
.footer__logo {
  text-align: center;
}
.footer__logo img {
	width: 220px;
}
.footer__social {
  display: flex;
  gap: 20px;
}
.social__icon {
  display: flex;
  justify-content: center;
}

.bg__footer__bottom {
  background-color: #00808e;
  padding: 14px 0px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.footer__bottom .ad__icon img {
	width: 120px;
}

@media (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
    gap: 24px;
  }
  .footer__social {
    padding-top: 16px;
    margin-bottom: 5px;
  }
  .bg__footer__top {
    padding: 48px 0px;
  }
  .footer__bottom {
    flex-direction: column;
  }
  .bg__footer__bottom{
    padding: 24px 0px;
  }
  .footer__bottom p {
    text-align: center;
    font-size: 12px;
		margin-bottom: 1rem;
  }
}

@media (min-width: 1400px) {
	.lp-hero__title { font-size: clamp(2rem, 4.5vw, 3rem);}
}

/* ── Responsivo ──────────────────────────────────────── */
@media (max-width: 767px) {
	.lp-btn { padding: 0.75rem; width: 100%; }
	.lp-hero .w-imagem .w-legenda { width: 155px; }
	#lp-franqueado { overflow: hidden; }
	#header .w-texto { display: none; }
	.lp-section { padding-top: 50px; padding-bottom: 50px; }
	.lp-hero { padding-top: 40px; }
	.lp-hero__stats { gap: 1rem; }
	.lp-hero__stat-box { min-width: 140px; flex-direction: column; align-items: flex-start; }
	.lp-section-mercado .col-left { order: 1; }
	.lp-section-mercado .col-right { order: 0; }
	.lp-section-mercado #lp-mercado-title { font-size: 30px; font-weight: 500; }
	.lp-section-mercado .col-left p { margin-bottom: 3rem; }
	.lp-section-porque { text-align: center; }
	#lp-modelos-title { font-size: 1.9rem; font-weight: 500; }
	.lp-model-card__badge { font-size: 1.1rem; }
	.lp-section-dep .col-right {order: 0; }
	.lp-section-dep .col-left { order: 1; }
	.lp-section-suporte .col-lg-8 { text-align: center; }
	.lp-market-card__title { font-size: 1.3rem; }
	.lp-model-card { margin-bottom: 1rem; }
	.lp-quote-box { padding: 20px; }
	.etapa-slider .slick-arrow { opacity: 0.8; }
	.col-image-wrapper { display: block; }
	.col-image-wrapper .w-legenda { position: static; margin: 10px 0 0; width: auto; text-align: center; max-width: 100%; }
	.lp-section-video iframe { max-width: 100%; }
	.footer__logo img { width: 160px; }
	.etapa-slider .slick-next { right: -12px; }
	.etapa-slider .slick-prev { left: -12px; }
	#lp-ceo-title, #lp-tese-title { font-size: 1.6rem; }
}


