/* =============================================
   MISSÃO 193 - SEÇÕES DA HOME
   Paleta: Laranja #ff7700 + Preto #000000
   ============================================= */

/* -----------------------------------------------
   SHARED SECTION STYLES
   ----------------------------------------------- */
.m193-section {
    padding: 5rem 0;
    position: relative;
}

.m193-section--black { background: #000000; }
.m193-section--dark  { background: #080808; }
.m193-section--mid   { background: #0f0f0f; }

.m193-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.m193-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    background: rgba(255, 119, 0, 0.12);
    color: #ff7700;
    border: 1px solid rgba(255, 119, 0, 0.35);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.m193-title {
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.m193-title .accent { color: #ff7700; }

.m193-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* -----------------------------------------------
   1. PLATFORM RESOURCES — "Tudo que você precisa"
   ----------------------------------------------- */
.platform-resources {
    background: #000000;
    padding: 5rem 0 4rem;
}

.platform-resources::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(255,119,0,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 35% at 80% 50%, rgba(255,119,0,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.platform-resources .container { position: relative; z-index: 1; }

.pr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.pr-card {
    background: linear-gradient(135deg, rgba(255,119,0,0.07) 0%, rgba(255,119,0,0.02) 100%);
    border: 1px solid rgba(255, 119, 0, 0.2);
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: all 0.3s ease;
    cursor: default;
}

.pr-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(255,119,0,0.12) 0%, rgba(255,119,0,0.05) 100%);
    border-color: rgba(255, 119, 0, 0.45);
    box-shadow: 0 12px 35px rgba(255, 119, 0, 0.18);
}

.pr-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff7700 0%, #cc5f00 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(255, 119, 0, 0.35);
}

.pr-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
}

.pr-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1100px) {
    .pr-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .pr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .pr-grid { grid-template-columns: 1fr; }
    .platform-resources { padding: 3.5rem 0 3rem; }
}

/* -----------------------------------------------
   2. PLATFORM EXCLUSIVE — Dispositivos + Texto
   ----------------------------------------------- */
.platform-exclusive {
    background: #080808;
    padding: 5rem 0;
    overflow: hidden;
}

.pe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pe-content { order: 1; }
.pe-visual  { order: 2; }

.pe-title {
    color: #ffffff;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.pe-title .accent { color: #ff7700; }

.pe-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.pe-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.pe-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pe-check-item .check-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #ff7700, #cc5f00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #fff;
    flex-shrink: 0;
    margin-top: 1px;
}

.pe-image-slot {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(255,119,0,0.08) 0%, rgba(0,0,0,0.4) 100%);
    border: 2px dashed rgba(255, 119, 0, 0.3);
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 119, 0, 0.5);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.pe-image-slot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.2rem;
}

.pe-image-slot .slot-label {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1rem;
}

.pe-image-slot i { font-size: 2.5rem; opacity: 0.5; }

.pe-bottom-block {
    margin-top: 4.5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 119, 0, 0.15);
}

.pe-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pe-platform-title {
    color: #ff7700;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.pe-platform-heading {
    color: #ffffff;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.pe-platform-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.8;
}

.pe-platform-image-slot {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(255,119,0,0.06) 0%, rgba(0,0,0,0.5) 100%);
    border: 2px dashed rgba(255, 119, 0, 0.25);
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 119, 0, 0.4);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.pe-platform-image-slot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.2rem;
}

.pe-platform-image-slot i { font-size: 2rem; opacity: 0.4; }

@media (max-width: 900px) {
    .pe-grid, .pe-bottom-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .pe-visual { order: -1; }
    .platform-exclusive { padding: 3.5rem 0; }
}

/* -----------------------------------------------
   3. COMPARISON — A diferença para sua aprovação
   ----------------------------------------------- */
.comparison-section {
    background: #000000;
    padding: 5rem 0;
    position: relative;
}

