/* lp-pmes — CSS exclusivo deste template */

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.alla-hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: var(--abk);
    overflow: hidden;
    padding-top: 76px;
}
.alla-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s10);
    align-items: center;
    padding-block: var(--s16);
}
@media (min-width: 900px) {
    .alla-hero__inner {
        grid-template-columns: 55fr 45fr;
        gap: var(--s12);
    }
}

/* Conteúdo / texto */
.alla-hero__content {
    position: relative;
    z-index: 2;
}
.alla-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    background: rgba(125, 194, 66, 0.15);
    border: 1px solid rgba(125, 194, 66, 0.35);
    color: var(--agl);
    font-size: var(--tx-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--s2) var(--s4);
    border-radius: var(--r-full);
    margin-bottom: var(--s6);
}
.alla-hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ag);
    animation: dot-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes dot-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.65);
    }
}
.alla-hero__title {
    font-size: var(--tx-2xl);
    font-weight: 900;
    color: var(--aw);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: var(--s6);
    max-width: 16ch;
}
.alla-hero__title em {
    font-style: normal;
    color: var(--ag);
}
.alla-hero__subtitle {
    font-size: var(--tx-b);
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    max-width: 52ch;
    line-height: 1.7;
    margin-bottom: var(--s10);
}
.alla-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s4);
    align-items: center;
    margin-bottom: var(--s12);
}

/* Stats com ícone */
.alla-hero__stats {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--s4) var(--s6);
    padding-top: var(--s8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.alla-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}
.alla-hero__stat-icon {
    color: var(--ag);
    margin-bottom: 2px;
}
.alla-hero__stat-number {
    font-size: var(--tx-lg);
    font-weight: 900;
    color: var(--aw);
    line-height: 1;
    white-space: nowrap;
}
.alla-hero__stat-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
}

/* Visual / imagem com glow */
.alla-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
.alla-hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.alla-hero__glow {
    width: 870px;
    height: 870px;
    background: radial-gradient(circle, rgba(125, 194, 66, 0.22) 0%, rgba(125, 194, 66, 0.06) 55%, transparent 75%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(45px);
}
.alla-hero__glow--2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(125, 194, 66, 0.18) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%,
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.12);
    }
}
.alla-hero__cam {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(125, 194, 66, 0.25));
    animation: cam-float 5s ease-in-out infinite;
}
@keyframes cam-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}


@media(max-width:899px){
  .alla-hero__visual{min-height:240px;}
  .alla-hero__glow{width:280px;height:280px;}
  .alla-hero__glow--2{width:180px;height:180px;}
  .alla-hero__cam{max-width:320px;}
}
@media(max-width:600px){
  .alla-hero__title{font-size:clamp(2rem,8vw,var(--tx-3xl));}
  .alla-hero__stats{
    gap:var(--s5) var(--s8);
    flex-wrap: wrap;
  }
  .alla-hero__stat {
    min-width: unset;
  }
}

/* ─── Clientes (carrossel) ────────────────────────────────────────────────── */
.alla-clients__label {
    text-align: center;
    font-size: var(--tx-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--atl);
    margin-bottom: var(--s6);
}
.alla-clients {
    background: #fff;
    padding-block: var(--s10);
    border-top: 1px solid var(--agr2);
    border-bottom: 1px solid var(--agr2);
    overflow: hidden;
}

/* ─── Brands (grid de logos) ─────────────────────────────────────────────── */
.alla-brands {
    background: #fff;
}
.alla-brands__header {
    text-align: center;
    margin-bottom: var(--s12);
}
.alla-brands__header .alla-section-title {
    margin-inline: auto;
}
.alla-brands__header .alla-section-subtitle {
    margin-inline: auto;
}
.alla-brands__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--s6);
    align-items: center;
}
@media (min-width: 768px) {
    .alla-brands__grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: var(--s8);
    }
}
.alla-brands__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--s5);
    border: 1.5px solid var(--agr2);
    border-radius: var(--r-lg);
    background: #fff;
    transition:
        border-color var(--tr),
        box-shadow var(--tr);
}
.alla-brands__item:hover {
    border-color: var(--ag);
    box-shadow: 0 4px 16px rgba(125, 194, 66, 0.12);
}
.alla-brands__item img {
    height: 44px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter var(--tr);
}
.alla-brands__item:hover img {
    filter: grayscale(0%) opacity(1);
}
@media (max-width: 480px) {
    .alla-brands__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--s4);
    }
    .alla-brands__item img {
        height: 32px;
        max-width: 90px;
    }
}
.alla-logos-track-wrap {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.alla-logos-track {
    display: flex;
    align-items: center;
    gap: 5rem;
    width: max-content;
    animation: logos-scroll 100s linear infinite;
}
.alla-logos-track:hover {
    animation-play-state: paused;
}
@keyframes logos-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.alla-logos-track img {
    height: 50px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition: filter var(--tr);
}
.alla-logos-track img:hover {
    filter: grayscale(0%) opacity(1);
}
@media (max-width: 768px) {
    .alla-logos-track {
        gap: 3rem;
        animation-duration: 35s;
    }
    .alla-logos-track img {
        height: 38px;
        max-width: 100px;
    }
}
@media (max-width: 480px) {
    .alla-logos-track {
        gap: 2.5rem;
        animation-duration: 28s;
    }
    .alla-logos-track img {
        height: 32px;
        max-width: 80px;
    }
}

/* ─── Cards features ─────────────────────────────────────────────────────── */
.alla-why {
    background: var(--aw);
}
.alla-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
    gap: var(--s5);
}
.alla-card {
    background: var(--agr);
    border: 1.5px solid var(--agr2);
    border-radius: var(--r-lg);
    padding: var(--s8);
    transition:
        border-color var(--tr),
        box-shadow var(--tr),
        background var(--tr),
        transform var(--tr);
}
.alla-card:hover {
    border-color: var(--ag);
    background: var(--aw);
    box-shadow: var(--sh-g);
    transform: translateY(-3px);
}
.alla-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--agbg);
    border-radius: var(--r-md);
    margin-bottom: var(--s5);
    transition: background var(--tr);
}
.alla-card:hover .alla-card__icon {
    background: rgba(125, 194, 66, 0.18);
}
.alla-card__icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--agd);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.alla-card__title {
    font-size: var(--tx-lg);
    font-weight: 800;
    color: var(--abk);
    margin-bottom: var(--s3);
}
.alla-card__text {
    font-size: var(--tx-b);
    color: var(--atm);
    line-height: 1.65;
}

