/* ==============================================================
   about.css — página "Sobre a HOSTLP"
   Escopo: .ab-* (BEM)
   ============================================================== */

/* --------------------------------------------------------------
   Seção genérica (fundo, padding, grid sutil)
   -------------------------------------------------------------- */
.ab-section {
    position: relative;
    padding: 90px 0;
}

.ab-section--light {
    background:
        radial-gradient(1000px 500px at 85% -10%, rgba(45, 182, 222, 0.05), transparent 60%),
        radial-gradient(900px 500px at 10% 110%, rgba(31, 111, 170, 0.05), transparent 60%),
        #ffffff;
}

.ab-section--alt {
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.ab-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 58, 104, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 58, 104, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
            mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.ab-section > .container {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------
   Cabeçalho de seção (eyebrow + título + lead)
   -------------------------------------------------------------- */
.ab-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 56px;
}

.ab-head--left {
    text-align: left;
    margin-left: 0;
}

.ab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: ui-monospace, "SF Mono", "JetBrains Mono", Consolas, monospace;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #1F6FAA;
    margin-bottom: 14px;
}

.ab-eyebrow::before {
    content: "";
    width: 18px;
    height: 1.5px;
    background: linear-gradient(90deg, #2DB6DE, rgba(45, 182, 222, 0.2));
    border-radius: 1px;
}

.ab-title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: clamp(1.75rem, 2.8vw, 2.35rem);
    font-weight: 800;
    color: #0B1F2A;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 16px;
}

.ab-title .accent {
    background: linear-gradient(135deg, #0A3A68 0%, #2DB6DE 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ab-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #4A5A63;
    margin: 0;
}

/* --------------------------------------------------------------
   Seção "Quem somos" — 2 colunas (texto + painel stats)
   -------------------------------------------------------------- */
.ab-intro__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}

.ab-intro__text p + p {
    margin-top: 16px;
}

.ab-highlights {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 14px;
}

.ab-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #0B1F2A;
    font-size: 0.98rem;
    line-height: 1.5;
}

.ab-highlights i {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A3A68, #2DB6DE);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    box-shadow: 0 4px 10px rgba(45, 182, 222, 0.3);
    margin-top: 2px;
}

/* Painel direito: grid de 4 stats (mini-cards premium) */
.ab-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    counter-reset: abstat;
}

