/* ================================================================
   ALE COPA — CSS Compartilhado (baseado nos widgets ale-* do site)
   Gerado a partir de: ale-pillars.css + ale-apex.css + ale-360.css
   + estilos próprios Copa (intro, respiro, seo)
   ================================================================ */

/* ============ ANIMAÇÕES GLOBAIS ============ */
.ale-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.ale-anim.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.ale-no-anim .ale-anim {
    opacity: 1 !important;
    transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
    .ale-anim { opacity: 1; transform: none; transition: none; }
}
.is-highlight { color: #00AEEF; }


/* ================================================================
   ZIGZAG — baseado em ale-pillars.css
   ================================================================ */
/**
 * Ale Pillars — Zigzag de Segmentos
 * Layout alternado com video hover
 * Padrao ale-* (CSS externo, zero inline)
 */

/* ========== SECTION ========== */
.ale-copa-zigzag {
  padding: 96px 48px;
  background: #FFFFFF;
}

.ale-copa-zigzag__container {
  max-width: 1312px;
  margin: 0 auto;
}

/* ========== HEADER ========== */
.ale-copa-zigzag__header {
  text-align: center;
  margin-bottom: 80px;
}

.ale-copa-zigzag__label {
  display: inline-block;
  color: var(--color-text-brand-primary, #0099D6);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ale-copa-zigzag__title {
  color: #121926;
  font-family: 'Mont', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 110%;
  margin: 0 auto 16px;
  max-width: 720px;
}

.ale-copa-zigzag__title .is-highlight {
  color: var(--color-text-brand-primary, #0099D6);
}

.ale-copa-zigzag__subtitle {
  color: #697586;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 155%;
  margin: 0 auto;
  max-width: 560px;
}

/* ========== ROW (ZIGZAG) ========== */
.ale-copa-zigzag__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.ale-copa-zigzag__row:last-child {
  margin-bottom: 0;
}

/* Reversed: imagem vai pra direita */
.ale-copa-zigzag__row.is-reversed .ale-copa-zigzag__media {
  order: 2;
}

.ale-copa-zigzag__row.is-reversed .ale-copa-zigzag__content {
  order: 1;
}

/* ========== MEDIA (IMG + VIDEO) ========== */
.ale-copa-zigzag__media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.ale-copa-zigzag__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.5s ease;
}

.ale-copa-zigzag__media:hover img {
  transform: scale(1.04);
}

/* Video layer */
.ale-copa-zigzag__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* Hover: crossfade img → video */
.ale-copa-zigzag__media:hover video {
  opacity: 1;
}

.ale-copa-zigzag__media:hover img {
  opacity: 0;
}

/* Borda sutil */
.ale-copa-zigzag__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  pointer-events: none;
  transition: border-color 0.4s ease;
  z-index: 2;
}

.ale-copa-zigzag__media:hover::after {
  border-color: rgba(0, 174, 239, 0.2);
}

/* ========== CONTENT ========== */
.ale-copa-zigzag__content {
  display: flex;
  flex-direction: column;
}

.ale-copa-zigzag__seg-label {
  color: var(--color-text-brand-primary, #0099D6);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ale-copa-zigzag__name {
  color: #121926;
  font-family: 'Mont', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  margin: 0 0 16px;
}

.ale-copa-zigzag__desc {
  color: #697586;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 165%;
  margin: 0 0 28px;
  max-width: 440px;
}

/* ========== TAGS ========== */
.ale-copa-zigzag__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.ale-copa-zigzag__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
  color: #4B5563;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.ale-copa-zigzag__tag:hover {
  border-color: rgba(0, 174, 239, 0.4);
  color: #0099D6;
  background: rgba(0, 174, 239, 0.04);
}

/* Tag com link */
a.ale-copa-zigzag__tag.is-link {
  text-decoration: none;
  cursor: pointer;
}

a.ale-copa-zigzag__tag.is-link:hover {
  border-color: rgba(0, 174, 239, 0.5);
  color: #0099D6;
  background: rgba(0, 174, 239, 0.06);
  box-shadow: 0 2px 8px rgba(0, 174, 239, 0.1);
}

/* ========== CTA ========== */
.ale-copa-zigzag__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-brand-primary, #0099D6);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.ale-copa-zigzag__cta:hover {
  gap: 12px;
}

