/* ===============================
   RESET SEGURO
=============================== */
* {
    box-sizing: border-box;
}

/* ===============================
   SEÇÃO DE CARDS – CORION
=============================== */

.corion-cards-section {
    width: 100%;
    max-width: 1200px;
    margin: 260px auto 40px auto; /* desce abaixo do menu LI */
    padding: 0 20px;
    display: flex;
    gap: 30px;
}

.corion-card {
    flex: 1;
    background: #0b2a3f;
    color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.corion-card:hover {
    transform: translateY(-4px);
}

.corion-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.corion-card h3 {
    font-size: 22px;
    margin: 20px 20px 5px 20px;
}

.corion-card-subtitle {
    font-size: 14px;
    color: #00b4ff;
    margin: 0 20px 15px 20px;
}

.corion-card p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 20px 20px 20px;
    flex-grow: 1;
}

.corion-card-cta {
    margin: 0 20px 25px 20px;
    padding: 12px;
    text-align: center;
    background: #00b4ff;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 600;
}


/* ===============================
   CORION VIDEO – ESTRUTURA BASE
   =============================== */

#corion-video-wrapper,
#corion-video-wrapper * {
  box-sizing: border-box;
}

/* CONTAINER */
#corion-video-wrapper {
  max-width: 1100px;
  margin: 160px auto 60px auto;
  padding: 0 20px;
  text-align: center;
  clear: both;
}

/* TÍTULO */
.corion-video-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

/* DESCRIÇÃO */
.corion-video-desc {
  font-size: 16px;
  color: #555;
  max-width: 820px;
  margin: 0 auto 28px auto;
}

/* VÍDEO */
.corion-video-frame {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px auto;
  padding-top: 56.25%;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
}

.corion-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* THUMBS COM TEXTO */
.corion-video-thumbs {
  display: flex !important;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD DA THUMB */
.corion-thumb {
  width: 180px;
  cursor: pointer;
  text-align: center;
}

.corion-thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 8px;
}

/* TÍTULO THUMB */
.corion-thumb strong {
  display: block;
  font-size: 14px;
  color: #111;
  margin-bottom: 2px;
}

/* LEGENDA */
.corion-thumb span {
  font-size: 12px;
  color: #666;
}

/* HOVER */
.corion-thumb:hover img {
  transform: scale(1.04);
  transition: 0.25s ease;
}

/* MOBILE */
@media (max-width: 768px) {
  #corion-video-wrapper {
    margin-top: 200px;
  }

  .corion-video-title {
    font-size: 24px;
  }

  .corion-thumb {
    width: 140px;
  }

  .corion-thumb img {
    height: 80px;
  }
}

/* ===============================
   MOBILE
   =============================== */

@media (max-width: 768px) {

    .corion-video-section {
        margin-top: 140px;
    }

    .corion-video-thumbs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .corion-thumb {
        min-width: 200px;
    }

    .corion-video-description h2 {
        font-size: 24px;
    }
}