.ab-stat {
    counter-increment: abstat;
    position: relative;
    padding: 22px 20px;
    background:
        radial-gradient(300px 120px at 30% 0%, rgba(45, 182, 222, 0.06), transparent 70%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #e7ecf3;
    border-radius: 16px;
    box-shadow:
        0 10px 24px rgba(11, 31, 42, 0.05),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

/* Linha gradient no topo, aparece no hover */
.ab-stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2DB6DE, #1F6FAA);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Numeração monospace discreta no canto superior direito */
.ab-stat::after {
    content: "0" counter(abstat);
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: ui-monospace, "SF Mono", "JetBrains Mono", Consolas, monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #a5b5c4;
    opacity: 0.7;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.ab-stat:hover {
    transform: translateY(-5px);
    box-shadow:
        0 22px 46px rgba(11, 31, 42, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    border-color: rgba(45, 182, 222, 0.35);
}

.ab-stat:hover::before { transform: scaleX(1); }

.ab-stat:hover::after {
    color: #2DB6DE;
    opacity: 1;
}

.ab-stat__icon {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 55%),
        linear-gradient(135deg, rgba(45, 182, 222, 0.18) 0%, rgba(31, 111, 170, 0.14) 100%);
    border: 1px solid rgba(45, 182, 222, 0.3);
    color: #1F6FAA;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 14px;
    box-shadow:
        0 4px 14px rgba(45, 182, 222, 0.18),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.ab-stat__icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 1px solid rgba(45, 182, 222, 0.45);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.ab-stat:hover .ab-stat__icon {
    color: #0A3A68;
    transform: scale(1.05);
    box-shadow:
        0 8px 22px rgba(45, 182, 222, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.ab-stat:hover .ab-stat__icon::after {
    opacity: 1;
    transform: scale(1.05);
}

.ab-stat__value {
    display: block;
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0A3A68 0%, #2DB6DE 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ab-stat__value small {
    font-size: 0.85rem;
    font-weight: 700;
}

.ab-stat__label {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    color: #6b7a82;
    font-weight: 500;
}

/* --------------------------------------------------------------
   Seção Missão / Visão / Valores — 3 cards grandes
   -------------------------------------------------------------- */
.ab-mvv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ab-mvv__card {
    position: relative;
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid #e7ecf3;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(11, 31, 42, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.ab-mvv__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2DB6DE, #0A3A68);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.ab-mvv__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(11, 31, 42, 0.12);
    border-color: rgba(45, 182, 222, 0.35);
}

.ab-mvv__card:hover::before {
    transform: scaleY(1);
}

.ab-mvv__icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 55%),
        linear-gradient(135deg, rgba(45, 182, 222, 0.2) 0%, rgba(31, 111, 170, 0.2) 100%);
    border: 1px solid rgba(45, 182, 222, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1F6FAA;
    font-size: 1.45rem;
    margin-bottom: 20px;
    box-shadow:
        0 10px 24px rgba(31, 111, 170, 0.18),
        0 1px 0 rgba(255, 255, 255, 0.85) inset;
    transition: transform 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

/* Ring luminoso pulsando no hover */
.ab-mvv__icon::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    border: 1px solid rgba(45, 182, 222, 0.5);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.ab-mvv__card:hover .ab-mvv__icon {
    color: #0A3A68;
    transform: scale(1.05) rotate(-3deg);
    box-shadow:
        0 14px 30px rgba(45, 182, 222, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.ab-mvv__card:hover .ab-mvv__icon::after {
    opacity: 1;
    transform: scale(1.08) rotate(3deg);
}

.ab-mvv__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #0B1F2A;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}

.ab-mvv__text {
    font-size: 0.96rem;
    line-height: 1.65;
    color: #4A5A63;
    margin: 0;
}

/* --------------------------------------------------------------
   Seção "Por que escolher" — grid 6 benefícios (mini-cards premium)
   -------------------------------------------------------------- */
.ab-why {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    counter-reset: abwhy;
}

.ab-why__item {
    counter-increment: abwhy;
    position: relative;
    display: flex;
    gap: 18px;
    padding: 24px 22px 24px 24px;
    background:
        radial-gradient(260px 120px at 20% 0%, rgba(45, 182, 222, 0.05), transparent 70%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #e7ecf3;
    border-radius: 14px;
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Barra acento vertical à esquerda (animada no hover) */
.ab-why__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    bottom: 22%;
    width: 3px;
    background: linear-gradient(180deg, #2DB6DE 0%, #1F6FAA 100%);
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transform: scaleY(0.3);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Numeração discreta no canto superior direito */
.ab-why__item::after {
    content: "0" counter(abwhy);
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: ui-monospace, "SF Mono", "JetBrains Mono", Consolas, monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #a5b5c4;
    opacity: 0.7;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.ab-why__item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 36px rgba(11, 31, 42, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    border-color: rgba(45, 182, 222, 0.3);
}

.ab-why__item:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.ab-why__item:hover::after {
    color: #2DB6DE;
    opacity: 1;
}

.ab-why__icon {
    position: relative;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 55%),
        linear-gradient(135deg, rgba(45, 182, 222, 0.18) 0%, rgba(31, 111, 170, 0.14) 100%);
    border: 1px solid rgba(45, 182, 222, 0.3);
    color: #1F6FAA;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow:
        0 4px 14px rgba(45, 182, 222, 0.18),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.ab-why__icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 1px solid rgba(45, 182, 222, 0.45);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.ab-why__item:hover .ab-why__icon {
    color: #0A3A68;
    transform: scale(1.05);
    box-shadow:
        0 8px 22px rgba(45, 182, 222, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.ab-why__item:hover .ab-why__icon::after {
    opacity: 1;
    transform: scale(1.05);
}

.ab-why__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: #0B1F2A;
    letter-spacing: -0.01em;
    margin: 0 0 6px;
}

.ab-why__text {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #6b7a82;
    margin: 0;
}

/* --------------------------------------------------------------
   CTA final — banner full-width com gradient do hero
   -------------------------------------------------------------- */
.ab-cta {
    position: relative;
    padding: 90px 24px;
    background:
        radial-gradient(1200px 600px at 85% -10%, rgba(45, 182, 222, 0.35), transparent 60%),
        radial-gradient(900px 500px at 10% 110%, rgba(31, 111, 170, 0.35), transparent 60%),
        linear-gradient(160deg, #0B1F2A 0%, #0A3A68 55%, #1F6FAA 100%);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

/* Grade tecnológica quadriculada (mesma do hero) */
.ab-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 85%);
            mask-image: radial-gradient(ellipse at center, #000 25%, transparent 85%);
    pointer-events: none;
    z-index: 0;
}

/* Glow decorativo no canto superior direito */
.ab-cta::after {
    content: "";
    position: absolute;
    top: -160px;
    right: -120px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle,
        rgba(45, 182, 222, 0.4) 0%,
        rgba(45, 182, 222, 0.18) 35%,
        transparent 70%);
    filter: blur(8px);
    pointer-events: none;
    z-index: 0;
}

/* Conteúdo centralizado (constrói o container por dentro) */
.ab-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

.ab-cta > * {
    position: relative;
    z-index: 1;
}

.ab-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: ui-monospace, monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7DD3EF;
    margin-bottom: 16px;
}

.ab-cta__eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7DD3EF;
    box-shadow: 0 0 8px rgba(125, 211, 239, 0.9);
}

.ab-cta__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin: 0 0 14px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.ab-cta__lead {
    font-size: 1rem;
    line-height: 1.6;
    color: #dbe4f2;
    max-width: 580px;
    margin: 0 auto 28px;
}

.ab-cta__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.ab-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ab-cta__btn--primary {
    background: #ffffff;
    color: #0A3A68;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.ab-cta__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
    color: #0A3A68;
}

.ab-cta__btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.ab-cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

/* --------------------------------------------------------------
   Responsivo
   -------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .ab-section { padding: 60px 0; }
    .ab-intro__grid { grid-template-columns: 1fr; gap: 40px; }
    .ab-mvv,
    .ab-why { grid-template-columns: 1fr 1fr; }
    .ab-cta { padding: 44px 28px; }
}

@media (max-width: 575.98px) {
    .ab-mvv,
    .ab-why,
    .ab-stats { grid-template-columns: 1fr; }
    .ab-cta__actions { flex-direction: column; }
    .ab-cta__btn { width: 100%; justify-content: center; }
}