.ale-copa-zigzag__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.ale-copa-zigzag__cta:hover svg {
  transform: translateX(4px);
}

/* ========== ANIMACAO DE ENTRADA ========== */
.ale-copa-zigzag__row.ale-anim,
.ale-copa-zigzag__header .ale-anim {
  opacity: 0;
  transform: translateY(30px);
}

.ale-copa-zigzag__row.ale-anim.is-visible,
.ale-copa-zigzag__header .ale-anim.is-visible {
  animation: alePillarFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ale-copa-zigzag__row.ale-anim.is-visible {
  animation-delay: var(--row-delay, 0s);
}

@keyframes alePillarFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Editor — sem animacao */
.ale-no-anim .ale-anim {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* ========== RESPONSIVO ========== */

@media (max-width: 1024px) {
  .ale-copa-zigzag {
    padding: 80px 32px;
  }

  .ale-copa-zigzag__title {
    font-size: 40px;
  }

  .ale-copa-zigzag__row {
    gap: 40px;
  }

  .ale-copa-zigzag__name {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .ale-copa-zigzag {
    padding: 64px 20px;
  }

  .ale-copa-zigzag__title {
    font-size: 32px;
  }

  .ale-copa-zigzag__row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }

  /* Mobile: desfaz o reversed */
  .ale-copa-zigzag__row.is-reversed .ale-copa-zigzag__media {
    order: 1;
  }

  .ale-copa-zigzag__row.is-reversed .ale-copa-zigzag__content {
    order: 2;
  }

  .ale-copa-zigzag__name {
    font-size: 28px;
  }

  .ale-copa-zigzag__header {
    margin-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .ale-copa-zigzag {
    padding: 48px 16px;
  }

  .ale-copa-zigzag__title {
    font-size: 28px;
  }

  .ale-copa-zigzag__name {
    font-size: 24px;
  }

  .ale-copa-zigzag__desc {
    font-size: 15px;
  }

  .ale-copa-zigzag__subtitle {
    font-size: 16px;
  }
}

/* ================================================================
   APEX — baseado em ale-apex.css
   ================================================================ */
/* ===========================================
   ALE APEX — P1APEX One
   =========================================== */

/* ======================
   SECAO
   ====================== */
.ale-copa-apex {
    position: relative;
    overflow: hidden;
    background: #060D20;
    min-height: 786px;
    padding-top: 90px;
}

/* ======================
   FUNDO
   ====================== */
.ale-copa-apex__bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.ale-copa-apex.is-in-view .ale-copa-apex__bg {
    opacity: 1;
}

/* ======================
   PARALLAX — moça PNG
   ====================== */
.ale-copa-apex__parallax {
    position: absolute !important;
    right: -141px !important;
    bottom: -153px !important;
    top: auto !important;
    left: auto !important;
    height: 800px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: right bottom !important;
    z-index: 1;
    will-change: transform;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.5s ease 0.3s;
}

.ale-copa-apex.is-in-view .ale-copa-apex__parallax {
    opacity: 1;
}

/* ======================
   OVERLAY — azul escuro, aparece suave
   ====================== */
.ale-copa-apex__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(6, 13, 32, 0.92) 0%,
        rgba(6, 13, 32, 0.8) 40%,
        rgba(6, 13, 32, 0.45) 65%,
        rgba(6, 13, 32, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 1s ease 0.5s;
}

.ale-copa-apex.is-in-view .ale-copa-apex__overlay {
    opacity: 1;
}

/* ======================
   CONTAINER
   ====================== */
.ale-copa-apex__container {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px 56px;
}

/* ======================
   HEADER
   ====================== */
.ale-copa-apex__header {
    margin-bottom: 24px;
}

.ale-copa-apex__logo {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.6s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.ale-copa-apex.is-in-view .ale-copa-apex__logo {
    opacity: 1;
    transform: translateY(0);
}

.ale-copa-apex__title {
    font-family: 'Mont', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.75s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.75s;
}

.ale-copa-apex.is-in-view .ale-copa-apex__title {
    opacity: 1;
    transform: translateY(0);
}

/* ======================
   BODY
   ====================== */
.ale-copa-apex__body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* ======================
   FEATURES
   ====================== */
.ale-copa-apex__features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 48%;
    flex-shrink: 0;
}

.ale-copa-apex__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(15px);
}

/* Cada feature entra com delay escalonado */
.ale-copa-apex.is-in-view .ale-copa-apex__feature {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease var(--feat-delay, 0.9s),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) var(--feat-delay, 0.9s),
                background 0.3s ease,
                border-color 0.3s ease;
}

.ale-copa-apex__feature:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 153, 214, 0.3);
    transform: translateX(6px) !important;
}