/* ─── Strip números ──────────────────────────────────────────────────────── */
.alla-numbers {
    background: linear-gradient(135deg, var(--agd) 0%, var(--ag) 60%, var(--agl) 100%);
    position: relative;
    overflow: hidden;
}
.alla-numbers__waves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.alla-numbers__waves svg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.08;
}
.alla-numbers__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--s6);
    text-align: center;
    padding-block: var(--s16);
}
.alla-numbers__num {
    font-size: calc(var(--tx-1xl) - 0.2vw);
    font-weight: 900;
    color: var(--aw);
    line-height: 1;
    margin-bottom: var(--s2);
}
.alla-numbers__lbl {
    font-size: var(--tx-xs);
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
    line-height: 1.4;
}



/* ─── Split compromisso ──────────────────────────────────────────────────── */
.alla-commitment {
    background: var(--agr);
}
.alla-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s12);
    align-items: center;
}
.alla-split--reverse > :first-child {
    order: 2;
}
.alla-split--reverse > :last-child {
    order: 1;
}
@media (min-width: 768px) {
    .alla-split {
        grid-template-columns: 1fr 1fr;
    }
    .alla-split--reverse > :first-child {
        order: 2;
    }
    .alla-split--reverse > :last-child {
        order: 1;
    }
}
.alla-visual {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    aspect-ratio: 3/4;
    background: var(--agr2);
}
.alla-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    transition: filter var(--tr);
}
.alla-visual:hover img {
    filter: grayscale(0%);
}
.alla-checklist {
    display: flex;
    flex-direction: column;
    gap: var(--s4);
    margin-top: var(--s6);
}
.alla-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: var(--s3);
    font-size: var(--tx-b);
    color: var(--atm);
    line-height: 1.6;
}
.alla-checklist__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--agbg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.alla-checklist__check svg {
    width: 13px;
    height: 13px;
    stroke: var(--agd);
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/*  imagens sobrepostas  */

/* Duo de imagens sobrepostas - Compromisso */
.alla-visual-duo {
    position: relative;
    width: 100%;
    /* altura total = imagem de fundo + sobra para a frente */
    padding-bottom: 28%; /* espaço extra embaixo para a img de frente */
}

.alla-vduo-back {
    display: block;
    width: 85%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
    margin-left: auto; /* empurra para a direita */
    filter: grayscale(10%);
    position: relative;
    z-index: 1;
}

.alla-vduo-front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--r-xl);
    box-shadow: 0 12px 40px rgba(0,0,0,0.30);
/*    border: 4px solid var(--aw);*/
    z-index: 2;
}

@media (max-width: 768px) {
    .alla-visual-duo {
        padding-bottom: 32%;
    }
    .alla-vduo-front {
        width: 48%;
    }
}

/* ─── Depoimentos — Swiper ───────────────────────────────────────────────── */
.alla-testimonials {
    background: var(--aw);
}
.alla-swiper-depos {
    padding-bottom: var(--s10) !important;
    overflow: hidden;
}
.alla-tcard {
    height: 100%;
    background: var(--agr);
    border: 1.5px solid var(--agr2);
    border-radius: var(--r-lg);
    padding: var(--s8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.alla-tcard__quote {
    font-size: var(--tx-b);
    color: var(--atx);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--s6);
    padding-left: var(--s5);
    position: relative;
    flex: 1;
}
.alla-tcard__quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--ag);
    border-radius: var(--r-full);
}
.alla-tcard__author {
    display: flex;
    align-items: center;
    gap: var(--s4);
}
.alla-tcard__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--agbg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: var(--tx-sm);
    color: var(--agd);
    flex-shrink: 0;
}
.alla-tcard__name {
    font-weight: 800;
    font-size: var(--tx-b);
    color: var(--abk);
}
.alla-tcard__stars {
    font-size: var(--tx-sm);
    color: #f4b400;
    margin-top: 3px;
    letter-spacing: 1px;
}
.alla-swiper-depos .swiper-pagination-bullet {
    background: #b0b8a8;
    opacity: 1;
    width: 8px;
    height: 8px;
    transition:
        background var(--tr),
        width var(--tr);
    border-radius: var(--r-full);
}
.alla-swiper-depos .swiper-pagination-bullet-active {
    background: var(--ag);
    width: 24px;
    border-radius: var(--r-full);
}