.comparison-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255,119,0,0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Panel shared */
.comp-panel {
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Panel — Outros cursos */
.comp-panel--others {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.comp-panel--others .comp-panel-header {
    background: #1a1a1a;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comp-panel--others .comp-panel-icon {
    width: 42px;
    height: 42px;
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 1.1rem;
}

.comp-panel--others .comp-panel-title {
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
    font-weight: 700;
}

.comp-panel--others .comp-panel-sub {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    margin-top: 0.1rem;
}

.comp-panel--others .comp-panel-body {
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.comp-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.comp-item--bad  { color: rgba(255,255,255,0.45); }
.comp-item--good { color: rgba(255,255,255,0.9); }

.comp-item-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.comp-item--bad  .comp-item-icon { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.25); }
.comp-item--good .comp-item-icon { background: linear-gradient(135deg,#ff7700,#cc5f00); color: #fff; box-shadow: 0 2px 8px rgba(255,119,0,0.3); }

/* Panel — Missão 193 */
.comp-panel--missao {
    background: linear-gradient(160deg, #1a0a00 0%, #0f0600 40%, #000000 100%);
    border: 1px solid rgba(255, 119, 0, 0.35);
    box-shadow: 0 0 60px rgba(255,119,0,0.1);
}

.comp-panel--missao .comp-panel-header {
    background: linear-gradient(135deg, rgba(255,119,0,0.18) 0%, rgba(204,95,0,0.12) 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,119,0,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comp-panel--missao .comp-panel-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #ff7700, #cc5f00);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(255,119,0,0.4);
}

.comp-panel--missao .comp-panel-title {
    color: #ff7700;
    font-size: 1.05rem;
    font-weight: 800;
}

.comp-panel--missao .comp-panel-sub {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin-top: 0.1rem;
}

.comp-panel--missao .comp-panel-body {
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

@media (max-width: 768px) {
    .comparison-grid { grid-template-columns: 1fr; }
    .comparison-section { padding: 3.5rem 0; }
    .comp-panel--others .comp-panel-body,
    .comp-panel--missao .comp-panel-body,
    .comp-panel--others .comp-panel-header,
    .comp-panel--missao .comp-panel-header { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* -----------------------------------------------
   4. TESTIMONIALS — "O que os alunos acham"
   ----------------------------------------------- */
.testimonials-m193 {
    background: #080808;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-m193::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255,119,0,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-m193 .container { position: relative; z-index: 1; }

.tm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tm-card {
    background: #111111;
    border: 1px solid rgba(255, 119, 0, 0.15);
    border-radius: 1.25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.tm-card:hover {
    border-color: rgba(255, 119, 0, 0.35);
    box-shadow: 0 10px 30px rgba(255,119,0,0.12);
    transform: translateY(-3px);
}

.tm-stars {
    display: flex;
    gap: 3px;
}

.tm-stars i { color: #ff7700; font-size: 0.875rem; }

.tm-image-slot {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(255,119,0,0.05);
    border: 1px dashed rgba(255,119,0,0.2);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,119,0,0.4);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.tm-image-slot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.7rem;
}

.tm-image-slot i { font-size: 1.5rem; opacity: 0.35; }

.tm-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.tm-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.tm-avatar-initials {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7700, #cc5f00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(255,119,0,0.35);
    letter-spacing: 0.03em;
}

.tm-author-name {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    display: block;
}

.tm-author-role {
    color: #ff7700;
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
}

@media (max-width: 900px) {
    .tm-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .tm-grid { grid-template-columns: 1fr; }
    .testimonials-m193 { padding: 3.5rem 0; }
}

/* -----------------------------------------------
   5. WHAT YOU GET — "Veja o que você vai receber"
   ----------------------------------------------- */
.what-you-get {
    background: #000000;
    padding: 5rem 0 4rem;
    position: relative;
}

.what-you-get::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,119,0,0.4), transparent);
}

.wyg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.wyg-card {
    background: #0c0c0c;
    border: 1px solid rgba(255, 119, 0, 0.18);
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.wyg-card:hover {
    border-color: rgba(255, 119, 0, 0.4);
    box-shadow: 0 15px 40px rgba(255,119,0,0.15);
    transform: translateY(-4px);
}

.wyg-image-slot {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(255,119,0,0.08) 0%, rgba(0,0,0,0.6) 100%);
    border-bottom: 1px solid rgba(255,119,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,119,0,0.4);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    overflow: hidden;
}

.wyg-image-slot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wyg-image-slot i { font-size: 2rem; opacity: 0.35; }

.wyg-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.wyg-badge-bonus {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.7rem;
    background: rgba(255,119,0,0.12);
    color: #ff7700;
    border: 1px solid rgba(255,119,0,0.3);
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width: fit-content;
}

.wyg-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #ff7700, #cc5f00);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 3px 10px rgba(255,119,0,0.3);
    margin-top: 0.25rem;
}

.wyg-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.wyg-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

@media (max-width: 992px) {
    .wyg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .wyg-grid { grid-template-columns: 1fr; }
    .what-you-get { padding: 3.5rem 0 3rem; }
}

/* -----------------------------------------------
   6. CTA STRIP — Faixa laranja entre seções
   ----------------------------------------------- */
.cta-strip {
    background: linear-gradient(135deg, #ff7700 0%, #cc5f00 100%);
    padding: 3.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-strip .container { position: relative; z-index: 1; }

.cta-strip-title {
    color: #ffffff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-strip-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-strip .btn-white {
    background: #ffffff;
    color: #cc5f00;
    font-weight: 800;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-strip .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    background: #fff7f0;
}

/* -----------------------------------------------
   7. SECTION DIVIDER — Linha decorativa
   ----------------------------------------------- */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,119,0,0.3), transparent);
}

/* -----------------------------------------------
   8. STUDY GROUPS — Grupos de Estudos
   ----------------------------------------------- */
.study-groups {
    background: #080808;
    padding: 5rem 0;
    position: relative;
}

.study-groups::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255,119,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.study-groups .container { position: relative; z-index: 1; }

/* Grid: 5 colunas no desktop */
.sg-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

/* Card */
.sg-card {
    display: flex;
    flex-direction: column;
    background: #111111;
    border: 1px solid rgba(255,119,0,0.18);
    border-radius: 1.1rem;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sg-card:hover {
    border-color: rgba(255,119,0,0.5);
    box-shadow: 0 16px 45px rgba(255,119,0,0.18);
    transform: translateY(-5px);
}

/* Imagem */
.sg-card__img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: rgba(255,119,0,0.06);
}

.sg-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.sg-card:hover .sg-card__img-wrap img {
    transform: scale(1.06);
}

/* Overlay ao hover */
.sg-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sg-card:hover .sg-card__overlay {
    opacity: 1;
}

.sg-card__overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: #25D366;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 9999px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    white-space: nowrap;
}

.sg-card__overlay-btn i { font-size: 1rem; }

/* Body do card */
.sg-card__body {
    padding: 1.1rem 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.sg-card__sigla {
    display: inline-block;
    color: #ff7700;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sg-card__nome {
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.sg-card__cta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #25D366;
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 0.5rem;
    transition: gap 0.2s ease;
}

.sg-card:hover .sg-card__cta { gap: 0.7rem; }

.sg-card__cta i:first-child { font-size: 0.95rem; }

.sg-card__arrow {
    margin-left: auto;
    font-size: 0.65rem;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.sg-card:hover .sg-card__arrow { transform: translateX(3px); opacity: 1; }

/* Responsivo */
@media (max-width: 1100px) {
    .sg-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
    .sg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .study-groups { padding: 3.5rem 0; }
}

@media (max-width: 420px) {
    .sg-grid { grid-template-columns: 1fr; }
}

/* -----------------------------------------------
   OVERRIDE — cursos section no contexto da home
   ----------------------------------------------- */
.courses {
    background: #0a0a0a !important;
}

.courses .section-badge {
    background: rgba(255,119,0,0.12) !important;
    color: #ff7700 !important;
    border: 1px solid rgba(255,119,0,0.3) !important;
}

.courses .section-title {
    color: #ffffff !important;
}

.courses .text-highlight {
    color: #ff7700 !important;
}

.courses .section-subtitle {
    color: rgba(255,255,255,0.6) !important;
}

.courses .courses-cta .btn-outline {
    border-color: rgba(255,119,0,0.5) !important;
    color: #ff7700 !important;
}

.courses .courses-cta .btn-outline:hover {
    background: rgba(255,119,0,0.1) !important;
}