.ale-copa-apex__feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.ale-copa-apex__feature-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ale-copa-apex__feature:hover .ale-copa-apex__feature-icon img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(0, 153, 214, 0.5));
    transform: scale(1.15);
}

.ale-copa-apex__feature-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 2px;
}

.ale-copa-apex__feature-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
}

/* ======================
   TEXTO DESTAQUE
   ====================== */
.ale-copa-apex__right {
    max-width: 320px;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.7s ease 1.6s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.6s;
}

.ale-copa-apex.is-in-view .ale-copa-apex__right {
    opacity: 1;
    transform: translateY(0);
}

.ale-copa-apex__highlight {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ======================
   SELOS
   ====================== */
.ale-copa-apex__seals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    padding-top: 16px;
    opacity: 0;
    transition: opacity 0.7s ease 1.8s;
}

.ale-copa-apex.is-in-view .ale-copa-apex__seals {
    opacity: 1;
}

.ale-copa-apex__seal {
    height: 20px;
    width: auto;
    opacity: 0.45;
    filter: brightness(0) invert(1);
}

.ale-copa-apex__seal-logo {
    height: 22px;
    width: auto;
}

/* ======================
   EDITOR — tudo visivel
   ====================== */
.ale-copa-apex.ale-no-anim,
.ale-copa-apex.ale-no-anim .ale-copa-apex__bg,
.ale-copa-apex.ale-no-anim .ale-copa-apex__parallax,
.ale-copa-apex.ale-no-anim .ale-copa-apex__overlay,
.ale-copa-apex.ale-no-anim .ale-copa-apex__logo,
.ale-copa-apex.ale-no-anim .ale-copa-apex__title,
.ale-copa-apex.ale-no-anim .ale-copa-apex__feature,
.ale-copa-apex.ale-no-anim .ale-copa-apex__right,
.ale-copa-apex.ale-no-anim .ale-copa-apex__seals {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ======================
   TABLET
   ====================== */
@media (max-width: 1024px) {
    .ale-copa-apex__container {
        padding: 0 32px 48px;
    }

    .ale-copa-apex__features {
        width: 55%;
    }

    .ale-copa-apex__parallax {
        height: 500px !important;
        opacity: 0.5;
    }

    .ale-copa-apex__body {
        flex-direction: column;
        align-items: flex-start;
    }

    .ale-copa-apex__right {
        margin-top: 20px;
        max-width: 100%;
    }
}

/* ======================
   MOBILE
   ====================== */
@media (max-width: 767px) {
    .ale-copa-apex {
        min-height: auto;
        padding-top: 48px;
    }

    .ale-copa-apex__container {
        padding: 0 24px 40px;
    }

    .ale-copa-apex__logo {
        height: 32px;
    }

    .ale-copa-apex__title {
        font-size: 16px;
    }

    .ale-copa-apex__features {
        width: 100%;
    }

    .ale-copa-apex__feature {
        padding: 10px 14px;
        gap: 10px;
    }

    .ale-copa-apex__feature-title {
        font-size: 11px;
    }

    .ale-copa-apex__feature-desc {
        font-size: 11px;
    }

    .ale-copa-apex__body {
        flex-direction: column;
        align-items: flex-start;
    }

    .ale-copa-apex__right {
        margin-top: 16px;
        max-width: 100%;
        text-align: center;
    }

    .ale-copa-apex__highlight {
        font-size: 13px;
    }

    .ale-copa-apex__parallax {
        display: none !important;
    }

    .ale-copa-apex__overlay {
        background: rgba(6, 13, 32, 0.88) !important;
    }

    .ale-copa-apex__seals {
        flex-wrap: wrap;
        gap: 14px;
    }

    .ale-copa-apex__seal {
        height: 16px;
    }
}

/* ================================================================
   360 — baseado em ale-360.css
   ================================================================ */
/**
 * Ale 360 — Institucional + Solucoes 360
 * Imagem de fundo a direita com overlay branco
 * Padrao ale-* (CSS externo, zero inline)
 */

/* ========== SECTION ========== */
.ale-copa-360 {
  padding: 120px 48px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Imagem de fundo — direita, alinhada ao topo */
.ale-copa-360__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: auto;
  object-fit: contain;
  object-position: right top;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* Overlay branco: 100% esquerda → 30% direita */
.ale-copa-360__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fff 50%, rgba(255, 255, 255, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Container */
.ale-copa-360__container {
  max-width: 1312px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ========== HEADER ========== */
.ale-copa-360__header {
  text-align: center;
  margin-bottom: 72px;
}

.ale-copa-360__label {
  display: inline-block;
  color: var(--color-text-brand-primary, #0099D6);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ale-copa-360__title {
  color: #121926;
  font-family: 'Mont', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 115%;
  margin: 0 auto 16px;
  max-width: 700px;
  letter-spacing: -0.02em;
}

.ale-copa-360__title .is-highlight {
  color: var(--color-text-brand-primary, #0099D6);
}

.ale-copa-360__subtitle {
  color: #697586;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 160%;
  max-width: 560px;
  margin: 0 auto;
}

/* ========== GRID ========== */
.ale-copa-360__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* ========== CARD ========== */
.ale-copa-360__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ale-copa-360__card:hover {
  border-color: rgba(0, 174, 239, 0.3);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 174, 239, 0.08);
}

/* Icone */
.ale-copa-360__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(0, 174, 239, 0.08);
  border: 1px solid rgba(0, 174, 239, 0.15);
  margin-bottom: 20px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.ale-copa-360__card:hover .ale-copa-360__icon {
  background: rgba(0, 174, 239, 0.15);
  border-color: rgba(0, 174, 239, 0.3);
}

.ale-copa-360__icon svg {
  width: 28px;
  height: 28px;
  stroke: #0099D6;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Textos */
.ale-copa-360__card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #121926;
  margin-bottom: 8px;
  line-height: 135%;
}

.ale-copa-360__card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #697586;
  line-height: 155%;
}

/* ========== FECHAMENTO ========== */
.ale-copa-360__closing {
  text-align: center;
  padding-top: 16px;
}

.ale-copa-360__closing-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 145%;
}

.ale-copa-360__closing-text .is-highlight {
  color: var(--color-text-brand-primary, #0099D6);
  font-weight: 600;
}

.ale-copa-360__closing-text .is-dark {
  color: #121926;
  font-weight: 400;
}

/* ========== ANIMACAO ========== */
.ale-copa-360__card.ale-anim,
.ale-copa-360__header .ale-anim,
.ale-copa-360__closing.ale-anim {
  opacity: 0;
  transform: translateY(30px);
}

.ale-copa-360__card.ale-anim.is-visible,
.ale-copa-360__header .ale-anim.is-visible,
.ale-copa-360__closing.ale-anim.is-visible {
  animation: ale360FadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ale-copa-360__card.ale-anim.is-visible {
  animation-delay: var(--card-delay, 0s);
}

@keyframes ale360FadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ale-no-anim .ale-anim {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1024px) {
  .ale-copa-360 { padding: 80px 32px; }
  .ale-copa-360__title { font-size: 36px; }
  .ale-copa-360__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .ale-copa-360 { padding: 64px 20px; }
  .ale-copa-360__title { font-size: 30px; }
  .ale-copa-360__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ale-copa-360__bg { width: 70%; opacity: 0.2; }
}

@media (max-width: 480px) {
  .ale-copa-360 { padding: 48px 16px; }
  .ale-copa-360__title { font-size: 26px; }
  .ale-copa-360__grid { grid-template-columns: 1fr; }
  .ale-copa-360__card { padding: 28px 20px; }
  .ale-copa-360__bg { display: none; }
}

/* ================================================================
   COPA INTRO — Header + Grid 5 cols + Setinha
   ================================================================ */
.ale-copa-intro {
    background: #0D121C;
    padding: 96px 48px 64px;
}
.ale-copa-intro__container {
    max-width: 1312px;
    margin: 0 auto;
}

/* Header */
.ale-copa-intro__header {
    margin-bottom: 48px;
}
.ale-copa-intro__label {
    display: inline-block;
    color: #0099D6;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.ale-copa-intro__title {
    font-family: 'Mont', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #EFF4F6;
    margin: 0 0 20px;
    max-width: 860px;
}
.ale-copa-intro__title .is-highlight {
    color: #0099D6;
}
.ale-copa-intro__sub {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    max-width: 680px;
    margin: 0;
}

/* Grid 5 colunas */
.ale-copa-intro__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

/* Card */
.ale-copa-intro__card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    min-height: 280px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ale-copa-intro__card:hover {
    transform: translateY(-4px);
}

/* Imagens dentro do card */
.ale-copa-intro__card-imgs {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 0;
}
.ale-copa-intro__card-imgs img {
    flex: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ale-copa-intro__card:hover .ale-copa-intro__card-imgs img {
    transform: scale(1.04);
}

/* Overlay */
.ale-copa-intro__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(6,13,32,0.7) 40%, rgba(6,13,32,0.95) 100%);
    z-index: 2;
}
.ale-copa-intro__card-badge {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 8px;
}
.ale-copa-intro__card-title {
    font-family: 'Mont', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0099D6;
    margin: 0 0 6px;
    line-height: 1.2;
}
.ale-copa-intro__card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin: 0;
}

/* Dado 61% */
.ale-copa-intro__stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
}
.ale-copa-intro__stat-number {
    font-family: 'Mont', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: #0099D6;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.ale-copa-intro__stat-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #EFF4F6;
    line-height: 1.45;
    margin: 0;
}

/* CTA + Setinha animada (rodapé) */
.ale-copa-intro__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 48px;
    padding-top: 32px;
}
.ale-copa-intro__cta-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #0099D6;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}
.ale-copa-intro__cta-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0099D6;
    transition: width 0.4s ease;
}
.ale-copa-intro__cta-text:hover::after {
    width: 100%;
}