@media (max-width: 480px) {
    .alla-tcard {
      padding: var(--s4);
  }
}

/* ─── Formulário CF7 ─────────────────────────────────────────────────────── */
.alla-form-section {
    background: var(--abk);
    position: relative;
    overflow: hidden;
}
.alla-form-section__waves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.alla-form-section__waves svg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.06;
}
.alla-form-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s12);
}
@media (min-width: 900px) {
    .alla-form-inner {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}
.alla-form-box {
    background: var(--aw);
    border-radius: var(--r-xl);
    padding: clamp(var(--s8), 4vw, var(--s12));
    box-shadow: var(--sh-lg);
}
.alla-form-box__title {
    font-size: var(--tx-xl);
    font-weight: 900;
    color: var(--abk);
    margin-bottom: var(--s2);
}
.alla-form-box__sub {
    font-size: var(--tx-sm);
    color: var(--atm);
    margin-bottom: var(--s6);
}
.alla-form-box .wpcf7-form p {
    margin-bottom: var(--s4);
}
.alla-form-box .wpcf7-form label {
    display: block;
    font-size: var(--tx-sm);
    font-weight: 700;
    color: var(--atx);
    margin-bottom: var(--s2);
}
.alla-form-box .wpcf7-form input[type="text"],
.alla-form-box .wpcf7-form input[type="email"],
.alla-form-box .wpcf7-form input[type="tel"],
.alla-form-box .wpcf7-form select,
.alla-form-box .wpcf7-form textarea {
    width: 100%;
    background: var(--agr);
    border: 1.5px solid var(--agr2);
    border-radius: var(--r-md);
    padding: 0.7rem var(--s4);
    font-family: var(--font);
    font-size: var(--tx-sm);
    color: var(--atx);
    transition:
        border-color var(--tr),
        box-shadow var(--tr);
    outline: none;
}
.alla-form-box .wpcf7-form input:focus,
.alla-form-box .wpcf7-form select:focus,
.alla-form-box .wpcf7-form textarea:focus {
    border-color: var(--ag);
    box-shadow: 0 0 0 3px rgba(125, 194, 66, 0.18);
    background: var(--aw);
}
.alla-form-box .wpcf7-form textarea {
    resize: vertical;
    min-height: 100px;
}
.alla-form-box .wpcf7-form input[type="submit"] {
    width: 100%;
    background: var(--ag);
    color: var(--aw);
    border: none;
    border-radius: var(--r-full);
    padding: 0.85rem var(--s8);
    font-family: var(--font);
    font-size: var(--tx-b);
    font-weight: 800;
    cursor: pointer;
    transition:
        background var(--tr),
        box-shadow var(--tr),
        transform var(--tr);
    margin-top: var(--s2);
}
.alla-form-box .wpcf7-form input[type="submit"]:hover {
    background: var(--agd);
    box-shadow: var(--sh-g);
    transform: translateY(-2px);
}
.alla-form-box .wpcf7-not-valid-tip {
    font-size: var(--tx-xs);
    color: #d9534f;
    margin-top: 4px;
}
.alla-form-box .wpcf7-response-output {
    font-size: var(--tx-sm);
    border-radius: var(--r-md);
    padding: var(--s3) var(--s4);
    margin-top: var(--s4);
    border: none !important;
}
.alla-form-box .wpcf7-mail-sent-ok {
    background: var(--agbg);
    color: var(--agxd);
}
.alla-form-box .wpcf7-validation-errors,
.alla-form-box .wpcf7-mail-sent-ng {
    background: #fdf2f2;
    color: #b91c1c;
}
.alla-form-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--s4);
    margin-top: var(--s8);
}
.alla-form-points li {
    display: flex;
    align-items: flex-start;
    gap: var(--s3);
    font-size: var(--tx-b);
    color: rgba(255, 255, 255, 0.65);
}
.alla-form-points li svg {
    width: 18px;
    height: 18px;
    stroke: var(--ag);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Tiago - ajustes */

ul {
    padding: 0px;
}
* {
    box-sizing: border-box;
}
.alla-sticky-cta {
    display: none;
}

.alla-hero__visual img.alla-hero__cam{
    scale: 1.3;
}

@media (width <= 600px){
    .alla-hero__visual img.alla-hero__cam{
        scale: 1.1;
    }
}