/* Setinha animada (igual ale-branding) */
.ale-copa-intro__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 8px;
}
.ale-copa-intro__arrow-track {
    width: 2px;
    height: 40px;
    background: rgba(0, 153, 214, 0.15);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}
.ale-copa-intro__arrow-dot {
    width: 2px;
    height: 12px;
    background: #0099D6;
    border-radius: 1px;
    position: absolute;
    top: -12px;
    left: 0;
    box-shadow: 0 0 6px rgba(0, 153, 214, 0.5);
}
.ale-copa-intro__arrow.is-visible .ale-copa-intro__arrow-dot,
.ale-no-anim .ale-copa-intro__arrow-dot {
    animation: aleCopaIntroArrowDrop 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s infinite;
}
@keyframes aleCopaIntroArrowDrop {
    0% { top: -12px; opacity: 0; }
    10% { opacity: 1; }
    70% { top: 40px; opacity: 1; }
    100% { top: 40px; opacity: 0; }
}
.ale-copa-intro__arrow-chevron {
    margin-top: 4px;
    opacity: 0.5;
}
.ale-copa-intro__arrow.is-visible .ale-copa-intro__arrow-chevron,
.ale-no-anim .ale-copa-intro__arrow-chevron {
    animation: aleCopaIntroChevronBounce 1.8s ease-in-out 0.6s infinite;
}
@keyframes aleCopaIntroChevronBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(4px); opacity: 1; }
}

/* Responsivo */
@media (max-width: 1024px) {
    .ale-copa-intro { padding: 80px 32px 48px; }
    .ale-copa-intro__grid { grid-template-columns: repeat(4, 1fr); }
    .ale-copa-intro__card[style*="span 3"] { grid-column: span 2 !important; }
    .ale-copa-intro__stat { grid-column: span 2 !important; }
}
@media (max-width: 768px) {
    .ale-copa-intro { padding: 64px 20px 40px; }
    .ale-copa-intro__grid { grid-template-columns: 1fr; }
    .ale-copa-intro__card,
    .ale-copa-intro__stat { grid-column: span 1 !important; }
    .ale-copa-intro__card { min-height: 220px; }
}

/* ================================================================
   COPA SEO — Texto + Ler mais
   ================================================================ */
.ale-copa-seo {
    background: #E8F1F5;
    padding: 80px 48px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.ale-copa-seo__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.ale-copa-seo__title {
    font-family: 'Mont', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0B1B3A;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.ale-copa-seo__text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #5A6B7D;
    line-height: 1.7;
}
.ale-copa-seo__hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.ale-copa-seo__hidden.is-open {
    max-height: 400px;
}
.ale-copa-seo__hidden .ale-copa-seo__text {
    margin-top: 16px;
}
.ale-copa-seo__toggle {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #00AEEF;
    cursor: pointer;
    margin-top: 14px;
    background: none;
    border: none;
    padding: 0;
    transition: opacity 0.3s;
}
.ale-copa-seo__toggle:hover { opacity: 0.7; }



/* ================================================================
   COPA RESPIRO — Banner "Quando tudo trabalha junto" + selos
   ================================================================ */
.ale-copa-respiro {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ale-copa-respiro__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ale-copa-respiro__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ale-copa-respiro__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(6, 13, 32, 0.6) 0%,
        rgba(6, 13, 32, 0.75) 50%,
        rgba(6, 13, 32, 0.85) 100%
    );
}

.ale-copa-respiro__container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 48px;
    text-align: center;
}

.ale-copa-respiro__title {
    font-family: 'Mont', sans-serif;
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    font-style: italic;
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 24px;
}

.ale-copa-respiro__sub {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 48px;
}

/* Selos / Certificações */
.ale-copa-respiro__seals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.ale-copa-respiro__seal {
    height: 28px;
    width: auto;
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.ale-copa-respiro__seal:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .ale-copa-respiro__container { padding: 60px 24px; }
    .ale-copa-respiro__seals { gap: 20px; }
    .ale-copa-respiro__seal { height: 22px; }
}

/* === RESPIRO: 4 Cards componentes === */
.ale-copa-respiro__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
    margin-bottom: 48px;
}
.ale-copa-respiro__card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ale-copa-respiro__card:hover {
    border-color: rgba(0, 174, 239, 0.35);
    background: rgba(0, 174, 239, 0.06);
    transform: translateY(-4px);
}
.ale-copa-respiro__card-tag {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00AEEF;
    padding: 5px 14px;
    border: 1px solid rgba(0,174,239,0.3);
    border-radius: 100px;
    background: rgba(0,174,239,0.08);
    margin-bottom: 16px;
}
.ale-copa-respiro__card-title {
    font-family: 'Mont', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.25;
}
.ale-copa-respiro__card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 1024px) {
    .ale-copa-respiro__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ale-copa-respiro__cards { grid-template-columns: 1fr; }
}
