/*
 * Colégio Social de Jequié — identidade 2026
 * Camada visual pública. A lógica PHP, consultas e contratos de formulário
 * permanecem nos arquivos originais.
 */

:root {
    --social-cyan: #00a3e0;
    --social-cyan-bright: #18c8f4;
    --social-blue: #0878bd;
    --social-navy: #072f55;
    --social-navy-deep: #041f3a;
    --social-sky: #eaf9ff;
    --social-yellow: #ffc83d;
    --social-white: #ffffff;
    --social-ink: #10263a;
    --social-muted: #607487;
    --social-line: rgba(7, 47, 85, .1);
    --social-shadow: 0 24px 70px rgba(7, 47, 85, .14);
    --social-shadow-soft: 0 12px 35px rgba(7, 47, 85, .09);
    --social-radius-xl: 32px;
    --social-radius-lg: 24px;
    --social-radius-md: 16px;
    --social-transition: 300ms cubic-bezier(.2, .8, .2, 1);
}

html {
    scroll-behavior: smooth;
}

body.social-modern {
    margin: 0;
    overflow-x: hidden;
    color: var(--social-ink);
    background:
        radial-gradient(circle at 8% 18%, rgba(24, 200, 244, .08), transparent 24rem),
        #fff;
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.social-modern *,
.social-modern *::before,
.social-modern *::after {
    box-sizing: border-box;
}

.social-modern a {
    transition: color var(--social-transition), background var(--social-transition),
        border-color var(--social-transition), transform var(--social-transition),
        box-shadow var(--social-transition), opacity var(--social-transition);
}

.social-modern img {
    max-width: 100%;
}

.social-modern ::selection {
    color: #fff;
    background: var(--social-blue);
}

.social-modern .container {
    width: min(100% - 40px, 1240px);
    max-width: 1240px;
}

.social-modern h1,
.social-modern h2,
.social-modern h3,
.social-modern h4,
.social-modern h5,
.social-modern h6 {
    color: var(--social-navy);
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    letter-spacing: -.035em;
}

.social-modern p {
    color: var(--social-muted);
}

.social-modern .section-title h2,
.social-modern .section-title-2 h2 {
    color: var(--social-navy);
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.055em;
}

.social-modern .section-title h2 span,
.social-modern .section-title-2 h2 span,
.social-modern .widget-title span {
    color: var(--social-cyan);
}

.social-modern .section-title .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--social-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2em;
}

.social-modern .section-title .subtitle::before {
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: var(--social-yellow);
    content: "";
}

.social-modern .text-gradiant,
.social-modern .gradient-bg {
    color: var(--social-cyan);
    background: linear-gradient(135deg, var(--social-cyan), var(--social-blue));
}

/* Header */
.social-modern .header_3 {
    position: relative;
    z-index: 9999 !important;
    overflow: visible;
    padding: 0 !important;
    border-top: 4px solid var(--social-cyan);
    background:
        radial-gradient(circle at 8% 18%, rgba(24, 200, 244, .17), transparent 16rem),
        radial-gradient(circle at 91% 18%, rgba(255, 200, 61, .16), transparent 17rem),
        linear-gradient(120deg, #f8fdff 0%, #eef9ff 52%, #fffdf5 100%) !important;
    box-shadow: 0 8px 35px rgba(7, 47, 85, .07);
}

.social-modern .header_3::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 163, 224, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 163, 224, .035) 1px, transparent 1px);
    background-size: 32px 32px;
    content: "";
    pointer-events: none;
}

.social-modern .header_3::after {
    position: absolute;
    top: -105px;
    right: 10%;
    width: 240px;
    height: 240px;
    border: 42px solid rgba(24, 200, 244, .06);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.social-modern .header_3 .container {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, 1320px);
    max-width: 1320px;
}

.social-modern .header_3 .navbar-default {
    display: grid;
    grid-template-columns: minmax(230px, 290px) 1fr;
    align-items: center;
    gap: 16px 30px;
    height: auto !important;
    min-height: 142px;
    padding: 15px 0 12px;
}

.social-modern .header_3 .navbar-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    float: none !important;
}

.social-modern .header_3 .navbar-brand {
    display: inline-flex;
    align-items: center;
    height: auto;
    padding: 0;
}

.social-modern .header_3 .navbar-brand img {
    width: min(100%, 270px);
    max-height: 94px !important;
    object-fit: contain;
}

.social-modern .social-brand-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 5px 0 0 13px;
    color: var(--social-navy);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.social-modern .social-brand-tagline::before {
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--social-yellow);
    content: "";
}

.social-modern .header-info {
    display: flex;
    justify-content: flex-end;
    margin: 0 !important;
}

.social-modern .header-info > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.social-modern .header-info li {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: auto;
    min-height: 74px;
    margin: 0;
    padding: 9px 13px;
    border: 1px solid rgba(7, 47, 85, .09);
    border-radius: 19px;
    background: rgba(255, 255, 255, .82);
    box-shadow:
        0 14px 32px rgba(7, 47, 85, .08),
        inset 0 1px 0 rgba(255, 255, 255, .9);
    transition:
        transform 300ms ease,
        border-color 300ms ease,
        box-shadow 300ms ease;
    backdrop-filter: blur(10px);
}

.social-modern .header-info li:first-child {
    display: flex;
}

.social-modern .header-info li:hover {
    border-color: rgba(0, 163, 224, .25);
    transform: translateY(-4px);
    box-shadow:
        0 20px 42px rgba(7, 47, 85, .13),
        inset 0 1px 0 #fff;
}

.social-modern .header-info .social-contact-card::after {
    position: absolute;
    right: 16px;
    bottom: 0;
    left: 16px;
    display: block;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--social-cyan), var(--social-blue));
    content: "";
}

.social-modern .header-info .mail-phone {
    display: flex;
    align-items: center;
    width: 100%;
}

.social-modern .header-info .mail-phone .info-icon {
    display: grid;
    flex: 0 0 48px;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-right: 12px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 15px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .32), transparent 38%),
        linear-gradient(145deg, var(--social-cyan), var(--social-blue));
    box-shadow: 0 12px 24px rgba(0, 137, 204, .18);
    line-height: 1;
}

.social-modern .header-info li i {
    color: #fff;
    font-size: 19px;
    line-height: 1;
}

.social-modern .header-info .info-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.social-modern .header-info .info-label {
    margin-bottom: 2px;
    color: var(--social-blue);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.social-modern .header-info .info-id {
    color: var(--social-navy);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.social-modern .header-info .info-text {
    color: var(--social-muted);
    font-size: 10px;
    line-height: 1.3;
}

.social-modern .header-info > ul > li > a {
    display: flex;
    align-items: center;
    color: var(--social-navy);
}

.social-modern .header-info .social-contact-card--whatsapp {
    border-color: rgba(23, 174, 87, .18);
    background:
        radial-gradient(circle at 100% 0, rgba(37, 211, 102, .13), transparent 7rem),
        rgba(247, 255, 250, .92);
}

.social-modern .header-info .social-contact-card--whatsapp::after {
    background: linear-gradient(90deg, #25d366, #0da950);
}

.social-modern .header-info .social-contact-card--whatsapp .info-icon {
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .32), transparent 38%),
        linear-gradient(145deg, #35dc74, #0b9f47);
    box-shadow: 0 12px 24px rgba(13, 169, 80, .2);
}

.social-modern .header-info .social-contact-card--whatsapp .info-label {
    color: #07883c;
}

.social-modern .header-info .social-network-card {
    flex-direction: column;
    justify-content: center;
    min-width: 126px;
    padding-right: 11px;
    padding-left: 11px;
}

.social-modern .social-network-label {
    margin-bottom: 7px;
    color: var(--social-muted);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.social-modern .social-network-links {
    display: flex;
    gap: 7px;
}

.social-modern .header-info .social-network-links a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    color: #fff;
    background: var(--social-navy);
    box-shadow: 0 8px 18px rgba(7, 47, 85, .15);
    transition:
        transform 250ms ease,
        background 250ms ease;
}

.social-modern .header-info .social-network-links a:last-child {
    background: linear-gradient(145deg, #e7457b, #754bc4);
}

.social-modern .header-info .social-network-links a:hover {
    color: #fff;
    background: var(--social-blue);
    transform: translateY(-3px) rotate(-4deg);
}

.social-modern .header-info .social-network-links i {
    font-size: 15px;
}

.social-modern .nav-menu-4 {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: none;
    margin: 0 0 -28px;
    padding: 0 12px 0 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background:
        linear-gradient(110deg, var(--social-navy-deep), var(--social-navy) 62%, #075d91);
    box-shadow: 0 16px 38px rgba(4, 31, 58, .2);
    line-height: normal;
}

.social-modern .nav-menu-4::before {
    position: absolute;
    top: 0;
    left: 14%;
    width: 180px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(24, 200, 244, .08), transparent);
    content: "";
    transform: skewX(-22deg);
    pointer-events: none;
}

.social-modern .nav-menu-4.social-nav-fixed {
    position: fixed;
    top: 10px;
    right: auto;
    bottom: auto;
    left: 50%;
    z-index: 10050;
    width: min(calc(100% - 32px), 1320px);
    margin: 0;
    transform: translateX(-50%);
    animation: socialNavArrival 380ms cubic-bezier(.2, .85, .2, 1);
    box-shadow: 0 18px 48px rgba(4, 31, 58, .28);
}

@keyframes socialNavArrival {
    from {
        opacity: 0;
        transform: translate(-50%, -18px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.social-modern .nav-menu-4 .navbar-menu {
    order: 1;
    float: none !important;
    flex: 1;
}

.social-modern .nav-menu-4 .nav-menu {
    padding: 0;
}

.social-modern .nav-menu-4 .quick-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.social-modern .nav-menu-4 .nav-menu li a,
.social-modern .header_3 .nav-menu-4 .nav-menu a {
    display: block;
    padding: 22px 12px;
    color: rgba(255, 255, 255, .9);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.social-modern .header_3 .nav-menu-4 .nav-menu a:hover,
.social-modern .header_3 .nav-menu-4 .nav-menu a:focus {
    color: var(--social-yellow);
}

.social-modern .nav-menu-4 .login-cart-lang {
    order: 2;
    float: none !important;
}

.social-modern .nav-menu-4 .login-cart-lang ul {
    display: flex;
    align-items: center;
    gap: 8px;
    float: none;
}

.social-modern .nav-menu-4 .login-cart-lang li {
    margin: 0;
}

.social-modern .nav-menu-4 .login-cart-lang li::before {
    display: none;
}

.social-modern .nav-menu-4 .login-cart-lang a,
.social-modern .nav-menu-4 .login-cart-lang .login a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    color: var(--social-navy);
    background: var(--social-yellow);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.social-modern .nav-menu-4 .login-cart-lang li:last-child > a {
    color: #fff !important;
    background: rgba(255, 255, 255, .1);
}

/* Floating WhatsApp */
.social-modern .social-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10020;
    display: flex;
    align-items: center;
    min-width: 196px;
    min-height: 64px;
    padding: 8px 16px 8px 8px;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #24d366, #079447);
    box-shadow:
        0 20px 45px rgba(4, 119, 53, .28),
        inset 0 1px 0 rgba(255, 255, 255, .35);
    transition:
        transform 300ms ease,
        box-shadow 300ms ease;
    animation: socialWhatsappFloat 3.2s ease-in-out infinite;
}

.social-modern .social-whatsapp-float::before {
    position: absolute;
    inset: -7px;
    z-index: -1;
    border: 2px solid rgba(37, 211, 102, .28);
    border-radius: inherit;
    content: "";
    animation: socialWhatsappPulse 2.2s ease-out infinite;
}

.social-modern .social-whatsapp-float:hover {
    color: #fff;
    transform: translateY(-6px) scale(1.025);
    box-shadow:
        0 26px 54px rgba(4, 119, 53, .34),
        inset 0 1px 0 rgba(255, 255, 255, .4);
    animation-play-state: paused;
}

.social-modern .social-whatsapp-float-icon {
    display: grid;
    flex: 0 0 48px;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(255, 255, 255, .17);
}

.social-modern .social-whatsapp-float-icon i {
    color: #fff;
    font-size: 26px;
}

.social-modern .social-whatsapp-float-copy {
    display: flex;
    flex-direction: column;
}

.social-modern .social-whatsapp-float-copy strong {
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.2;
}

.social-modern .social-whatsapp-float-copy small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .76);
    font-size: 10px;
    line-height: 1.2;
}

@keyframes socialWhatsappFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes socialWhatsappPulse {
    0% {
        opacity: .8;
        transform: scale(.94);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.14);
    }
}

/* Mobile header */
.social-modern .altranative-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    border-top: 4px solid var(--social-cyan);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 10px 32px rgba(7, 47, 85, .12);
}

.social-modern .altranative-header .menu-wrapper {
    min-height: 80px;
    padding: 8px 18px;
}

.social-modern .altranative-header .logo-area img {
    width: 174px;
    max-height: 64px;
    object-fit: contain;
}

.social-modern .alt-menu-btn .hamburger-menu,
.social-modern .alt-menu-btn .hamburger-menu::before,
.social-modern .alt-menu-btn .hamburger-menu::after {
    background: var(--social-navy);
}

.social-modern .cart-btn li {
    background: var(--social-cyan);
}

.social-modern .menu-list {
    background: var(--social-navy-deep);
}

.social-modern .menu-list .card {
    border-color: rgba(255, 255, 255, .08);
    background: transparent;
}

.social-modern .menu-list .menu-link {
    color: #fff;
    font-weight: 700;
}

/* Dynamic hero */
.social-modern .slider-section {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    overflow: hidden;
    background: var(--social-navy-deep);
}

.social-modern .slider-section::after {
    position: absolute;
    right: -10vw;
    bottom: -120px;
    z-index: 3;
    width: 38vw;
    height: 230px;
    border-radius: 50%;
    background: #fff;
    content: "";
    transform: rotate(-3deg);
    pointer-events: none;
}

.social-modern #rev_slider_3_1,
.social-modern #rev_slider_3_1_wrapper {
    overflow: hidden !important;
}

.social-modern #rev_slider_3_1 img {
    filter: saturate(1.04) contrast(1.02);
}

.social-modern .social-hero-card-section {
    position: relative;
    z-index: 8;
    margin-top: -48px;
    padding-bottom: 28px;
}

.social-modern .social-hero-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    align-items: center;
    gap: 28px;
    overflow: hidden;
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--social-radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 88% 10%, rgba(24, 200, 244, .22), transparent 16rem),
        linear-gradient(115deg, var(--social-navy-deep), var(--social-navy));
    box-shadow: var(--social-shadow);
}

.social-modern .social-hero-card::after {
    position: absolute;
    top: -54px;
    right: 20%;
    color: rgba(255, 255, 255, .035);
    content: "S";
    font-size: 240px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.social-modern .social-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--social-yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.social-modern .social-eyebrow::before {
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--social-yellow);
    content: "";
}

.social-modern .social-hero-card h1 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(1.8rem, 3.1vw, 3rem);
    font-weight: 850;
    line-height: 1.04;
}

.social-modern .social-hero-card p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.social-modern .social-hero-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.social-modern .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
}

.social-modern .social-btn--primary {
    color: var(--social-navy);
    background: var(--social-yellow);
    box-shadow: 0 12px 25px rgba(255, 200, 61, .2);
}

.social-modern .social-btn--primary:hover {
    color: var(--social-navy);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(255, 200, 61, .32);
}

.social-modern .social-btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .07);
}

.social-modern .social-btn--ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .13);
    transform: translateY(-3px);
}

/* Access widget */
.social-modern #pais_celular .container {
    border-radius: 12px;
    background: var(--social-navy) !important;
}

.social-modern .social-access-section {
    position: relative;
    z-index: 4;
    overflow: hidden;
    width: 100%;
    padding: 56px 0 88px;
    background:
        radial-gradient(circle at 4% 70%, rgba(24, 200, 244, .12), transparent 24rem),
        radial-gradient(circle at 96% 18%, rgba(255, 200, 61, .1), transparent 20rem),
        linear-gradient(180deg, #fff 0%, #f5fbff 100%);
}

.social-modern .social-access-shell {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(28px, 5vw, 96px);
}

.social-modern .social-access-heading {
    max-width: 680px;
    margin: 0 auto 28px;
    text-align: center;
}

.social-modern .social-access-heading h2 {
    margin: 8px 0 8px;
    color: var(--social-navy);
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1.08;
}

.social-modern .social-access-heading p {
    margin: 0;
    color: var(--social-muted);
    font-size: 15px;
}

.social-modern .social-access-carousel {
    width: 100%;
    margin: 0 auto;
}

.social-modern .social-access-carousel .owl-stage-outer {
    overflow: hidden;
    padding: 32px 0 38px;
}

.social-modern .social-access-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.social-modern .social-access-carousel .owl-item {
    position: relative;
    z-index: 1;
    opacity: .38;
    transform: scale(.76);
    transition:
        opacity 550ms ease,
        transform 650ms cubic-bezier(.2, .85, .2, 1),
        filter 550ms ease;
    filter: saturate(.7);
}

.social-modern .social-access-carousel .owl-item.social-distance-2 {
    z-index: 2;
    opacity: .58;
    transform: scale(.84);
    filter: saturate(.82);
}

.social-modern .social-access-carousel .owl-item.social-distance-1 {
    z-index: 3;
    opacity: .82;
    transform: scale(.93);
    filter: saturate(.94);
}

.social-modern .social-access-carousel .owl-item.center {
    z-index: 5;
    opacity: 1;
    transform: scale(1.08);
    filter: none;
}

.social-modern .social-access-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 230px;
    padding: 24px 18px 20px;
    border: 1px solid rgba(7, 47, 85, .1);
    border-radius: 26px;
    color: var(--social-navy);
    background:
        radial-gradient(circle at 85% 8%, rgba(24, 200, 244, .12), transparent 8rem),
        rgba(255, 255, 255, .94);
    box-shadow: 0 18px 42px rgba(6, 50, 86, .1);
    text-align: center;
    transition:
        border-color 350ms ease,
        box-shadow 350ms ease,
        background 350ms ease;
}

.social-modern .social-access-card::before {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(24, 200, 244, .08);
    border-radius: 19px;
    content: "";
    pointer-events: none;
}

.social-modern .social-access-carousel .owl-item.center .social-access-card {
    border-color: rgba(0, 163, 224, .3);
    background:
        radial-gradient(circle at 82% 6%, rgba(24, 200, 244, .2), transparent 9rem),
        #fff;
    box-shadow:
        0 28px 64px rgba(0, 111, 167, .2),
        0 0 0 5px rgba(24, 200, 244, .06);
}

.social-modern .social-access-icon {
    position: relative;
    z-index: 1;
    display: grid;
    flex: 0 0 82px;
    place-items: center;
    width: 82px;
    height: 82px;
    margin-bottom: 17px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, .3), transparent 35%),
        linear-gradient(145deg, var(--social-cyan), var(--social-blue));
    box-shadow:
        0 15px 28px rgba(0, 137, 204, .22),
        inset 0 1px 0 rgba(255, 255, 255, .35);
    transform: rotate(-3deg);
    transition: transform 450ms cubic-bezier(.2, .85, .2, 1);
}

.social-modern .social-access-carousel .owl-item:nth-child(3n+2) .social-access-icon {
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, .28), transparent 35%),
        linear-gradient(145deg, #0e79c8, #074675);
}

.social-modern .social-access-carousel .owl-item:nth-child(3n+3) .social-access-icon {
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, .3), transparent 35%),
        linear-gradient(145deg, #18c8f4, #0069ae);
}

.social-modern .social-access-card:hover .social-access-icon,
.social-modern .social-access-carousel .owl-item.center .social-access-icon {
    transform: rotate(0) scale(1.06);
}

.social-modern .social-access-icon i {
    color: #fff;
    font-size: 36px;
    line-height: 1;
    -webkit-text-fill-color: initial;
}

.social-modern .social-access-card strong {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    color: var(--social-navy);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.social-modern .social-access-action {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: var(--social-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.social-modern .social-access-action i {
    font-size: 10px;
    transition: transform 250ms ease;
}

.social-modern .social-access-card:hover .social-access-action i {
    transform: translateX(3px);
}

.social-modern .social-access-carousel .owl-nav {
    position: static;
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 4px;
    transform: none;
}

.social-modern .social-access-carousel .owl-nav .owl-prev,
.social-modern .social-access-carousel .owl-nav .owl-next {
    display: grid;
    float: none;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0;
    border: 1px solid rgba(7, 47, 85, .12);
    border-radius: 50% !important;
    color: var(--social-navy) !important;
    background: #fff !important;
    box-shadow: 0 12px 24px rgba(6, 50, 86, .1);
}

.social-modern .social-access-carousel .owl-nav .owl-prev:hover,
.social-modern .social-access-carousel .owl-nav .owl-next:hover {
    color: #fff !important;
    border-color: var(--social-blue);
    background: var(--social-blue) !important;
}

@media (max-width: 767px) {
    .social-modern .social-access-section {
        padding: 48px 0 68px;
    }

    .social-modern .social-access-shell {
        padding: 0 12px;
    }

    .social-modern .social-access-heading {
        padding: 0 16px;
    }

    .social-modern .social-access-carousel .owl-stage-outer {
        padding: 24px 0 30px;
    }

    .social-modern .social-access-carousel .owl-item {
        opacity: .45;
        transform: scale(.82);
    }

    .social-modern .social-access-carousel .owl-item.social-distance-1 {
        opacity: .72;
        transform: scale(.9);
    }

    .social-modern .social-access-carousel .owl-item.center {
        transform: scale(1);
    }

    .social-modern .social-access-card {
        height: 205px;
        padding: 20px 15px 18px;
        border-radius: 21px;
    }

    .social-modern .social-access-icon {
        flex-basis: 74px;
        width: 74px;
        height: 74px;
        margin-bottom: 13px;
        border-radius: 21px;
    }

    .social-modern .social-access-icon i {
        font-size: 32px;
    }

    .social-modern .social-access-card strong {
        min-height: 38px;
        font-size: 14px;
    }
}

/* New brand story */
.social-modern .social-journey {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(180deg, #f4fbff 0%, #fff 100%);
}

.social-modern .social-journey::before {
    position: absolute;
    top: -180px;
    left: -180px;
    width: 420px;
    height: 420px;
    border: 80px solid rgba(0, 163, 224, .06);
    border-radius: 50%;
    content: "";
}

.social-modern .social-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .65fr);
    align-items: end;
    gap: 48px;
    margin-bottom: 48px;
}

.social-modern .social-section-heading h2 {
    margin: 8px 0 0;
    color: var(--social-navy);
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    font-weight: 850;
    line-height: .98;
    letter-spacing: -.065em;
}

.social-modern .social-section-heading p {
    margin: 0;
    font-size: 16px;
}

.social-modern .social-journey-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.social-modern .social-journey-card {
    position: relative;
    display: flex;
    min-height: 300px;
    flex-direction: column;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--social-line);
    border-radius: var(--social-radius-lg);
    background: #fff;
    box-shadow: var(--social-shadow-soft);
}

.social-modern .social-journey-card::after {
    position: absolute;
    right: -30px;
    bottom: -50px;
    width: 150px;
    height: 150px;
    border: 35px solid rgba(0, 163, 224, .06);
    border-radius: 50%;
    content: "";
    transition: transform var(--social-transition), border-color var(--social-transition);
}

.social-modern .social-journey-card:hover {
    border-color: rgba(0, 163, 224, .3);
    transform: translateY(-9px);
    box-shadow: var(--social-shadow);
}

.social-modern .social-journey-card:hover::after {
    border-color: rgba(255, 200, 61, .22);
    transform: scale(1.16);
}

.social-modern .social-journey-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: auto;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(145deg, var(--social-cyan), var(--social-blue));
    box-shadow: 0 12px 24px rgba(0, 163, 224, .2);
    font-size: 23px;
}

.social-modern .social-journey-step {
    margin: 28px 0 8px;
    color: var(--social-cyan);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.social-modern .social-journey-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 850;
}

.social-modern .social-journey-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.65;
}

.social-modern .social-journey-card a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--social-navy);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

/* Instagram-derived highlights and parallax */
.social-modern .social-momentum {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    padding: 110px 0;
    color: #fff;
    background:
        linear-gradient(100deg, rgba(4, 31, 58, .96) 10%, rgba(7, 47, 85, .86) 56%, rgba(0, 163, 224, .58)),
        url("../img/ensino.jpg") center / cover no-repeat fixed;
}

.social-modern .social-momentum::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    mask-image: linear-gradient(to right, #000, transparent);
}

.social-modern .social-parallax-s {
    position: absolute;
    top: 8%;
    right: 4%;
    color: rgba(255, 255, 255, .07);
    font-size: clamp(19rem, 34vw, 38rem);
    font-weight: 900;
    line-height: .75;
    pointer-events: none;
    will-change: transform;
}

.social-modern .social-momentum-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(460px, 1.15fr);
    align-items: center;
    gap: 80px;
}

.social-modern .social-momentum-copy h2 {
    margin: 10px 0 22px;
    color: #fff;
    font-size: clamp(2.6rem, 5vw, 5rem);
    font-weight: 850;
    line-height: .95;
}

@media (min-width: 992px) {
    .social-modern .social-momentum-copy h2 {
        font-size: clamp(2.6rem, 4.4vw, 4.4rem);
    }
}

.social-modern .social-momentum-copy p {
    max-width: 540px;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
}

.social-modern .social-momentum-copy .social-btn {
    margin-top: 20px;
}

.social-modern .social-momentum-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.social-modern .social-momentum-card {
    min-height: 190px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    background: rgba(255, 255, 255, .09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
}

.social-modern .social-momentum-card:nth-child(2),
.social-modern .social-momentum-card:nth-child(3) {
    transform: translateY(28px);
}

.social-modern .social-momentum-card i {
    margin-bottom: 28px;
    color: var(--social-yellow);
    font-size: 24px;
}

.social-modern .social-momentum-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
}

.social-modern .social-momentum-card p {
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
    line-height: 1.55;
}

/* Dynamic content sections */
.social-modern .popular-course-section {
    padding: 110px 0;
    background: #fff;
}

.social-modern .popular-course-section .course-item-pic-text {
    overflow: hidden;
    margin: 10px;
    border: 1px solid var(--social-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--social-shadow-soft);
}

.social-modern .popular-course-section .course-pic {
    overflow: hidden;
    margin-bottom: 0 !important;
}

.social-modern .popular-course-section .course-pic img {
    width: 100%;
    aspect-ratio: 1.25;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(.2, .8, .2, 1);
}

.social-modern .popular-course-section .course-item-pic-text:hover .course-pic img {
    transform: scale(1.055);
}

.social-modern .popular-course-section .course-item-text {
    padding: 22px 24px 26px;
}

.social-modern .popular-course-section .course-title {
    padding: 0 !important;
}

.social-modern .popular-course-section .course-title h3 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.social-modern .popular-course-section .course-title h3 a {
    color: var(--social-navy);
}

.social-modern .owl-nav .owl-prev,
.social-modern .owl-nav .owl-next {
    border-radius: 12px !important;
    color: var(--social-navy) !important;
    background: #fff !important;
    box-shadow: var(--social-shadow-soft);
}

/* Purpose section */
.social-modern .why-choose-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0 82px;
    background:
        linear-gradient(110deg, rgba(4, 31, 58, .97), rgba(7, 47, 85, .88)),
        url("../img/banner/wc-1.jpg") center / cover fixed;
}

.social-modern .why-choose-section::after {
    position: absolute;
    top: -25%;
    right: -8%;
    width: 40vw;
    height: 40vw;
    border: 80px solid rgba(0, 163, 224, .09);
    border-radius: 50%;
    content: "";
}

.social-modern .why-choose-section .container {
    position: relative;
    z-index: 2;
}

.social-modern .why-choose-section .section-title h2,
.social-modern .why-choose-section .section-title span {
    color: #fff;
}

.social-modern .why-choose-section .extra-features-content .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.social-modern .why-choose-section .extra-features-content .col-md-4,
.social-modern .why-choose-section .extra-features-content .col-sm-4,
.social-modern .why-choose-section .extra-features-content .col-sm-6 {
    width: auto;
    max-width: none;
    padding: 0;
}

.social-modern .why-choose-section .extra-features-content .col-sm-4 {
    display: none;
}

.social-modern .why-choose-section .extra-left,
.social-modern .why-choose-section .extra-right {
    display: grid;
    gap: 16px;
}

.social-modern .why-choose-section .extra-left-content {
    margin: 0;
}

.social-modern .why-choose-section .extra-icon-text,
.social-modern .why-choose-section .extra-icon-text.text-right {
    display: grid;
    grid-template-columns: 78px 1fr;
    align-items: center;
    gap: 20px;
    min-height: 142px;
    margin: 0;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .07);
    text-align: left !important;
    backdrop-filter: blur(10px);
}

.social-modern .why-choose-section .features-icon,
.social-modern .why-choose-section .extra-right .features-icon {
    display: grid;
    float: none;
    place-items: center;
    width: 78px;
    height: 78px;
    margin: 0;
    border-radius: 21px;
    font-size: 36px;
    line-height: 1;
}

.social-modern .why-choose-section .features-icon i {
    font-size: 36px;
    line-height: 1;
}

.social-modern .why-choose-section .features-text {
    padding: 0 !important;
}

.social-modern .why-choose-section .features-text-title,
.social-modern .why-choose-section .features-text-title.text-right,
.social-modern .why-choose-section .features-text-dec,
.social-modern .why-choose-section .features-text-dec.text-right {
    text-align: left !important;
}

.social-modern .why-choose-section .features-text-title h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 18px;
}

.social-modern .why-choose-section .features-text-dec,
.social-modern .why-choose-section .features-text-dec span {
    color: rgba(255, 255, 255, .76) !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

/* Tour and video */
.social-modern .latest-area-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #fff, #f4fbff);
}

.social-modern .latest-area-section .row {
    align-items: stretch;
}

.social-modern .latest-area-content {
    height: 100%;
    padding: 28px;
    border: 1px solid var(--social-line);
    border-radius: var(--social-radius-lg);
    background: #fff;
    box-shadow: var(--social-shadow-soft);
}

.social-modern .latest-area-section .section-title-2 {
    margin-bottom: 26px !important;
}

.social-modern .latest-area-section .section-title-2 h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.social-modern .latest-news-posts iframe,
.social-modern .course-details-content iframe {
    width: 100%;
    border-radius: 18px;
    background: #e8eef2;
}

.social-modern .latest-video-poster {
    overflow: hidden;
    border-radius: 18px;
}

.social-modern .latest-video-poster img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.social-modern .video-play-btn {
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.social-modern .view-all-btn a {
    color: var(--social-blue);
    font-weight: 800;
}

/* Gallery */
.social-modern .genius-teacher-section-2 {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(24, 200, 244, .14), transparent 24rem),
        var(--social-navy-deep);
}

.social-modern .genius-teacher-section-2 .section-title h2,
.social-modern .genius-teacher-section-2 .section-title span,
.social-modern .genius-teacher-section-2 .subtitle {
    color: #fff;
}

.social-modern .genius-teacher-section-2 .teacher-img-content {
    overflow: hidden;
    margin: 10px;
    border-radius: 22px;
    background: var(--social-navy);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .22);
}

.social-modern .genius-teacher-section-2 .teacher-img-content > img {
    width: 100%;
    aspect-ratio: 1.45;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(.2, .8, .2, 1);
}

.social-modern .genius-teacher-section-2 .teacher-img-content:hover > img {
    transform: scale(1.06);
}

.social-modern .genius-teacher-section-2 .teacher-img-content::after,
.social-modern .genius-teacher-section-2 .teacher-img-content:hover::after {
    opacity: 0;
    pointer-events: none;
}

.social-modern .genius-teacher-section-2 .teacher-img-content .teacher-cntent {
    position: absolute;
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto !important;
    max-width: none !important;
    min-height: 0;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    background: rgba(4, 31, 58, .88);
    opacity: 1;
    transform: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
    backdrop-filter: none;
}

.social-modern .genius-teacher-section-2 .teacher-social-name {
    width: 100% !important;
    max-width: none !important;
}

.social-modern .genius-teacher-section-2 .teacher-name span {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

/* Testimonials */
.social-modern .testimonial_2_section {
    position: relative;
    padding: 110px 0;
    background: #fff;
}

.social-modern .testimonial_2_section .testimonial-slide {
    display: flow-root;
    padding: 42px;
    border: 1px solid var(--social-line);
    border-radius: var(--social-radius-xl);
    background:
        radial-gradient(circle at 94% 4%, rgba(0, 163, 224, .12), transparent 19rem),
        #fff;
    box-shadow: var(--social-shadow);
}

.social-modern .testimonial_2_section .student-qoute {
    cursor: pointer;
    margin: 8px;
    padding: 30px;
    border-radius: 20px;
    background: #f5fbff;
    transition:
        background 300ms ease,
        border-color 300ms ease,
        box-shadow 300ms ease,
        transform 300ms ease;
}

.social-modern .testimonial_2_section .student-qoute:hover,
.social-modern .testimonial_2_section .student-qoute.is-expanded {
    border-color: rgba(0, 163, 224, .24);
    background: #f0faff;
    box-shadow: 0 18px 38px rgba(7, 47, 85, .09);
}

.social-modern .testimonial_2_section .student-qoute::after {
    color: rgba(0, 163, 224, .16);
}

.social-modern .testimonial_2_section .social-testimonial-text {
    position: relative;
    overflow: hidden;
    margin-bottom: 13px;
    max-height: calc(1.8em * 4);
    color: var(--social-muted);
    font-size: 15px;
    font-style: italic;
    line-height: 1.8;
    transition: max-height 380ms cubic-bezier(.2, .7, .2, 1);
}

.social-modern .testimonial_2_section .social-testimonial-text > :first-child {
    margin-top: 0;
}

.social-modern .testimonial_2_section .social-testimonial-text > :last-child {
    margin-bottom: 0;
}

.social-modern .testimonial_2_section .social-testimonial-text p {
    margin-bottom: .55em;
    color: inherit;
    font: inherit;
    line-height: inherit;
}

.social-modern .testimonial_2_section .social-testimonial-text p:empty {
    display: none !important;
}

.social-modern .testimonial_2_section .student-qoute:not(.is-expanded):not(.social-testimonial-short) .social-testimonial-text::after {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 34px;
    padding-left: 14px;
    color: var(--social-muted);
    background: linear-gradient(90deg, rgba(245, 251, 255, 0), #f5fbff 45%);
    content: "...";
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.8;
    text-align: right;
}

.social-modern .testimonial_2_section .student-qoute:hover:not(.is-expanded):not(.social-testimonial-short) .social-testimonial-text::after {
    background: linear-gradient(90deg, rgba(240, 250, 255, 0), #f0faff 45%);
}

.social-modern .testimonial_2_section .student-qoute.is-expanded .social-testimonial-text,
.social-modern .testimonial_2_section .student-qoute.social-testimonial-short .social-testimonial-text {
    max-height: none;
    overflow: visible;
}

.social-modern .social-testimonial-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 2px 0 18px;
    padding: 8px 12px;
    border: 1px solid rgba(0, 163, 224, .16);
    border-radius: 999px;
    color: var(--social-blue);
    background: rgba(255, 255, 255, .88);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .06em;
    line-height: 1;
    text-transform: uppercase;
    transition:
        color 250ms ease,
        border-color 250ms ease,
        background 250ms ease,
        transform 250ms ease;
}

.social-modern .social-testimonial-toggle:hover,
.social-modern .student-qoute.is-expanded .social-testimonial-toggle {
    color: #fff;
    border-color: var(--social-blue);
    background: var(--social-blue);
    transform: translateY(-2px);
}

.social-modern .social-testimonial-toggle i {
    font-size: 9px;
    transition: transform 300ms ease;
}

.social-modern .student-qoute.is-expanded .social-testimonial-toggle i {
    transform: rotate(180deg);
}

.social-modern .student-qoute.social-testimonial-short .social-testimonial-toggle {
    display: none;
}

.social-modern .testimonial_2_section .student-name-designation {
    margin-top: 0;
}

.social-modern .testimonial_2_section .st-name {
    color: var(--social-navy);
}

.social-modern .social-testimonial-cta {
    position: relative;
    z-index: 2;
    clear: both;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    width: calc(100% - 16px);
    margin: 30px 8px 0;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 5%, rgba(24, 200, 244, .2), transparent 13rem),
        linear-gradient(120deg, var(--social-navy-deep), var(--social-navy));
    box-shadow: 0 20px 44px rgba(4, 31, 58, .18);
}

.social-modern .social-testimonial-cta-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(145deg, var(--social-cyan), var(--social-blue));
    box-shadow: 0 12px 24px rgba(0, 137, 204, .24);
}

.social-modern .social-testimonial-cta-icon i {
    font-size: 22px;
}

.social-modern .social-testimonial-cta-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.social-modern .social-testimonial-cta-copy small {
    margin-bottom: 3px;
    color: var(--social-yellow);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.social-modern .social-testimonial-cta-copy strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
}

.social-modern .social-testimonial-cta > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 13px;
    color: var(--social-navy);
    background: var(--social-yellow);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    box-shadow: 0 12px 25px rgba(255, 200, 61, .2);
}

.social-modern .social-testimonial-cta > a:hover {
    color: var(--social-navy);
    background: #ffda69;
    transform: translateY(-3px);
}

/* Shared footer */
.social-modern #contact-area.contact-area-section {
    position: relative;
    overflow: hidden;
    padding: 88px 0 0;
    background:
        radial-gradient(circle at 90% 0, rgba(0, 163, 224, .22), transparent 28rem),
        linear-gradient(145deg, var(--social-navy-deep), #063d69);
}

.social-modern #contact-area.contact-area-section::before {
    position: absolute;
    top: -160px;
    left: -120px;
    width: 390px;
    height: 390px;
    border: 70px solid rgba(255, 255, 255, .035);
    border-radius: 50%;
    content: "";
}

.social-modern #contact-area .footer-content {
    position: relative;
    z-index: 2;
}

.social-modern #contact-area .footer-content > .row {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 48px;
}

.social-modern #contact-area .footer-content > .row > [class*="col-"] {
    width: auto;
    max-width: none;
    padding: 0;
}

.social-modern #contact-area .footer-logo {
    display: inline-block;
    padding: 12px 16px;
    border-radius: 16px;
    background: #fff;
}

.social-modern #contact-area .footer-logo img {
    width: 210px !important;
    max-height: 86px;
    object-fit: contain;
}

.social-modern #contact-area .footer-about-text p {
    color: rgba(255, 255, 255, .7) !important;
    font-size: 14px;
}

.social-modern #contact-area .footer-social li {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .06);
}

.social-modern #contact-area .footer-menu {
    margin: 0 50px 28px 0;
}

.social-modern #contact-area .footer-menu .widget-title,
.social-modern #contact-area .footer-widget > .widget-title {
    margin-bottom: 22px;
    color: #fff !important;
    font-size: 18px;
    font-weight: 800;
}

.social-modern #contact-area .footer-menu li {
    margin-bottom: 8px;
    font-size: 13px;
}

.social-modern #contact-area .footer-menu li a {
    color: rgba(255, 255, 255, .68) !important;
}

.social-modern #contact-area .footer-menu li a:hover {
    color: var(--social-yellow) !important;
    transform: translateX(4px);
}

.social-modern #contact-area .footer-menu li i {
    color: var(--social-yellow);
}

.social-modern #instagramfeed {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    min-height: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.social-modern .social-instagram-post {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 10px 24px rgba(0, 22, 48, .2);
    isolation: isolate;
    transform: translateZ(0);
}

.social-modern .social-instagram-post::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.social-modern .social-instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.2, .7, .2, 1), filter .45s ease;
}

.social-modern .social-instagram-post-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    color: #fff;
    background: linear-gradient(145deg, rgba(5, 49, 86, .22), rgba(234, 32, 114, .82));
    opacity: 0;
    text-align: center;
    transition: opacity .3s ease;
}

.social-modern .social-instagram-post-overlay i {
    font-size: 23px;
}

.social-modern .social-instagram-post-overlay span {
    font-size: 9px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.social-modern .social-instagram-post:hover,
.social-modern .social-instagram-post:focus-visible {
    box-shadow: 0 14px 30px rgba(0, 18, 39, .36);
    transform: translateY(-3px);
}

.social-modern .social-instagram-post:hover img,
.social-modern .social-instagram-post:focus-visible img {
    filter: saturate(1.08);
    transform: scale(1.08);
}

.social-modern .social-instagram-post:hover .social-instagram-post-overlay,
.social-modern .social-instagram-post:focus-visible .social-instagram-post-overlay {
    opacity: 1;
}

@media (hover: none) {
    .social-modern .social-instagram-post-overlay {
        inset: auto 6px 6px auto;
        width: 25px;
        height: 25px;
        padding: 0;
        border-radius: 50%;
        background: linear-gradient(135deg, #feda75, #d62976 58%, #4f5bd5);
        opacity: .95;
    }

    .social-modern .social-instagram-post-overlay i {
        font-size: 12px;
    }

    .social-modern .social-instagram-post-overlay span {
        display: none;
    }
}

.social-modern .social-instagram-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--social-yellow);
    font-size: 12px;
    font-weight: 800;
}

.social-modern .copy-right-menu {
    margin-top: 54px;
    padding: 24px 0;
    border-color: rgba(255, 255, 255, .1);
}

.social-modern .copy-right-menu p,
.social-modern .copy-right-menu li,
.social-modern .copy-right-menu a {
    color: rgba(255, 255, 255, .58) !important;
    font-size: 12px;
}

/* Inner pages */
.social-modern .breadcrumb-section {
    position: relative;
    display: flex;
    overflow: hidden;
    min-height: 224px;
    align-items: center;
    margin-top: 22px !important;
    padding: 48px 0 45px;
    background:
        radial-gradient(circle at 82% 22%, rgba(24, 200, 244, .22), transparent 17rem),
        radial-gradient(circle at 14% 110%, rgba(255, 200, 61, .1), transparent 16rem),
        linear-gradient(120deg, #031d33, var(--social-navy)) !important;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .07);
}

.social-modern .breadcrumb-section::before {
    position: absolute;
    top: -112px;
    right: 6%;
    color: rgba(255, 255, 255, .05);
    content: "S";
    font-size: 310px;
    font-weight: 900;
    line-height: 1;
    transform: rotate(-8deg);
}

.social-modern .breadcrumb-section::after {
    position: absolute;
    right: 12%;
    bottom: 0;
    left: 12%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(24, 200, 244, .72), rgba(255, 200, 61, .45), transparent);
    content: "";
}

.social-modern .breadcrumb-section .blakish-overlay {
    background: linear-gradient(90deg, rgba(1, 18, 31, .2), transparent 48%, rgba(0, 70, 112, .08));
}

.social-modern .breadcrumb-section .page-breadcrumb-content {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    transform: none;
}

.social-modern .breadcrumb-section .page-breadcrumb-title {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.social-modern .breadcrumb-section .breadcrumb-head,
.social-modern .breadcrumb-section .breadcrumb-head span {
    color: #fff;
    font-size: clamp(1.9rem, 3.4vw, 3.35rem);
    font-weight: 850;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.social-modern .breadcrumb-section .breadcrumb-head {
    margin: 0;
    text-wrap: balance;
}

.social-modern .breadcrumb-section .breadcrumb {
    display: inline-flex;
    width: auto;
    max-width: min(100%, 850px);
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 18px auto 0;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 13px;
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 12px 28px rgba(0, 17, 31, .18);
    backdrop-filter: blur(10px);
}

.social-modern .breadcrumb-section .breadcrumb-item,
.social-modern .breadcrumb-section .breadcrumb-item a,
.social-modern .breadcrumb-section .breadcrumb-item.active {
    color: rgba(255, 255, 255, .75);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1.35;
}

.social-modern .breadcrumb-section .breadcrumb-item {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    float: none;
    padding: 0 9px;
    border-radius: 0;
    background: transparent;
    white-space: nowrap;
}

.social-modern .breadcrumb-section .breadcrumb-item:first-child {
    padding-left: 3px;
}

.social-modern .breadcrumb-section .breadcrumb-item:last-child {
    padding-right: 3px;
}

.social-modern .breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    margin-right: 9px;
    padding: 0;
    color: rgba(255, 255, 255, .32);
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-size: 7px;
    font-weight: 900;
}

.social-modern .breadcrumb-section .breadcrumb-item a {
    color: rgba(255, 255, 255, .68);
}

.social-modern .breadcrumb-section .breadcrumb-item a:hover {
    color: var(--social-yellow);
}

.social-modern .breadcrumb-section .breadcrumb-item.active {
    max-width: min(42vw, 410px);
    overflow: hidden;
    color: #fff;
    background: transparent;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.social-modern .course-details-section,
.social-modern .faq-page-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fcff, #fff);
}

.social-modern .course-details-section .row {
    align-items: flex-start;
}

.social-modern .course-details-item,
.social-modern .blog-post-content,
.social-modern .faq-page-section .panel-group {
    padding: 28px;
    border: 1px solid var(--social-line);
    border-radius: var(--social-radius-lg);
    background: #fff;
    box-shadow: var(--social-shadow-soft);
}

.social-modern .course-details-item {
    border-bottom: 1px solid var(--social-line);
}

.social-modern .course-single-pic {
    overflow: hidden;
    border-radius: 18px;
}

.social-modern .course-single-pic img {
    width: 100%;
    object-fit: cover;
}

.social-modern .course-single-text .course-title {
    padding-bottom: 24px;
}

.social-modern .course-single-text .course-title h3,
.social-modern .course-details-content h2,
.social-modern .course-details-content h3 {
    color: var(--social-navy);
    font-weight: 800;
}

.social-modern .course-single-text p,
.social-modern .course-details-content p,
.social-modern .course-details-content li {
    color: var(--social-muted);
    font-size: 16px;
    line-height: 1.85;
}

.social-modern .side-bar-widget {
    overflow: hidden;
    margin-bottom: 20px;
    padding: 24px;
    border: 1px solid var(--social-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--social-shadow-soft);
}

.social-modern .side-bar-widget .widget-title {
    color: var(--social-navy);
    font-size: 21px;
    font-weight: 800;
}

.social-modern .latest-events,
.social-modern .list-blog-item,
.social-modern .blog-post-img-content {
    border-radius: 18px;
}

.social-modern .blog-thumnile {
    overflow: hidden;
    border-radius: 16px;
}

.social-modern .blog-title-content h3 a,
.social-modern .blog-content a {
    color: var(--social-navy);
}

.social-modern .course-price {
    background: var(--social-cyan);
}

.social-modern .pagination a,
.social-modern .pagination span {
    border-radius: 10px !important;
}

/* Contact and forms */
.social-modern body,
.social-modern input,
.social-modern textarea,
.social-modern select,
.social-modern button {
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

.social-modern .contact-page-version,
.social-modern .contact-form-area_3 {
    padding: 90px 0;
    background: #f5fbff;
}

.social-modern .contact_third_form,
.social-modern .contact-left-content,
.social-modern .contact-map-section {
    border-radius: var(--social-radius-lg);
}

.social-modern .contact-info input,
.social-modern .contact-info textarea,
.social-modern input[type="text"],
.social-modern input[type="email"],
.social-modern input[type="password"],
.social-modern input[type="tel"],
.social-modern select,
.social-modern textarea {
    min-height: 52px;
    border: 1px solid rgba(7, 47, 85, .14);
    border-radius: 13px;
    color: var(--social-ink);
    background: #fff;
    box-shadow: none;
    transition: border-color var(--social-transition), box-shadow var(--social-transition);
}

.social-modern textarea {
    min-height: 140px;
}

.social-modern input:focus,
.social-modern textarea:focus,
.social-modern select:focus {
    border-color: var(--social-cyan);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 163, 224, .1);
}

.social-modern .nws-button button,
.social-modern button[type="submit"],
.social-modern input[type="submit"] {
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--social-cyan), var(--social-blue));
    box-shadow: 0 12px 26px rgba(0, 122, 189, .2);
    font-weight: 800;
}

/* Contact page */
.social-modern .social-contact-page {
    position: relative;
    overflow: hidden;
    padding: 96px 0 84px;
    background:
        radial-gradient(circle at 8% 10%, rgba(24, 200, 244, .14), transparent 22rem),
        radial-gradient(circle at 94% 90%, rgba(255, 200, 61, .16), transparent 24rem),
        linear-gradient(180deg, #f8fcff 0%, #eef8ff 100%);
}

.social-modern .social-contact-page::before,
.social-modern .social-contact-page::after {
    position: absolute;
    border: 1px solid rgba(0, 163, 224, .1);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.social-modern .social-contact-page::before {
    top: -180px;
    right: -130px;
    width: 440px;
    height: 440px;
}

.social-modern .social-contact-page::after {
    bottom: -220px;
    left: -170px;
    width: 500px;
    height: 500px;
}

.social-modern .social-contact-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
    align-items: stretch;
    gap: 30px;
}

.social-modern .social-contact-overview,
.social-modern .social-contact-form-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.social-modern .social-contact-overview {
    display: flex;
    flex-direction: column;
    padding: 40px;
    color: #fff;
    background:
        radial-gradient(circle at 95% 5%, rgba(24, 200, 244, .24), transparent 18rem),
        linear-gradient(145deg, var(--social-navy-deep), #075283);
    box-shadow: 0 26px 60px rgba(4, 31, 58, .2);
}

.social-modern .social-contact-overview::after {
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 250px;
    height: 250px;
    border: 48px solid rgba(255, 255, 255, .035);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.social-modern .social-contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--social-yellow);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.social-modern .social-contact-eyebrow--blue {
    color: var(--social-blue);
}

.social-modern .social-contact-overview-copy,
.social-modern .social-contact-details,
.social-modern .social-contact-hours {
    position: relative;
    z-index: 1;
}

.social-modern .social-contact-overview h2,
.social-modern .social-contact-form-heading h2,
.social-modern .social-contact-map-heading h2 {
    margin: 0;
    color: inherit;
    font-size: clamp(2rem, 3.4vw, 3.35rem);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1.05;
}

.social-modern .social-contact-overview h2 span {
    color: var(--social-cyan);
}

.social-modern .social-contact-overview-copy > p {
    max-width: 450px;
    margin: 18px 0 28px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.75;
}

.social-modern .social-contact-details {
    display: grid;
    gap: 10px;
}

.social-modern .social-contact-detail {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 17px;
    color: #fff;
    background: rgba(255, 255, 255, .075);
    transition:
        border-color var(--social-transition),
        background var(--social-transition),
        transform var(--social-transition);
}

.social-modern .social-contact-detail:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .13);
    transform: translateX(5px);
}

.social-modern .social-contact-detail--whatsapp {
    border-color: rgba(84, 216, 117, .28);
    background: rgba(37, 211, 102, .11);
}

.social-modern .social-contact-detail-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(145deg, rgba(24, 200, 244, .78), rgba(0, 124, 190, .82));
    box-shadow: 0 10px 20px rgba(0, 20, 43, .16);
}

.social-modern .social-contact-detail--whatsapp .social-contact-detail-icon {
    background: linear-gradient(145deg, #47dc7c, #20a954);
}

.social-modern .social-contact-detail-icon i {
    font-size: 18px;
}

.social-modern .social-contact-detail-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}

.social-modern .social-contact-detail-copy small {
    color: rgba(255, 255, 255, .55);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.social-modern .social-contact-detail-copy strong {
    overflow-wrap: anywhere;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.social-modern .social-contact-detail-copy > span {
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
    line-height: 1.4;
}

.social-modern .social-contact-detail-arrow {
    margin-right: 3px;
    color: rgba(255, 255, 255, .5);
    font-size: 10px;
}

.social-modern .social-contact-hours {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 25px;
}

.social-modern .social-contact-hours-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    color: var(--social-yellow);
    background: rgba(255, 255, 255, .09);
}

.social-modern .social-contact-hours > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-modern .social-contact-hours small {
    color: rgba(255, 255, 255, .5);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.social-modern .social-contact-hours strong {
    color: #fff;
    font-size: 12px;
}

.social-modern .social-contact-form-card {
    padding: 44px;
    border: 1px solid rgba(7, 47, 85, .08);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 30px 70px rgba(7, 47, 85, .14);
}

.social-modern .social-contact-form-card::before {
    position: absolute;
    top: 0;
    right: 42px;
    left: 42px;
    height: 4px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, var(--social-cyan), var(--social-blue), var(--social-yellow));
    content: "";
}

.social-modern .social-contact-form-heading h2,
.social-modern .social-contact-map-heading h2 {
    color: var(--social-navy);
}

.social-modern .social-contact-form-heading h2 span,
.social-modern .social-contact-map-heading h2 span {
    color: var(--social-blue);
}

.social-modern .social-contact-form-heading > p {
    max-width: 560px;
    margin: 14px 0 27px;
    color: var(--social-muted);
    font-size: 13px;
    line-height: 1.7;
}

.social-modern .social-contact-form-card .contact_third_form {
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.social-modern .social-contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.social-modern .social-contact-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.social-modern .social-contact-field--full {
    grid-column: 1 / -1;
}

.social-modern .social-contact-field > span:first-child {
    color: var(--social-navy);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.social-modern .social-contact-input-wrap {
    position: relative;
    display: block;
}

.social-modern .social-contact-input-wrap > i {
    position: absolute;
    top: 50%;
    left: 17px;
    z-index: 2;
    color: var(--social-blue);
    font-size: 14px;
    transform: translateY(-50%);
    pointer-events: none;
}

.social-modern .social-contact-input-wrap--textarea > i {
    top: 19px;
    transform: none;
}

.social-modern .social-contact-form .social-contact-input-wrap input,
.social-modern .social-contact-form .social-contact-input-wrap textarea {
    width: 100% !important;
    margin: 0 !important;
    border: 1px solid rgba(7, 47, 85, .13) !important;
    border-radius: 14px !important;
    color: var(--social-ink) !important;
    background: #f8fbfd !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8) !important;
}

.social-modern .social-contact-form .social-contact-input-wrap input {
    height: 56px !important;
    padding: 0 16px 0 45px !important;
}

.social-modern .social-contact-form .social-contact-input-wrap textarea {
    min-height: 145px !important;
    padding: 15px 16px 15px 45px !important;
    resize: vertical;
}

.social-modern .social-contact-form .social-contact-input-wrap input:focus,
.social-modern .social-contact-form .social-contact-input-wrap textarea:focus {
    border-color: var(--social-cyan) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(0, 163, 224, .09) !important;
}

.social-modern .social-contact-form-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px;
}

.social-modern .social-contact-security {
    min-width: 0;
}

.social-modern .social-contact-security > span {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    color: var(--social-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.social-modern .social-contact-security > span i {
    color: var(--social-blue);
}

.social-modern .social-contact-submit.nws-button {
    width: auto;
    height: auto;
    flex: 0 0 auto;
    margin: 0;
    line-height: normal;
    border-radius: 0;
    background: transparent;
}

.social-modern .social-contact-submit.nws-button button {
    display: inline-flex;
    min-width: 190px;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 0;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--social-cyan), var(--social-blue));
    box-shadow: 0 15px 28px rgba(0, 122, 189, .24);
    font-size: 11px;
    font-weight: 850;
    transition: transform var(--social-transition), box-shadow var(--social-transition);
}

.social-modern .social-contact-submit.nws-button button:hover {
    box-shadow: 0 18px 34px rgba(0, 122, 189, .32);
    transform: translateY(-3px);
}

.social-modern .social-contact-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    padding: 13px 15px;
    border: 1px solid;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
}

.social-modern .social-contact-alert--success {
    border-color: rgba(28, 168, 92, .22);
    color: #11713d;
    background: #effbf4;
}

.social-modern .social-contact-alert--error {
    border-color: rgba(210, 52, 52, .2);
    color: #a62727;
    background: #fff4f4;
}

.social-modern .social-contact-map-area {
    padding: 78px 0 100px;
    background: #fff;
}

.social-modern .social-contact-map-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.social-modern .social-contact-map-heading h2 {
    font-size: clamp(2rem, 3vw, 3.1rem);
}

.social-modern .social-contact-map-heading p {
    margin: 12px 0 0;
    color: var(--social-muted);
    font-size: 13px;
}

.social-modern .social-contact-map-heading > a {
    display: inline-flex;
    min-height: 48px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid rgba(0, 137, 204, .15);
    border-radius: 13px;
    color: var(--social-blue);
    background: #eef9ff;
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
}

.social-modern .social-contact-map-heading > a:hover {
    color: #fff;
    border-color: var(--social-blue);
    background: var(--social-blue);
    transform: translateY(-2px);
}

.social-modern .social-contact-map-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(7, 47, 85, .1);
    border-radius: 28px;
    background: #dfeef7;
    box-shadow: 0 28px 65px rgba(7, 47, 85, .14);
}

.social-modern .social-contact-map-frame::after {
    position: absolute;
    inset: 0;
    border: 7px solid rgba(255, 255, 255, .75);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.social-modern .social-contact-map-frame iframe {
    display: block;
    width: 100%;
    min-height: 520px;
}

@media (max-width: 1199px) {
    .social-modern .social-contact-layout {
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    }

    .social-modern .social-contact-overview,
    .social-modern .social-contact-form-card {
        padding: 34px;
    }

    .social-modern .social-contact-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .social-modern .social-contact-submit.nws-button button {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .social-modern .social-contact-page {
        padding: 76px 0 68px;
    }

    .social-modern .social-contact-layout {
        grid-template-columns: 1fr;
    }

    .social-modern .social-contact-overview {
        min-height: 0;
    }

    .social-modern .social-contact-hours {
        margin-top: 5px;
    }
}

@media (max-width: 767px) {
    .social-modern .social-contact-page {
        padding: 58px 0 54px;
    }

    .social-modern .social-contact-overview,
    .social-modern .social-contact-form-card {
        padding: 25px 20px;
        border-radius: 22px;
    }

    .social-modern .social-contact-form-card::before {
        right: 20px;
        left: 20px;
    }

    .social-modern .social-contact-form-grid {
        grid-template-columns: 1fr;
    }

    .social-modern .social-contact-field--full {
        grid-column: auto;
    }

    .social-modern .social-contact-map-area {
        padding: 58px 0 72px;
    }

    .social-modern .social-contact-map-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .social-modern .social-contact-map-heading > a {
        width: 100%;
    }

    .social-modern .social-contact-map-frame {
        border-radius: 20px;
    }

    .social-modern .social-contact-map-frame iframe {
        min-height: 420px;
        height: 420px;
    }
}

@media (max-width: 480px) {
    .social-modern .social-contact-detail {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 12px;
    }

    .social-modern .social-contact-detail-icon {
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .social-modern .social-contact-detail-arrow {
        display: none;
    }

    .social-modern .social-contact-security .g-recaptcha {
        width: 304px;
        transform: scale(.82);
        transform-origin: left top;
        margin-bottom: -14px;
    }
}

.social-modern .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    box-shadow: var(--social-shadow);
}

/* Scroll reveal states, added only when JS is active */
.social-modern.social-js [data-social-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 700ms cubic-bezier(.2, .8, .2, 1),
        transform 700ms cubic-bezier(.2, .8, .2, 1);
}

.social-modern.social-js [data-social-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.social-modern.social-js [data-social-reveal-delay="1"] {
    transition-delay: 90ms;
}

.social-modern.social-js [data-social-reveal-delay="2"] {
    transition-delay: 180ms;
}

.social-modern.social-js [data-social-reveal-delay="3"] {
    transition-delay: 270ms;
}

/* Responsive */
@media (max-width: 1199px) {
    .social-modern .header_3 .navbar-default {
        grid-template-columns: 230px 1fr;
    }

    .social-modern .header-info .info-text {
        display: none;
    }

    .social-modern .header-info li {
        padding: 8px 9px;
    }

    .social-modern .header-info .mail-phone .info-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        margin-right: 8px;
    }

    .social-modern .social-brand-tagline {
        margin-left: 5px;
        letter-spacing: .08em;
    }

    .social-modern .nav-menu-4 .nav-menu li a,
    .social-modern .header_3 .nav-menu-4 .nav-menu a {
        padding: 20px 8px;
        font-size: 10px;
    }

    .social-modern .social-journey-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .social-modern .container {
        width: min(100% - 28px, 1240px);
    }

    .social-modern .altranative-header {
        padding: 0 !important;
        border-top-width: 3px;
    }

    .social-modern .altranative-header .menu-wrapper {
        min-height: 64px;
        padding: 7px 14px;
    }

    .social-modern .social-mobile-topbar {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .social-modern .altranative-header .alt-menu-btn,
    .social-modern .social-mobile-whatsapp-shortcut {
        display: inline-grid;
        width: 42px;
        height: 42px;
        margin: 0;
        place-items: center;
        border: 1px solid rgba(7, 47, 85, .1);
        border-radius: 13px;
        box-shadow: 0 6px 18px rgba(7, 47, 85, .1);
    }

    .social-modern .altranative-header .alt-menu-btn {
        position: relative;
        top: auto;
        left: auto;
        float: none;
        background: #f2f9fd;
    }

    .social-modern .altranative-header .logo-area {
        display: flex;
        justify-content: center;
        width: auto;
        margin: 0;
        text-align: center;
    }

    .social-modern .altranative-header .logo-area img {
        width: 136px;
        max-height: 48px;
    }

    .social-modern .social-mobile-whatsapp-shortcut {
        justify-self: end;
        color: #fff;
        background: linear-gradient(145deg, #2cd466, #16a74a);
        box-shadow: 0 7px 18px rgba(22, 167, 74, .24);
        font-size: 21px;
    }

    .social-modern .social-mobile-whatsapp-shortcut:hover,
    .social-modern .social-mobile-whatsapp-shortcut:focus {
        color: #fff;
        transform: translateY(-1px);
    }

    .social-modern .social-mobile-access-bar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 7px 12px 10px;
        border-top: 1px solid rgba(7, 47, 85, .07);
        background: linear-gradient(180deg, #fff, #f5fbfe);
    }

    .social-modern .social-mobile-access {
        display: grid;
        grid-template-columns: 34px minmax(0, 1fr);
        align-items: center;
        gap: 8px;
        min-height: 49px;
        padding: 7px 10px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 14px;
        color: #fff;
        background: linear-gradient(135deg, #073052, #0a4d79);
        box-shadow: 0 8px 20px rgba(7, 47, 85, .15);
    }

    .social-modern .social-mobile-access--sas {
        color: #082f55;
        border-color: rgba(255, 190, 45, .55);
        background: linear-gradient(135deg, #ffd25b, #ffb823);
        box-shadow: 0 8px 20px rgba(255, 184, 35, .2);
    }

    .social-modern .social-mobile-access-icon,
    .social-modern .social-mobile-access-mark {
        display: inline-grid;
        width: 34px;
        height: 34px;
        place-items: center;
        border-radius: 10px;
        color: var(--social-navy-deep);
        background: var(--social-cyan);
        font-size: 15px;
        font-weight: 900;
    }

    .social-modern .social-mobile-access-mark {
        color: #fff;
        background: var(--social-navy-deep);
        font-size: 11px;
        letter-spacing: -.02em;
    }

    .social-modern .social-mobile-access small,
    .social-modern .social-mobile-access strong {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .social-modern .social-mobile-access small {
        margin-bottom: 1px;
        opacity: .74;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: .11em;
        line-height: 1;
        text-transform: uppercase;
    }

    .social-modern .social-mobile-access strong {
        color: inherit;
        font-size: 11px;
        line-height: 1.2;
    }

    .social-modern #menu-container .menu-list {
        top: 131px;
        width: min(88vw, 320px);
        height: calc(100vh - 131px);
        overflow-y: auto;
        box-shadow: 18px 26px 44px rgba(0, 22, 42, .24);
    }

    .social-modern .slider-section,
    .social-modern .breadcrumb-section {
        margin-top: 0 !important;
    }

    .social-modern .social-hero-card-section {
        margin-top: -28px;
    }

    .social-modern .social-hero-card {
        grid-template-columns: 1fr;
    }

    .social-modern .social-hero-actions {
        justify-content: flex-start;
    }

    .social-modern .social-section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-modern .social-momentum {
        min-height: 0;
        background-attachment: scroll;
    }

    .social-modern .social-momentum-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .social-modern .why-choose-section {
        background-attachment: scroll;
    }

    .social-modern #contact-area .footer-content > .row {
        grid-template-columns: 1fr 1fr;
    }

    .social-modern #contact-area .footer-content > .row > :last-child {
        grid-column: 1 / -1;
    }

    .social-modern .course-details-section .col-md-9,
    .social-modern .course-details-section .col-md-3,
    .social-modern .course-details-section .col-md-8,
    .social-modern .course-details-section .col-md-4 {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    body.social-modern {
        font-size: 15px;
    }

    .social-modern .social-whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-width: 58px;
        min-height: 58px;
        padding: 5px;
    }

    .social-modern .social-whatsapp-float-icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        margin: 0;
    }

    .social-modern .social-whatsapp-float-copy {
        display: none;
    }

    .social-modern .social-hero-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .social-modern #slide {
        aspect-ratio: 1 / 1;
        min-height: 0 !important;
        height: auto !important;
        background: var(--social-navy-deep);
    }

    .social-modern #slide .rev_slider_wrapper,
    .social-modern #rev_slider_3_1,
    .social-modern #rev_slider_3_1 > ul,
    .social-modern #rev_slider_3_1 > ul > li,
    .social-modern #rev_slider_3_1 .slotholder,
    .social-modern #rev_slider_3_1 .tp-bgimg {
        min-height: 0 !important;
        height: 100% !important;
    }

    .social-modern #rev_slider_3_1 .tp-bgimg {
        background-color: var(--social-navy-deep) !important;
        background-position: center !important;
        background-size: cover !important;
    }

    .social-modern #slide.social-banner-loading {
        overflow: hidden;
    }

    .social-modern #slide.social-banner-loading::before {
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
            linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, .08) 42%, transparent 58%),
            var(--social-navy-deep);
        background-size: 220% 100%;
        content: "";
        animation: social-banner-loading 1.25s linear infinite;
        pointer-events: none;
    }

    .social-modern #slide.social-banner-ready::before {
        display: none;
    }

    .social-modern .slider-section::after,
    .social-modern #slide .tparrows {
        display: none !important;
    }

    .social-modern .social-hero-card-section {
        margin-top: 0;
        padding: 16px 0 24px;
    }

    .social-modern .social-hero-card h1 {
        font-size: clamp(1.62rem, 8vw, 2rem);
        line-height: 1.08;
    }

    .social-modern .social-hero-card p {
        margin-bottom: 18px;
        font-size: 13px;
        line-height: 1.65;
    }

    .social-modern .social-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .social-modern .social-btn {
        width: 100%;
    }

    .social-modern .social-journey,
    .social-modern .social-momentum,
    .social-modern .popular-course-section,
    .social-modern .why-choose-section,
    .social-modern .latest-area-section,
    .social-modern .genius-teacher-section-2,
    .social-modern .testimonial_2_section,
    .social-modern .course-details-section,
    .social-modern .faq-page-section {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .social-modern .social-journey-grid,
    .social-modern .social-momentum-cards,
    .social-modern .why-choose-section .extra-features-content .row {
        grid-template-columns: 1fr;
    }

    .social-modern .social-journey-card {
        align-items: center;
        justify-content: center;
        min-height: 270px;
        padding: 25px 22px;
        text-align: center;
    }

    .social-modern .social-journey-icon {
        flex: 0 0 58px;
        margin: 0 auto;
    }

    .social-modern .social-journey-step {
        margin: 19px 0 7px;
        text-align: center;
    }

    .social-modern .social-journey-card h3,
    .social-modern .social-journey-card p {
        width: 100%;
        text-align: center;
    }

    .social-modern .social-journey-card p {
        max-width: 310px;
        margin-right: auto;
        margin-left: auto;
    }

    .social-modern .social-journey-card a {
        justify-content: center;
    }

    .social-modern .social-momentum-card:nth-child(2),
    .social-modern .social-momentum-card:nth-child(3) {
        transform: none;
    }

    .social-modern .social-momentum-card {
        display: flex;
        min-height: 215px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 27px 22px;
        text-align: center;
        transition:
            border-color .38s ease,
            background .38s ease,
            box-shadow .38s ease,
            transform .38s cubic-bezier(.2, .8, .2, 1);
    }

    .social-modern .social-momentum-card i {
        display: inline-flex;
        width: 54px;
        height: 54px;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 16px;
        background: rgba(255, 255, 255, .08);
        transition:
            color .38s ease,
            background .38s ease,
            box-shadow .38s ease,
            transform .38s cubic-bezier(.2, .8, .2, 1);
    }

    .social-modern .social-momentum-card h3,
    .social-modern .social-momentum-card p {
        width: 100%;
        max-width: 300px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .social-modern.social-js .social-momentum-card.is-scroll-active {
        border-color: rgba(255, 200, 61, .7);
        background:
            radial-gradient(circle at 100% 0, rgba(255, 200, 61, .18), transparent 10rem),
            rgba(0, 163, 224, .26);
        box-shadow:
            0 22px 40px rgba(0, 15, 29, .24),
            inset 0 1px 0 rgba(255, 255, 255, .18);
        transform: translateY(-7px) scale(1.018) !important;
    }

    .social-modern.social-js .social-momentum-card.is-scroll-active i {
        color: var(--social-navy);
        background: var(--social-yellow);
        box-shadow: 0 12px 26px rgba(255, 200, 61, .23);
        transform: rotate(-6deg) scale(1.08);
    }

    .social-modern .why-choose-section .extra-icon-text,
    .social-modern .why-choose-section .extra-icon-text.text-right {
        min-height: 0;
        padding: 20px;
    }

    .social-modern .latest-area-section .col-md-4 {
        margin-top: 18px;
    }

    .social-modern .latest-area-content {
        padding: 20px;
    }

    .social-modern .testimonial_2_section .testimonial-slide {
        padding: 22px 16px;
        border-radius: 22px;
    }

    .social-modern .testimonial_2_section .student-qoute {
        padding: 22px;
    }

    .social-modern .social-testimonial-cta {
        grid-template-columns: auto 1fr;
        gap: 13px;
        padding: 16px;
        border-radius: 18px;
    }

    .social-modern .social-testimonial-cta > a {
        grid-column: 1 / -1;
        width: 100%;
    }

    .social-modern #contact-area .footer-content > .row {
        grid-template-columns: 1fr;
    }

    .social-modern #contact-area .footer-content > .row > :last-child {
        grid-column: auto;
    }

    .social-modern #contact-area .footer-menu {
        float: none;
        margin-right: 0;
    }

    .social-modern .copy-right-menu-item {
        float: none !important;
        text-align: left;
    }

    .social-modern .breadcrumb-section {
        min-height: 190px;
        padding: 40px 0 38px;
    }

    .social-modern .breadcrumb-section .breadcrumb {
        display: inline-flex;
        max-width: 100%;
        margin-top: 14px;
        padding: 7px 9px;
    }

    .social-modern .breadcrumb-section .breadcrumb-head,
    .social-modern .breadcrumb-section .breadcrumb-head span {
        font-size: clamp(1.65rem, 8vw, 2.35rem);
        line-height: 1.12;
    }

    .social-modern .breadcrumb-section .breadcrumb-item,
    .social-modern .breadcrumb-section .breadcrumb-item a,
    .social-modern .breadcrumb-section .breadcrumb-item.active {
        font-size: 8px;
        letter-spacing: .035em;
    }

    .social-modern .breadcrumb-section .breadcrumb-item {
        padding-right: 6px;
        padding-left: 6px;
    }

    .social-modern .breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
        margin-right: 6px;
        font-size: 6px;
    }

    .social-modern .breadcrumb-section .breadcrumb-item.active {
        max-width: 38vw;
    }

    .social-modern .course-details-item,
    .social-modern .blog-post-content {
        padding: 20px;
    }
}

@keyframes social-banner-loading {
    from {
        background-position: 120% 0;
    }

    to {
        background-position: -120% 0;
    }
}

@media (max-width: 480px) {
    .social-modern .altranative-header .menu-wrapper {
        padding-right: 10px;
        padding-left: 10px;
    }

    .social-modern .altranative-header .logo-area img {
        width: 122px;
    }

    .social-modern .social-mobile-access-bar {
        gap: 6px;
        padding-right: 8px;
        padding-left: 8px;
    }

    .social-modern .social-mobile-access {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 6px;
        padding-right: 7px;
        padding-left: 7px;
    }

    .social-modern .social-mobile-access-icon,
    .social-modern .social-mobile-access-mark {
        width: 30px;
        height: 30px;
        border-radius: 9px;
    }

    .social-modern .social-mobile-access strong {
        font-size: 10px;
    }

    .social-modern .social-journey-grid {
        grid-template-columns: 1fr;
    }

    .social-modern .social-momentum-grid {
        gap: 34px;
    }

    .social-modern .social-parallax-s {
        right: -22%;
    }
}

/* Sidebars das páginas internas */
.social-modern .side-bar {
    display: grid;
    gap: 18px;
}

.social-modern .side-bar .side-bar-widget {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 22px;
    border: 1px solid rgba(7, 47, 85, .1);
    border-radius: 23px;
    background:
        radial-gradient(circle at 100% 0, rgba(24, 200, 244, .1), transparent 10rem),
        #fff;
    box-shadow: 0 16px 38px rgba(7, 47, 85, .09);
}

.social-modern .side-bar .side-bar-widget::before {
    position: absolute;
    top: 0;
    right: 22px;
    left: 22px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--social-cyan), var(--social-blue), var(--social-yellow));
    content: "";
}

.social-modern .side-bar .side-bar-widget .widget-title {
    position: relative;
    margin: 0 0 17px;
    padding-bottom: 13px;
    color: var(--social-navy);
    font-size: 20px;
    font-weight: 850;
    letter-spacing: -.035em;
    line-height: 1.1;
}

.social-modern .side-bar .side-bar-widget .widget-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 38px;
    height: 2px;
    border-radius: 999px;
    background: var(--social-cyan);
    content: "";
}

.social-modern .side-bar .side-bar-widget .widget-title span {
    color: var(--social-blue);
    font-weight: 850;
}

.social-modern .side-bar .latest-news-posts {
    display: grid;
    gap: 9px;
}

.social-modern .side-bar .latest-news-area {
    display: grid;
    width: 100%;
    max-width: none;
    grid-template-columns: 74px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    gap: 4px 11px;
    align-items: start;
    margin: 0;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: #f6fafc;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.social-modern .side-bar .latest-news-area:hover {
    border-color: rgba(0, 150, 215, .18);
    background: #fff;
    box-shadow: 0 11px 24px rgba(7, 47, 85, .1);
    transform: translateY(-2px);
}

.social-modern .side-bar .latest-news-thumbnile {
    grid-row: 1 / 3;
    width: 74px;
    height: 74px;
    margin: 0;
    float: none;
    overflow: hidden;
    border-radius: 12px;
    background: #dcebf4;
}

.social-modern .side-bar .latest-news-thumbnile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s cubic-bezier(.2, .75, .2, 1);
}

.social-modern .side-bar .latest-news-area:hover .latest-news-thumbnile img {
    transform: scale(1.06);
}

.social-modern .side-bar .latest-news-thumbnile .hover-search,
.social-modern .side-bar .latest-news-thumbnile .blakish-overlay {
    display: none;
}

.social-modern .side-bar .latest-news-area .date-meta {
    grid-column: 2;
    margin: 1px 0 2px;
    color: #7990a3;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .025em;
    line-height: 1.25;
}

.social-modern .side-bar .latest-news-area .date-meta i {
    margin-right: 4px;
    color: var(--social-blue);
}

.social-modern .side-bar .latest-news-area .latest-title {
    grid-column: 2;
    margin: 0;
    color: var(--social-navy);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.28;
}

.social-modern .side-bar .latest-news-area .latest-title a {
    display: -webkit-box;
    overflow: hidden;
    color: inherit;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.social-modern .side-bar .latest-news-area .latest-title a:hover {
    color: var(--social-blue);
}

.social-modern .side-bar .view-all-btn {
    width: 100%;
    margin-top: 5px;
}

.social-modern .side-bar .view-all-btn a {
    display: flex;
    width: 100%;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(0, 150, 215, .13);
    border-radius: 13px;
    color: var(--social-blue);
    background: rgba(24, 200, 244, .075);
    font-size: 11px;
    font-weight: 850;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.social-modern .side-bar .view-all-btn a i {
    margin: 0;
    color: var(--social-cyan);
}

.social-modern .side-bar .view-all-btn a:hover {
    color: #fff;
    background: var(--social-navy);
    transform: translateY(-1px);
}

.social-modern .side-bar .post-categori {
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.social-modern .side-bar .post-categori ul {
    display: grid;
    gap: 8px;
    margin: 0;
}

.social-modern .side-bar .post-categori .cat-item {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(7, 47, 85, .075);
    border-radius: 13px;
    background: #f6fafc;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.social-modern .side-bar .post-categori .cat-item::before {
    position: absolute;
    top: 50%;
    left: 11px;
    z-index: 1;
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 8px;
    color: var(--social-blue);
    background: rgba(24, 200, 244, .13);
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-size: 8px;
    font-weight: 900;
    transform: translateY(-50%);
}

.social-modern .side-bar .post-categori .cat-item a {
    position: relative;
    z-index: 2;
    display: block;
    min-height: 45px;
    padding: 13px 12px 12px 47px;
    color: var(--social-navy);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;
}

.social-modern .side-bar .post-categori .cat-item:hover {
    border-color: var(--social-navy);
    background: var(--social-navy);
    transform: translateX(3px);
}

.social-modern .side-bar .post-categori .cat-item:hover::before {
    color: var(--social-navy);
    background: var(--social-yellow);
}

.social-modern .side-bar .post-categori .cat-item:hover a {
    color: #fff;
}

@media (max-width: 991px) and (min-width: 768px) {
    .social-modern .course-details-section .side-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 22px;
    }
}

@media (max-width: 767px) {
    .social-modern .course-details-section .side-bar {
        grid-template-columns: 1fr;
        margin-top: 18px;
    }

    .social-modern .side-bar .side-bar-widget {
        padding: 20px;
        border-radius: 20px;
    }

    .social-modern .side-bar .latest-news-area {
        grid-template-columns: 82px minmax(0, 1fr);
        min-height: 102px;
        align-content: center;
    }

    .social-modern .side-bar .latest-news-thumbnile {
        width: 82px;
        height: 82px;
    }

    .social-modern .side-bar .latest-news-area .latest-title {
        font-size: 13px;
    }
}

/* Página O Colégio */
.social-modern .social-college-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 0 18%, rgba(24, 200, 244, .09), transparent 25rem),
        radial-gradient(circle at 100% 74%, rgba(255, 194, 46, .08), transparent 24rem),
        linear-gradient(180deg, #f8fcff, #fff);
}

.social-modern .social-college-main {
    display: grid;
    gap: 32px;
}

.social-modern .social-college-intro {
    display: grid;
    grid-template-columns: minmax(270px, .78fr) minmax(0, 1.22fr);
    overflow: hidden;
    border: 1px solid rgba(7, 47, 85, .1);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 25px 55px rgba(7, 47, 85, .1);
}

.social-modern .social-college-intro-media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #dcebf4;
}

.social-modern .social-college-intro-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(2, 35, 62, .76));
    content: "";
    pointer-events: none;
}

.social-modern .social-college-intro-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
    transition: filter .45s ease, transform .7s cubic-bezier(.2, .75, .2, 1);
}

.social-modern .social-college-intro:hover .social-college-intro-media img {
    filter: saturate(1.08) contrast(1.02);
    transform: scale(1.035);
}

.social-modern .social-college-media-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 54px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 15px;
    color: #fff;
    background: rgba(4, 38, 67, .6);
    box-shadow: 0 14px 30px rgba(0, 22, 39, .18);
    backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .025em;
}

.social-modern .social-college-media-badge i {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    color: var(--social-navy);
    background: var(--social-yellow);
    font-size: 14px;
}

.social-modern .social-college-intro-copy {
    position: relative;
    z-index: 1;
    padding: 42px 38px 38px;
}

.social-modern .social-college-intro-copy::after {
    position: absolute;
    top: -38px;
    right: -15px;
    z-index: -1;
    color: rgba(0, 139, 205, .035);
    content: "S";
    font-size: 210px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    transform: rotate(-8deg);
}

.social-modern .social-college-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--social-blue);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.social-modern .social-college-eyebrow::before {
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: var(--social-yellow);
    content: "";
}

.social-modern .social-college-intro h2,
.social-modern .social-college-section-heading h2,
.social-modern .social-college-method h2 {
    margin: 11px 0 17px;
    color: var(--social-navy);
    font-size: clamp(2rem, 3.1vw, 3.15rem);
    font-weight: 850;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.social-modern .social-college-intro h2 span,
.social-modern .social-college-section-heading h2 span,
.social-modern .social-college-method h2 span {
    color: var(--social-blue);
}

.social-modern .social-college-intro-copy > p {
    margin: 0 0 14px;
    color: #4f6b82;
    font-size: 14px;
    line-height: 1.72;
}

.social-modern .social-college-intro-copy .social-college-lead {
    color: var(--social-navy);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.62;
}

.social-modern .social-college-quote {
    position: relative;
    margin: 20px 0;
    padding: 18px 19px 17px 55px;
    border: 1px solid rgba(0, 152, 216, .12);
    border-left: 3px solid var(--social-cyan);
    border-radius: 0 16px 16px 0;
    background: linear-gradient(105deg, #eefaff, #f9fdff);
}

.social-modern .social-college-quote::before {
    position: absolute;
    top: 14px;
    left: 18px;
    color: var(--social-blue);
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    font-weight: 900;
}

.social-modern .social-college-quote p {
    margin: 0 0 5px;
    color: var(--social-navy);
    font-size: 14px;
    font-style: italic;
    font-weight: 650;
    line-height: 1.55;
}

.social-modern .social-college-quote cite {
    color: var(--social-blue);
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.social-modern .social-college-pillar-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.social-modern .social-college-pillar-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 8px 11px;
    border: 1px solid rgba(7, 47, 85, .09);
    border-radius: 11px;
    color: var(--social-navy);
    background: #fff;
    box-shadow: 0 7px 18px rgba(7, 47, 85, .055);
    font-size: 9px;
    font-weight: 800;
}

.social-modern .social-college-pillar-list i {
    color: var(--social-blue);
    font-size: 12px;
}

.social-modern .social-college-values {
    padding: 42px 38px;
    border: 1px solid rgba(7, 47, 85, .09);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0, rgba(24, 200, 244, .1), transparent 21rem),
        #f4faff;
    box-shadow: 0 22px 48px rgba(7, 47, 85, .08);
}

.social-modern .social-college-section-heading {
    display: grid;
    grid-template-columns: minmax(250px, .8fr) minmax(0, 1fr);
    align-items: end;
    gap: 34px;
    margin-bottom: 25px;
}

.social-modern .social-college-section-heading h2 {
    margin-bottom: 0;
}

.social-modern .social-college-section-heading > p {
    margin: 0 0 3px;
    color: #567188;
    font-size: 13px;
    line-height: 1.7;
}

.social-modern .social-college-values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.social-modern .social-college-value-card {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    min-height: 154px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(7, 47, 85, .09);
    border-radius: 19px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 13px 28px rgba(7, 47, 85, .055);
    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.social-modern .social-college-value-card::after {
    position: absolute;
    right: -20px;
    bottom: -25px;
    width: 88px;
    height: 88px;
    border: 18px solid rgba(0, 152, 216, .035);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.social-modern .social-college-value-card:hover {
    border-color: rgba(0, 152, 216, .27);
    box-shadow: 0 20px 38px rgba(7, 47, 85, .11);
    transform: translateY(-5px);
}

.social-modern .social-college-value-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(145deg, var(--social-cyan), var(--social-blue));
    box-shadow: 0 13px 25px rgba(0, 152, 216, .23);
    font-size: 23px;
    transition: transform .35s ease;
}

.social-modern .social-college-value-card:hover .social-college-value-icon {
    transform: rotate(-5deg) scale(1.06);
}

.social-modern .social-college-value-card h3 {
    margin: 3px 0 8px;
    color: var(--social-navy);
    font-size: 15px;
    font-weight: 850;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.social-modern .social-college-value-card p {
    margin: 0;
    color: #567188;
    font-size: 12px;
    line-height: 1.65;
}

.social-modern .social-college-value-card--wide {
    grid-column: 1 / -1;
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 124px;
}

.social-modern .social-college-method {
    position: relative;
    display: grid;
    grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
    gap: 34px;
    padding: 42px;
    overflow: hidden;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(24, 200, 244, .18), transparent 21rem),
        linear-gradient(135deg, #041f38, var(--social-navy) 62%, #075b8b);
    box-shadow: 0 25px 54px rgba(3, 35, 61, .19);
}

.social-modern .social-college-method::after {
    position: absolute;
    right: -58px;
    bottom: -92px;
    width: 240px;
    height: 240px;
    border: 42px solid rgba(255, 255, 255, .025);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.social-modern .social-college-method > * {
    position: relative;
    z-index: 1;
}

.social-modern .social-college-method .social-college-eyebrow {
    color: var(--social-cyan);
}

.social-modern .social-college-method h2 {
    color: #fff;
    font-size: clamp(2rem, 2.8vw, 2.8rem);
}

.social-modern .social-college-method h2 span {
    color: var(--social-cyan);
}

.social-modern .social-college-method-heading > p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.75;
}

.social-modern .social-college-method-steps {
    display: grid;
    gap: 10px;
}

.social-modern .social-college-method-steps article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(8px);
    transition: background .3s ease, transform .3s ease;
}

.social-modern .social-college-method-steps article:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateX(5px);
}

.social-modern .social-college-step-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    color: var(--social-navy);
    background: var(--social-yellow);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .13);
    font-size: 16px;
}

.social-modern .social-college-method-steps h3 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 850;
}

.social-modern .social-college-method-steps p {
    margin: 0;
    color: rgba(255, 255, 255, .67);
    font-size: 11px;
    line-height: 1.55;
}

@media (max-width: 991px) {
    .social-modern .social-college-aside {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .social-modern .social-college-main {
        gap: 22px;
    }

    .social-modern .social-college-intro {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .social-modern .social-college-intro-media {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .social-modern .social-college-intro-media img {
        min-height: 0;
    }

    .social-modern .social-college-intro-copy {
        padding: 29px 22px 25px;
    }

    .social-modern .social-college-intro h2,
    .social-modern .social-college-section-heading h2,
    .social-modern .social-college-method h2 {
        font-size: clamp(1.85rem, 9vw, 2.4rem);
    }

    .social-modern .social-college-intro-copy .social-college-lead {
        font-size: 15px;
    }

    .social-modern .social-college-intro-copy > p {
        font-size: 13px;
        line-height: 1.7;
    }

    .social-modern .social-college-quote {
        padding: 17px 16px 16px 47px;
    }

    .social-modern .social-college-quote::before {
        left: 15px;
        font-size: 17px;
    }

    .social-modern .social-college-pillar-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .social-modern .social-college-values {
        padding: 29px 18px 18px;
        border-radius: 22px;
    }

    .social-modern .social-college-section-heading {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 21px;
        padding: 0 4px;
    }

    .social-modern .social-college-values-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .social-modern .social-college-value-card,
    .social-modern .social-college-value-card--wide {
        display: flex;
        grid-column: auto;
        min-height: 178px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 23px 18px;
        border-radius: 16px;
        text-align: center;
        transition:
            border-color .38s ease,
            background .38s ease,
            box-shadow .38s ease,
            transform .38s cubic-bezier(.2, .8, .2, 1);
    }

    .social-modern .social-college-value-icon {
        width: 52px;
        height: 52px;
        margin: 0 auto 14px;
        border-radius: 15px;
        font-size: 20px;
    }

    .social-modern .social-college-value-card h3 {
        width: 100%;
        margin: 0 0 7px;
        font-size: 13px;
        text-align: center;
    }

    .social-modern .social-college-value-card p {
        width: 100%;
        max-width: 310px;
        margin-right: auto;
        margin-left: auto;
        font-size: 11px;
        text-align: center;
    }

    .social-modern.social-js .social-college-value-card.is-scroll-active {
        border-color: rgba(24, 200, 244, .5);
        background:
            radial-gradient(circle at 100% 0, rgba(24, 200, 244, .22), transparent 11rem),
            linear-gradient(135deg, var(--social-navy-deep), #075d8d);
        box-shadow: 0 22px 40px rgba(7, 47, 85, .2);
        transform: translateY(-7px) scale(1.018) !important;
    }

    .social-modern.social-js .social-college-value-card.is-scroll-active .social-college-value-icon {
        color: var(--social-navy);
        background: var(--social-yellow);
        box-shadow: 0 12px 27px rgba(255, 200, 61, .24);
        transform: rotate(-6deg) scale(1.08);
    }

    .social-modern.social-js .social-college-value-card.is-scroll-active h3 {
        color: #fff;
    }

    .social-modern.social-js .social-college-value-card.is-scroll-active p {
        color: rgba(255, 255, 255, .72);
    }

    .social-modern .social-college-method {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 20px 20px;
        border-radius: 22px;
    }

    .social-modern .social-college-method-steps article {
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 14px;
    }

    .social-modern .social-college-step-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
}

/* Página de Matrícula */
.social-modern .social-enrollment-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 0 22%, rgba(24, 200, 244, .09), transparent 25rem),
        radial-gradient(circle at 100% 76%, rgba(255, 200, 61, .09), transparent 24rem),
        linear-gradient(180deg, #f8fcff, #fff);
}

.social-modern .social-enrollment-card {
    overflow: hidden;
    padding: 0;
    border-radius: 29px;
    box-shadow: 0 28px 60px rgba(7, 47, 85, .12);
}

.social-modern .social-enrollment-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: var(--social-navy);
    isolation: isolate;
}

.social-modern .social-enrollment-hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3, 29, 52, .92) 0%, rgba(4, 40, 70, .73) 48%, rgba(4, 40, 70, .15) 100%),
        linear-gradient(180deg, transparent 46%, rgba(3, 29, 52, .55));
    content: "";
    pointer-events: none;
}

.social-modern .social-enrollment-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: filter .45s ease, transform .8s cubic-bezier(.2, .75, .2, 1);
}

.social-modern .social-enrollment-card:hover .social-enrollment-hero img {
    filter: saturate(1.05) contrast(1.025);
    transform: scale(1.025);
}

.social-modern .social-enrollment-hero-overlay {
    position: absolute;
    bottom: 48px;
    left: 42px;
    z-index: 2;
    width: min(620px, calc(100% - 84px));
    color: #fff;
}

.social-modern .social-enrollment-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--social-yellow);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.social-modern .social-enrollment-kicker::before {
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    content: "";
}

.social-modern .social-enrollment-hero h2 {
    max-width: 560px;
    margin: 12px 0 16px;
    color: #fff;
    font-size: clamp(2.45rem, 4.2vw, 4.35rem);
    font-weight: 850;
    letter-spacing: -.055em;
    line-height: .98;
}

.social-modern .social-enrollment-hero h2 span {
    color: var(--social-cyan);
}

.social-modern .social-enrollment-hero p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 15px;
    line-height: 1.65;
}

.social-modern .social-enrollment-hero-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 9px 14px 9px 10px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 15px;
    color: #fff;
    background: rgba(3, 35, 61, .58);
    box-shadow: 0 14px 30px rgba(0, 18, 31, .16);
    backdrop-filter: blur(12px);
    font-size: 10px;
    font-weight: 750;
}

.social-modern .social-enrollment-hero-badge i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 9px;
    color: var(--social-navy);
    background: var(--social-yellow);
    font-size: 13px;
}

.social-modern .social-enrollment-body {
    padding: 45px 40px 40px;
    background:
        radial-gradient(circle at 100% 0, rgba(24, 200, 244, .07), transparent 18rem),
        #fff;
}

.social-modern .social-enrollment-intro {
    max-width: 760px;
    margin-bottom: 29px;
}

.social-modern .social-enrollment-intro h2 {
    margin: 11px 0 15px;
    color: var(--social-navy);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 850;
    letter-spacing: -.05em;
    line-height: 1.08;
}

.social-modern .social-enrollment-intro h2 span {
    color: var(--social-blue);
}

.social-modern .social-enrollment-intro p {
    margin: 0;
    color: #526e85;
    font-size: 15px;
    line-height: 1.8;
}

.social-modern .social-enrollment-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.social-modern .social-enrollment-highlight {
    position: relative;
    min-height: 210px;
    padding: 23px 20px;
    overflow: hidden;
    border: 1px solid rgba(7, 47, 85, .09);
    border-radius: 19px;
    background: #f6fbfe;
    box-shadow: 0 13px 27px rgba(7, 47, 85, .055);
    transition:
        border-color .32s ease,
        background .32s ease,
        box-shadow .32s ease,
        transform .32s ease;
}

.social-modern .social-enrollment-highlight::after {
    position: absolute;
    right: -28px;
    bottom: -35px;
    width: 105px;
    height: 105px;
    border: 25px solid rgba(0, 152, 216, .045);
    border-radius: 50%;
    content: "";
}

.social-modern .social-enrollment-highlight:hover {
    border-color: rgba(0, 152, 216, .28);
    background: #fff;
    box-shadow: 0 20px 38px rgba(7, 47, 85, .1);
    transform: translateY(-5px);
}

.social-modern .social-enrollment-highlight-icon {
    display: grid;
    width: 51px;
    height: 51px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(145deg, var(--social-cyan), var(--social-blue));
    box-shadow: 0 11px 23px rgba(0, 152, 216, .2);
    font-size: 18px;
}

.social-modern .social-enrollment-highlight h3 {
    margin: 0 0 8px;
    color: var(--social-navy);
    font-size: 15px;
    font-weight: 850;
}

.social-modern .social-enrollment-highlight p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #5b7489;
    font-size: 11px;
    line-height: 1.65;
}

.social-modern .social-enrollment-story {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 23px;
    padding: 28px;
    border: 1px solid rgba(0, 152, 216, .12);
    border-radius: 21px;
    background:
        radial-gradient(circle at 100% 0, rgba(24, 200, 244, .1), transparent 14rem),
        linear-gradient(135deg, #eef9ff, #fbfdff);
}

.social-modern .social-enrollment-story-icon {
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    border-radius: 22px;
    color: var(--social-navy);
    background: var(--social-yellow);
    box-shadow: 0 14px 28px rgba(255, 183, 0, .19);
    font-size: 28px;
}

.social-modern .social-enrollment-story span {
    color: var(--social-blue);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.social-modern .social-enrollment-story h2 {
    margin: 7px 0 9px;
    color: var(--social-navy);
    font-size: 21px;
    font-weight: 850;
    letter-spacing: -.025em;
}

.social-modern .social-enrollment-story p {
    margin: 0;
    color: #557087;
    font-size: 12px;
    line-height: 1.72;
}

.social-modern .social-enrollment-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(330px, 1.08fr);
    align-items: center;
    gap: 34px;
    padding: 42px 40px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(24, 200, 244, .19), transparent 21rem),
        linear-gradient(135deg, #041f38, var(--social-navy) 62%, #075d8d);
}

.social-modern .social-enrollment-cta::after {
    position: absolute;
    right: -55px;
    bottom: -110px;
    width: 245px;
    height: 245px;
    border: 44px solid rgba(255, 255, 255, .025);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.social-modern .social-enrollment-cta > * {
    position: relative;
    z-index: 1;
}

.social-modern .social-enrollment-cta h2 {
    margin: 10px 0 10px;
    color: #fff;
    font-size: clamp(1.75rem, 2.7vw, 2.65rem);
    font-weight: 850;
    letter-spacing: -.04em;
    line-height: 1.08;
}

.social-modern .social-enrollment-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    line-height: 1.65;
}

.social-modern .social-enrollment-cta-actions {
    display: grid;
    gap: 10px;
}

.social-modern .social-enrollment-contact {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    min-height: 68px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 17px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(9px);
    transition:
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.social-modern .social-enrollment-contact:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .13);
    box-shadow: 0 14px 28px rgba(0, 20, 36, .18);
    transform: translateX(5px);
}

.social-modern .social-enrollment-contact--whatsapp {
    border-color: rgba(88, 241, 150, .25);
    background: rgba(16, 185, 92, .15);
}

.social-modern .social-enrollment-contact--whatsapp:hover {
    border-color: rgba(88, 241, 150, .55);
    background: rgba(16, 185, 92, .28);
}

.social-modern .social-enrollment-contact-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    color: var(--social-navy);
    background: var(--social-yellow);
    font-size: 17px;
}

.social-modern .social-enrollment-contact--whatsapp .social-enrollment-contact-icon {
    color: #fff;
    background: #16b85c;
}

.social-modern .social-enrollment-contact small,
.social-modern .social-enrollment-contact strong {
    display: block;
}

.social-modern .social-enrollment-contact small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .61);
    font-size: 8px;
    font-weight: 750;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.social-modern .social-enrollment-contact strong {
    color: #fff;
    font-size: 15px;
    font-weight: 850;
    letter-spacing: -.01em;
}

@media (max-width: 991px) {
    .social-modern .social-enrollment-aside {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .social-modern .social-enrollment-card {
        border-radius: 22px;
    }

    .social-modern .social-enrollment-hero {
        min-height: 430px;
    }

    .social-modern .social-enrollment-hero::after {
        background:
            linear-gradient(180deg, rgba(3, 29, 52, .18) 0%, rgba(3, 29, 52, .9) 72%),
            linear-gradient(90deg, rgba(3, 29, 52, .38), transparent);
    }

    .social-modern .social-enrollment-hero-overlay {
        right: 22px;
        bottom: 28px;
        left: 22px;
        width: auto;
        text-align: center;
    }

    .social-modern .social-enrollment-kicker {
        justify-content: center;
    }

    .social-modern .social-enrollment-hero h2 {
        margin-right: auto;
        margin-left: auto;
        font-size: clamp(2.05rem, 10.5vw, 3rem);
    }

    .social-modern .social-enrollment-hero p {
        margin-right: auto;
        margin-left: auto;
        font-size: 13px;
    }

    .social-modern .social-enrollment-hero-badge {
        top: 16px;
        right: 16px;
        left: 16px;
        justify-content: center;
        width: auto;
    }

    .social-modern .social-enrollment-body {
        padding: 30px 20px 22px;
    }

    .social-modern .social-enrollment-intro {
        text-align: center;
    }

    .social-modern .social-enrollment-intro .social-college-eyebrow {
        justify-content: center;
    }

    .social-modern .social-enrollment-intro h2 {
        font-size: clamp(1.8rem, 8.5vw, 2.35rem);
    }

    .social-modern .social-enrollment-intro p {
        font-size: 13px;
        line-height: 1.72;
    }

    .social-modern .social-enrollment-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .social-modern .social-enrollment-highlight {
        min-height: 0;
        padding: 23px 19px;
        text-align: center;
    }

    .social-modern .social-enrollment-highlight-icon {
        margin-right: auto;
        margin-left: auto;
    }

    .social-modern .social-enrollment-highlight p {
        max-width: 300px;
        margin-right: auto;
        margin-left: auto;
    }

    .social-modern .social-enrollment-story {
        grid-template-columns: 1fr;
        gap: 17px;
        padding: 25px 20px;
        text-align: center;
    }

    .social-modern .social-enrollment-story-icon {
        width: 67px;
        height: 67px;
        margin: 0 auto;
        border-radius: 19px;
        font-size: 23px;
    }

    .social-modern .social-enrollment-story h2 {
        font-size: 19px;
    }

    .social-modern .social-enrollment-cta {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 31px 20px 22px;
        text-align: center;
    }

    .social-modern .social-enrollment-cta .social-enrollment-kicker {
        justify-content: center;
    }

    .social-modern .social-enrollment-contact {
        text-align: left;
    }
}

/* Galeria de álbuns */
.social-modern .social-gallery-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 0 16%, rgba(24, 200, 244, .09), transparent 25rem),
        radial-gradient(circle at 100% 82%, rgba(255, 200, 61, .08), transparent 24rem),
        linear-gradient(180deg, #f8fcff, #fff);
}

.social-modern .social-gallery-shell {
    overflow: hidden;
    padding: 0;
    border-radius: 29px;
    box-shadow: 0 27px 58px rgba(7, 47, 85, .11);
}

.social-modern .social-gallery-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(250px, .9fr);
    align-items: end;
    gap: 36px;
    padding: 40px 38px 34px;
    border-bottom: 1px solid rgba(7, 47, 85, .08);
    background:
        radial-gradient(circle at 100% 0, rgba(24, 200, 244, .12), transparent 18rem),
        linear-gradient(145deg, #fff, #f6fbff);
}

.social-modern .social-gallery-intro h2 {
    max-width: 570px;
    margin: 10px 0 0;
    color: var(--social-navy);
    font-size: clamp(2rem, 3.4vw, 3.35rem);
    font-weight: 850;
    letter-spacing: -.052em;
    line-height: 1.05;
}

.social-modern .social-gallery-intro h2 span {
    color: var(--social-blue);
}

.social-modern .social-gallery-intro > p {
    margin: 0 0 4px;
    color: #557087;
    font-size: 13px;
    line-height: 1.72;
}

.social-modern .social-gallery-shell .genius-post-item {
    padding-bottom: 0;
}

.social-modern .social-gallery-shell .tab-content-1 {
    padding-top: 0 !important;
}

.social-modern .social-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
    padding: 20px;
    background: #f3f9fd;
}

.social-modern .social-album-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 475px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(7, 47, 85, .09);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 15px 33px rgba(7, 47, 85, .08);
    transition:
        border-color .35s ease,
        box-shadow .35s ease,
        transform .35s cubic-bezier(.2, .8, .2, 1);
}

.social-modern .social-album-card:hover {
    border-color: rgba(0, 152, 216, .27);
    box-shadow: 0 24px 48px rgba(7, 47, 85, .15);
    transform: translateY(-7px);
}

.social-modern .social-album-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #dceaf3;
}

.social-modern .social-album-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .45s ease, transform .7s cubic-bezier(.2, .75, .2, 1);
}

.social-modern .social-album-card:hover .social-album-media img {
    filter: saturate(1.08) contrast(1.025);
    transform: scale(1.055);
}

.social-modern .social-album-media-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 31, 54, .02) 35%, rgba(2, 31, 54, .72) 100%);
    pointer-events: none;
}

.social-modern .social-album-date,
.social-modern .social-album-type {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .19);
    border-radius: 11px;
    color: #fff;
    box-shadow: 0 9px 21px rgba(0, 21, 37, .15);
    backdrop-filter: blur(10px);
    font-size: 9px;
    font-weight: 800;
}

.social-modern .social-album-date {
    bottom: 13px;
    left: 13px;
    background: rgba(0, 152, 216, .86);
}

.social-modern .social-album-type {
    top: 13px;
    right: 13px;
    background: rgba(4, 39, 68, .68);
    letter-spacing: .055em;
    text-transform: uppercase;
}

.social-modern .social-album-date i,
.social-modern .social-album-type i {
    font-size: 10px;
}

.social-modern .social-album-body {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    padding: 23px 22px 21px;
}

.social-modern .social-album-eyebrow {
    color: var(--social-blue);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.social-modern .social-album-body h3 {
    display: -webkit-box;
    min-height: 48px;
    margin: 8px 0 10px;
    overflow: hidden;
    color: var(--social-navy);
    font-size: 20px;
    font-weight: 850;
    letter-spacing: -.025em;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.social-modern .social-album-body h3 a {
    color: inherit;
}

.social-modern .social-album-body h3 a:hover {
    color: var(--social-blue);
}

.social-modern .social-album-body p {
    display: -webkit-box;
    margin: 0 0 18px;
    overflow: hidden;
    color: #5b7489;
    font-size: 11px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.social-modern .social-album-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    min-height: 47px;
    margin-top: auto;
    padding: 8px 8px 8px 15px;
    border: 1px solid rgba(0, 152, 216, .13);
    border-radius: 14px;
    color: var(--social-navy);
    background: #f1faff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .035em;
    text-transform: uppercase;
    transition:
        border-color .3s ease,
        color .3s ease,
        background .3s ease;
}

.social-modern .social-album-action i {
    display: grid;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(145deg, var(--social-cyan), var(--social-blue));
    box-shadow: 0 8px 17px rgba(0, 152, 216, .18);
    transition: transform .3s ease;
}

.social-modern .social-album-action:hover {
    border-color: var(--social-navy);
    color: #fff;
    background: var(--social-navy);
}

.social-modern .social-album-action:hover i {
    transform: translateX(3px);
}

.social-modern .social-gallery-grid > nav {
    grid-column: 1 / -1;
    padding: 6px 0 3px;
}

.social-modern .social-gallery-grid .pagination {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin: 8px 0 0;
}

.social-modern .social-gallery-grid .pagination > li > a,
.social-modern .social-gallery-grid .pagination > li > span {
    display: grid;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    place-items: center;
    border: 1px solid rgba(7, 47, 85, .1);
    border-radius: 12px !important;
    color: var(--social-navy);
    background: #fff;
    box-shadow: 0 8px 17px rgba(7, 47, 85, .06);
    font-size: 11px;
    font-weight: 800;
}

.social-modern .social-gallery-grid .pagination > .active > a,
.social-modern .social-gallery-grid .pagination > li > a:hover {
    border-color: var(--social-blue);
    color: #fff;
    background: var(--social-blue);
}

@media (max-width: 991px) {
    .social-modern .social-gallery-aside {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .social-modern .social-gallery-shell {
        border-radius: 22px;
    }

    .social-modern .social-gallery-intro {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 29px 22px 25px;
        text-align: center;
    }

    .social-modern .social-gallery-intro .social-college-eyebrow {
        justify-content: center;
    }

    .social-modern .social-gallery-intro h2 {
        font-size: clamp(1.85rem, 8.7vw, 2.4rem);
    }

    .social-modern .social-gallery-intro > p {
        font-size: 12px;
    }

    .social-modern .social-gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
    }

    .social-modern .social-album-card {
        min-height: 0;
        border-radius: 18px;
    }

    .social-modern .social-album-media {
        aspect-ratio: 4 / 3;
    }

    .social-modern .social-album-body {
        padding: 21px 18px 18px;
        text-align: center;
    }

    .social-modern .social-album-body h3 {
        min-height: 0;
        font-size: 18px;
    }

    .social-modern .social-album-body p {
        max-width: 300px;
        margin-right: auto;
        margin-left: auto;
    }

    .social-modern .social-album-action {
        text-align: left;
    }
}

/* Página interna do álbum */
.social-modern .social-album-detail-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 0 18%, rgba(24, 200, 244, .09), transparent 25rem),
        radial-gradient(circle at 100% 78%, rgba(255, 200, 61, .08), transparent 24rem),
        linear-gradient(180deg, #f8fcff, #fff);
}

.social-modern .social-album-detail-card {
    overflow: hidden;
    padding: 0;
    border-radius: 29px;
    box-shadow: 0 28px 60px rgba(7, 47, 85, .12);
}

.social-modern .social-album-detail-intro {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    align-items: center;
    min-height: 0;
    padding: 24px;
    gap: 30px;
    border-bottom: 1px solid rgba(7, 47, 85, .08);
    background: #fff;
}

.social-modern .social-album-detail-cover {
    position: relative;
    width: 100%;
    height: 200px;
    max-height: 200px;
    overflow: hidden;
    border-radius: 20px;
    background: #dceaf3;
    box-shadow: 0 14px 30px rgba(7, 47, 85, .13);
}

.social-modern .social-album-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .45s ease, transform .8s cubic-bezier(.2, .75, .2, 1);
}

.social-modern .social-album-detail-card:hover .social-album-detail-cover img {
    filter: saturate(1.07) contrast(1.025);
    transform: scale(1.035);
}

.social-modern .social-album-detail-cover-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(2, 29, 50, .73));
    pointer-events: none;
}

.social-modern .social-album-detail-count {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 49px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 14px;
    color: #fff;
    background: rgba(3, 35, 61, .61);
    box-shadow: 0 13px 27px rgba(0, 18, 31, .17);
    backdrop-filter: blur(11px);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.social-modern .social-album-detail-count i {
    color: var(--social-yellow);
    font-size: 14px;
}

.social-modern .social-album-detail-copy {
    position: relative;
    align-self: center;
    padding: 14px 18px 14px 0;
}

.social-modern .social-album-detail-copy::after {
    position: absolute;
    top: -48px;
    right: -12px;
    z-index: -1;
    color: rgba(0, 139, 205, .035);
    content: "S";
    font-size: 220px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    transform: rotate(-8deg);
}

.social-modern .social-album-detail-copy h2 {
    margin: 11px 0 17px;
    color: var(--social-navy);
    font-size: clamp(2rem, 3.3vw, 3.3rem);
    font-weight: 850;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.social-modern .social-album-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.social-modern .social-album-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid rgba(0, 152, 216, .12);
    border-radius: 11px;
    color: var(--social-navy);
    background: #eff9fe;
    font-size: 9px;
    font-weight: 800;
}

.social-modern .social-album-detail-meta i {
    color: var(--social-blue);
}

.social-modern .social-album-detail-description {
    color: #567188;
    font-size: 13px;
    line-height: 1.75;
}

.social-modern .social-album-detail-description p {
    margin: 0 0 12px;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.social-modern .social-album-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 43px;
    margin-top: 13px;
    padding: 9px 14px;
    border: 1px solid rgba(7, 47, 85, .1);
    border-radius: 13px;
    color: var(--social-navy);
    background: #fff;
    box-shadow: 0 9px 20px rgba(7, 47, 85, .07);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .035em;
    text-transform: uppercase;
    transition:
        border-color .3s ease,
        color .3s ease,
        background .3s ease,
        transform .3s ease;
}

.social-modern .social-album-back:hover {
    border-color: var(--social-navy);
    color: #fff;
    background: var(--social-navy);
    transform: translateX(-3px);
}

.social-modern .social-album-back--compact {
    position: absolute;
    z-index: 4;
    top: 15px;
    right: 15px;
    gap: 6px;
    min-height: 31px;
    margin: 0;
    padding: 5px 9px;
    border-radius: 9px;
    color: #526d82;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 7px 18px rgba(7, 47, 85, .08);
    font-size: 8px;
    opacity: .82;
    backdrop-filter: blur(9px);
}

.social-modern .social-album-back--compact:hover {
    opacity: 1;
    transform: translateX(-2px);
}

.social-modern .social-album-see-photos {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 43px;
    margin-top: 13px;
    padding: 9px 15px;
    border: 1px solid rgba(0, 152, 216, .22);
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--social-blue), var(--social-cyan));
    box-shadow: 0 11px 24px rgba(0, 152, 216, .2);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .035em;
    text-transform: uppercase;
    transition: box-shadow .3s ease, transform .3s ease;
}

.social-modern .social-album-see-photos:hover {
    color: #fff;
    box-shadow: 0 15px 30px rgba(0, 152, 216, .28);
    transform: translateY(-2px);
}

.social-modern .social-album-photo-section {
    padding: 38px 28px 30px;
    background:
        radial-gradient(circle at 100% 0, rgba(24, 200, 244, .08), transparent 19rem),
        #f3f9fd;
}

.social-modern .social-album-photo-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, .7fr);
    align-items: end;
    gap: 32px;
    margin-bottom: 24px;
    padding: 0 7px;
}

.social-modern .social-album-photo-heading h2 {
    margin: 7px 0 0;
    color: var(--social-navy);
    font-size: clamp(1.8rem, 2.8vw, 2.65rem);
    font-weight: 850;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.social-modern .social-album-photo-heading > p {
    margin: 0 0 3px;
    color: #5a7489;
    font-size: 11px;
    line-height: 1.65;
}

.social-modern .social-album-photo-grid {
    display: block;
    margin: 0;
    padding: 0;
    column-count: 2;
    column-gap: 14px;
    list-style: none;
}

.social-modern .social-album-photo-item {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 14px;
    overflow: hidden;
    break-inside: avoid;
    border: 1px solid rgba(7, 47, 85, .09);
    border-radius: 18px;
    background: #dceaf3;
    box-shadow: 0 13px 28px rgba(7, 47, 85, .1);
    scroll-margin-top: 108px;
}

.social-modern .social-album-photo-item--featured {
    display: block;
    column-span: all;
}

.social-modern .social-album-photo-item a {
    position: relative;
    display: block;
}

.social-modern .social-album-photo-item img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 570px;
    object-fit: cover;
    transition: filter .45s ease, transform .7s cubic-bezier(.2, .75, .2, 1);
}

.social-modern .social-album-photo-item--featured img {
    aspect-ratio: 16 / 7;
}

.social-modern .social-album-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    color: #fff;
    background: linear-gradient(180deg, transparent 40%, rgba(2, 28, 49, .82) 100%);
    opacity: .78;
    transition: opacity .35s ease;
}

.social-modern .social-album-photo-overlay > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 11px;
    background: rgba(3, 35, 61, .54);
    backdrop-filter: blur(8px);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .045em;
    text-transform: uppercase;
    transform: translateY(4px);
    transition: transform .35s ease;
}

.social-modern .social-album-photo-overlay small {
    color: rgba(255, 255, 255, .76);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
}

.social-modern .social-album-photo-item:hover img,
.social-modern .social-album-photo-item:focus-within img {
    filter: saturate(1.08) contrast(1.025);
    transform: scale(1.045);
}

.social-modern .social-album-photo-item:hover .social-album-photo-overlay,
.social-modern .social-album-photo-item:focus-within .social-album-photo-overlay {
    opacity: 1;
}

.social-modern .social-album-photo-item:hover .social-album-photo-overlay > span,
.social-modern .social-album-photo-item:focus-within .social-album-photo-overlay > span {
    transform: translateY(0);
}

.social-modern .social-album-empty {
    padding: 54px 25px;
    border: 1px dashed rgba(0, 152, 216, .23);
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 255, 255, .72);
}

.social-modern .social-album-empty > i {
    display: grid;
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 19px;
    color: #fff;
    background: linear-gradient(145deg, var(--social-cyan), var(--social-blue));
    box-shadow: 0 13px 27px rgba(0, 152, 216, .2);
    font-size: 23px;
}

.social-modern .social-album-empty h3 {
    margin: 0 0 14px;
    color: var(--social-navy);
    font-size: 18px;
    font-weight: 850;
}

.social-modern .social-album-empty a {
    color: var(--social-blue);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
}

.social-modern .social-album-footer-actions {
    display: flex;
    justify-content: center;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(7, 47, 85, .1);
}

.social-modern .social-album-back--footer {
    margin-top: 0;
}

.social-modern .lightboxOverlay {
    background: #011426;
    opacity: .94 !important;
    backdrop-filter: blur(5px);
}

.social-modern .lb-outerContainer {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px 20px 0 0;
    background: #061d30;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}

.social-modern .lb-container {
    padding: 8px;
}

.social-modern .lb-image {
    border: 0 !important;
    border-radius: 13px;
}

.social-modern .lb-dataContainer {
    padding: 13px 17px 15px;
    border-radius: 0 0 18px 18px;
    background: rgba(4, 31, 55, .96);
}

.social-modern .lb-data .lb-caption {
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 750;
}

.social-modern .lb-data .lb-number {
    color: var(--social-cyan);
    font-size: 10px;
}

@media (max-width: 991px) {
    .social-modern .social-album-detail-aside {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .social-modern .social-album-detail-card {
        border-radius: 22px;
    }

    .social-modern .social-album-detail-intro {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 0;
        padding: 18px;
    }

    .social-modern .social-album-detail-cover {
        width: 100%;
        height: 200px;
        max-height: 200px;
        min-height: 0;
        aspect-ratio: auto;
        border-radius: 16px;
    }

    .social-modern .social-album-detail-copy {
        padding: 27px 4px 8px;
        text-align: center;
    }

    .social-modern .social-album-detail-copy .social-college-eyebrow {
        justify-content: center;
    }

    .social-modern .social-album-detail-copy h2 {
        font-size: clamp(1.9rem, 9vw, 2.45rem);
    }

    .social-modern .social-album-detail-meta {
        justify-content: center;
    }

    .social-modern .social-album-back {
        justify-content: center;
    }

    .social-modern .social-album-back--compact {
        top: 27px;
        right: 27px;
        min-height: 30px;
        padding: 5px 8px;
    }

    .social-modern .social-album-see-photos {
        justify-content: center;
    }

    .social-modern .social-album-photo-section {
        padding: 29px 12px 18px;
    }

    .social-modern .social-album-photo-heading {
        grid-template-columns: 1fr;
        gap: 11px;
        margin-bottom: 20px;
        padding: 0 9px;
        text-align: center;
    }

    .social-modern .social-album-photo-heading h2 {
        font-size: clamp(1.65rem, 7.5vw, 2.1rem);
    }

    .social-modern .social-album-photo-grid {
        column-count: 1;
    }

    .social-modern .social-album-photo-item {
        margin-bottom: 11px;
        border-radius: 15px;
        scroll-margin-top: 82px;
    }

    .social-modern .social-album-photo-item--featured {
        column-span: none;
    }

    .social-modern .social-album-photo-item--featured img {
        aspect-ratio: 4 / 3;
    }

    .social-modern .social-album-photo-overlay {
        padding: 13px;
        opacity: .9;
    }

    .social-modern .social-album-photo-overlay > span {
        min-height: 33px;
        padding: 7px 9px;
        transform: none;
    }

    .social-modern .lb-outerContainer {
        border-radius: 14px 14px 0 0;
    }

    .social-modern .lb-container {
        padding: 5px;
    }

    .social-modern .lb-dataContainer {
        padding: 11px 13px 13px;
        border-radius: 0 0 13px 13px;
    }
}

/* Nossa Estrutura */
.social-modern .social-structure-page .course-details-item {
    overflow: hidden;
    padding: 0;
}

.social-modern .social-structure-intro {
    position: relative;
    overflow: hidden;
    padding: 38px 38px 32px;
    border-bottom: 1px solid var(--social-line);
    background:
        radial-gradient(circle at 100% 0, rgba(24, 200, 244, .13), transparent 17rem),
        linear-gradient(145deg, #fff, #f8fcff);
}

.social-modern .social-structure-intro::after {
    position: absolute;
    top: -55px;
    right: -20px;
    color: rgba(0, 139, 205, .035);
    content: "S";
    font-size: 220px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    transform: rotate(-8deg);
}

.social-modern .social-structure-intro > * {
    position: relative;
    z-index: 1;
}

.social-modern .social-structure-intro h2 {
    max-width: 720px;
    margin: 10px 0 16px;
    color: var(--social-navy);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 850;
    letter-spacing: -.045em;
    line-height: 1.08;
    text-wrap: balance;
}

.social-modern .course-details-content .social-structure-intro p {
    max-width: 790px;
    margin: 0;
    color: #4b6881;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}

.social-modern .social-structure-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 23px;
}

.social-modern .social-structure-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 39px;
    padding: 8px 13px;
    border: 1px solid rgba(0, 137, 204, .13);
    border-radius: 12px;
    color: var(--social-navy);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 7px 18px rgba(7, 47, 85, .055);
    font-size: 11px;
    font-weight: 800;
}

.social-modern .social-structure-highlights i {
    color: var(--social-blue);
    font-size: 14px;
}

.social-modern .social-structure-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    background: #f3f9fd;
}

.social-modern .social-structure-photo {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(7, 47, 85, .09);
    border-radius: 18px;
    background: #dcebf4;
    box-shadow: 0 13px 28px rgba(7, 47, 85, .1);
    isolation: isolate;
}

.social-modern .social-structure-photo--featured {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 7;
}

.social-modern .social-structure-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .45s ease, transform .65s cubic-bezier(.2, .75, .2, 1);
}

.social-modern .social-structure-photo::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 45%, rgba(1, 25, 45, .82) 100%);
    content: "";
    opacity: .82;
    pointer-events: none;
    transition: opacity .35s ease;
}

.social-modern .social-structure-photo-caption {
    position: absolute;
    right: 16px;
    bottom: 15px;
    left: 17px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #fff;
    transform: translateY(2px);
    transition: transform .35s ease;
}

.social-modern .social-structure-photo-caption strong {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.social-modern .social-structure-photo-caption i {
    display: inline-grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 10px;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(7px);
    font-size: 12px;
}

.social-modern .social-structure-photo:hover img,
.social-modern .social-structure-photo:focus-visible img {
    filter: saturate(1.08) contrast(1.025);
    transform: scale(1.045);
}

.social-modern .social-structure-photo:hover::after,
.social-modern .social-structure-photo:focus-visible::after {
    opacity: 1;
}

.social-modern .social-structure-photo:hover .social-structure-photo-caption,
.social-modern .social-structure-photo:focus-visible .social-structure-photo-caption {
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    .social-modern .social-structure-page .course-details-item {
        padding: 0;
        border-radius: 20px;
    }

    .social-modern .social-structure-intro {
        padding: 27px 22px 24px;
    }

    .social-modern .social-structure-intro h2 {
        margin-top: 8px;
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }

    .social-modern .course-details-content .social-structure-intro p {
        font-size: 14px;
        line-height: 1.72;
    }

    .social-modern .social-structure-highlights {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        margin-top: 19px;
    }

    .social-modern .social-structure-highlights span {
        min-height: 45px;
        padding: 8px 9px;
        font-size: 9px;
        line-height: 1.25;
    }

    .social-modern .social-structure-gallery {
        grid-template-columns: 1fr;
        gap: 11px;
        padding: 11px;
    }

    .social-modern .social-structure-photo,
    .social-modern .social-structure-photo--featured {
        grid-column: auto;
        aspect-ratio: 4 / 3;
        border-radius: 15px;
    }

    .social-modern .social-structure-photo-caption {
        right: 12px;
        bottom: 11px;
        left: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .social-modern *,
    .social-modern *::before,
    .social-modern *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .social-modern .social-momentum,
    .social-modern .why-choose-section {
        background-attachment: scroll;
    }

    .social-modern.social-js [data-social-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Local 360 tour */
.social-modern .social-tour-page {
    position: relative;
    padding: 76px 0 110px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 30%, rgba(24, 200, 244, .15), transparent 27rem),
        radial-gradient(circle at 92% 18%, rgba(255, 200, 61, .14), transparent 24rem),
        linear-gradient(180deg, #f7fcff 0%, #fff 72%);
}

.social-modern .social-tour-page::before,
.social-modern .social-tour-page::after {
    position: absolute;
    border: 1px solid rgba(0, 163, 224, .09);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.social-modern .social-tour-page::before {
    top: 45px;
    right: -140px;
    width: 360px;
    height: 360px;
}

.social-modern .social-tour-page::after {
    bottom: 25px;
    left: -110px;
    width: 260px;
    height: 260px;
}

.social-modern .social-tour-page-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(250px, .6fr);
    gap: 36px;
    align-items: end;
    margin: 0 0 36px;
}

.social-modern .social-tour-page-intro-copy > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 11px;
    color: var(--social-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.social-modern .social-tour-page-intro-copy > span::before {
    width: 32px;
    height: 2px;
    border-radius: 999px;
    background: var(--social-yellow);
    content: "";
}

.social-modern .social-tour-page-intro h3 {
    margin: 0 0 13px;
    color: var(--social-navy);
    font-size: clamp(2rem, 4.5vw, 4.25rem);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: .98;
}

.social-modern .social-tour-page-intro h3 span {
    color: var(--social-cyan);
}

.social-modern .social-tour-page-intro p {
    max-width: 740px;
    margin: 0;
    color: var(--social-muted);
    font-size: 17px;
    line-height: 1.75;
}

.social-modern .social-tour-page-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid rgba(0, 163, 224, .14);
    border-radius: 20px;
    color: var(--social-navy);
    background: rgba(255, 255, 255, .8);
    box-shadow: var(--social-shadow-soft);
    backdrop-filter: blur(12px);
}

.social-modern .social-tour-page-note i {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--social-cyan), var(--social-blue));
    box-shadow: 0 10px 24px rgba(0, 163, 224, .24);
}

.social-modern .social-tour-page-note strong,
.social-modern .social-tour-page-note small {
    display: block;
}

.social-modern .social-tour-page-note strong {
    margin: 1px 0 2px;
    font-size: 14px;
}

.social-modern .social-tour-page-note small {
    color: var(--social-muted);
    font-size: 12px;
    line-height: 1.5;
}

.social-modern .social-tour360 {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 28px;
    color: #fff;
    background: var(--social-navy-deep);
    box-shadow: 0 32px 90px rgba(4, 31, 58, .22);
    isolation: isolate;
}

.social-modern .social-tour360::before {
    position: absolute;
    z-index: 3;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
    content: "";
    pointer-events: none;
}

.social-modern .social-tour360__stage {
    position: relative;
    height: clamp(380px, min(54vw, 68vh), 560px);
    min-height: 0;
    overflow: hidden;
    outline: 0;
    background:
        radial-gradient(circle at center, rgba(0, 163, 224, .35), transparent 45%),
        var(--social-navy-deep);
    cursor: grab;
    touch-action: none;
}

.social-modern .social-tour360__stage:focus-visible {
    box-shadow: inset 0 0 0 3px var(--social-yellow);
}

.social-modern .social-tour360__stage.is-dragging {
    cursor: grabbing;
}

.social-modern .social-tour360__canvas,
.social-modern .social-tour360__fallback {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.social-modern .social-tour360__canvas {
    display: block;
}

.social-modern .social-tour360__fallback {
    background-position: center;
    background-size: cover;
}

.social-modern .social-tour360__stage::before,
.social-modern .social-tour360__stage::after {
    position: absolute;
    z-index: 2;
    right: 0;
    left: 0;
    height: 32%;
    content: "";
    pointer-events: none;
}

.social-modern .social-tour360__stage::before {
    top: 0;
    background: linear-gradient(180deg, rgba(3, 26, 48, .66), transparent);
}

.social-modern .social-tour360__stage::after {
    bottom: 0;
    background: linear-gradient(0deg, rgba(3, 26, 48, .82), transparent);
}

.social-modern .social-tour360__loading {
    position: absolute;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    inset: 0;
    color: #fff;
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(0, 163, 224, .24), transparent 20rem),
        rgba(4, 31, 58, .94);
    transition: opacity .25s ease, visibility .25s ease;
}

.social-modern .social-tour360__loading[hidden] {
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.social-modern .social-tour360__loading-orbit {
    position: relative;
    display: block;
    width: 68px;
    height: 68px;
    margin-bottom: 16px;
    border: 2px solid rgba(255, 255, 255, .16);
    border-top-color: var(--social-yellow);
    border-radius: 50%;
    animation: social-tour360-spin .9s linear infinite;
}

.social-modern .social-tour360__loading-orbit::after {
    position: absolute;
    width: 10px;
    height: 10px;
    top: 4px;
    right: 6px;
    border-radius: 50%;
    background: var(--social-yellow);
    box-shadow: 0 0 16px rgba(255, 200, 61, .8);
    content: "";
}

.social-modern .social-tour360__loading strong {
    font-size: 17px;
}

.social-modern .social-tour360__loading small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
}

.social-modern .social-tour360__identity {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    top: 28px;
    left: 28px;
    max-width: min(420px, calc(100% - 220px));
    pointer-events: none;
}

.social-modern .social-tour360__live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: flex-start;
    margin-bottom: 11px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: rgba(255, 255, 255, .84);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: rgba(4, 31, 58, .5);
    backdrop-filter: blur(12px);
}

.social-modern .social-tour360__live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--social-yellow);
    box-shadow: 0 0 0 5px rgba(255, 200, 61, .14);
}

.social-modern .social-tour360__identity strong {
    color: #fff;
    font-size: clamp(1.65rem, 3.8vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.05;
    text-shadow: 0 4px 25px rgba(0, 0, 0, .35);
}

.social-modern .social-tour360__identity small {
    margin-top: 6px;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.social-modern .social-tour360__controls {
    position: absolute;
    z-index: 6;
    display: flex;
    gap: 7px;
    top: 28px;
    right: 28px;
}

.social-modern .social-tour360__controls button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 13px;
    color: #fff;
    background: rgba(4, 31, 58, .55);
    box-shadow: 0 9px 30px rgba(0, 0, 0, .15);
    cursor: pointer;
    backdrop-filter: blur(14px);
}

.social-modern .social-tour360__controls button:hover,
.social-modern .social-tour360__controls button:focus-visible,
.social-modern .social-tour360__controls button.is-active {
    border-color: var(--social-yellow);
    color: var(--social-navy);
    background: var(--social-yellow);
    transform: translateY(-2px);
}

.social-modern .social-tour360__controls button:focus-visible,
.social-modern .social-tour360__scene:focus-visible,
.social-modern .social-tour360__hotspot:focus-visible {
    outline: 3px solid rgba(255, 200, 61, .4);
    outline-offset: 3px;
}

.social-modern .social-tour360__hint {
    position: absolute;
    z-index: 5;
    display: flex;
    gap: 9px;
    align-items: center;
    bottom: 24px;
    left: 50%;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: rgba(255, 255, 255, .88);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
    background: rgba(4, 31, 58, .6);
    opacity: 1;
    transform: translateX(-50%);
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
    backdrop-filter: blur(12px);
}

.social-modern .social-tour360__hint i {
    color: var(--social-yellow);
    animation: social-tour360-hand 1.5s ease-in-out infinite;
}

.social-modern .social-tour360__hint.is-hidden {
    opacity: 0;
    transform: translate(-50%, 10px);
}

.social-modern .social-tour360__hotspot {
    position: absolute;
    z-index: 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    border: 0;
    color: #fff;
    background: none;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.social-modern .social-tour360__hotspot[hidden] {
    display: none;
}

.social-modern .social-tour360__hotspot span {
    position: relative;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    color: var(--social-navy);
    background: var(--social-yellow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    animation: social-tour360-hotspot 2s ease-out infinite;
}

.social-modern .social-tour360__hotspot strong {
    max-width: 175px;
    margin-top: 8px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 9px;
    color: #fff;
    font-size: 10px;
    line-height: 1.3;
    white-space: nowrap;
    background: rgba(4, 31, 58, .78);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
    backdrop-filter: blur(10px);
}

.social-modern .social-tour360__hotspot:hover span,
.social-modern .social-tour360__hotspot:focus-visible span {
    color: #fff;
    background: var(--social-cyan);
    transform: scale(1.12);
}

.social-modern .social-tour360__navigator {
    position: relative;
    z-index: 6;
    padding: 20px 20px 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background:
        radial-gradient(circle at 82% -50%, rgba(0, 163, 224, .25), transparent 24rem),
        var(--social-navy-deep);
}

.social-modern .social-tour360__navigator-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 3px 14px;
}

.social-modern .social-tour360__navigator-head > div {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.social-modern .social-tour360__navigator-head span {
    color: var(--social-yellow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.social-modern .social-tour360__navigator-head strong {
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
}

.social-modern .social-tour360__count {
    color: rgba(255, 255, 255, .5) !important;
    font-variant-numeric: tabular-nums;
    letter-spacing: .06em !important;
}

.social-modern .social-tour360__count b {
    color: #fff;
    font-size: 16px;
}

.social-modern .social-tour360__scenes {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 3px 3px 8px;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-color: rgba(24, 200, 244, .6) rgba(255, 255, 255, .06);
    scrollbar-width: thin;
}

.social-modern .social-tour360__scenes::-webkit-scrollbar {
    height: 5px;
}

.social-modern .social-tour360__scenes::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
}

.social-modern .social-tour360__scenes::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(24, 200, 244, .64);
}

.social-modern .social-tour360__scene {
    display: grid;
    flex: 0 0 246px;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    min-width: 0;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 15px;
    color: #fff;
    text-align: left;
    background: rgba(255, 255, 255, .045);
    cursor: pointer;
    scroll-snap-align: center;
}

.social-modern .social-tour360__scene:hover,
.social-modern .social-tour360__scene.is-active {
    border-color: rgba(24, 200, 244, .8);
    background: rgba(0, 163, 224, .16);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .16), inset 0 0 0 1px rgba(24, 200, 244, .12);
    transform: translateY(-2px);
}

.social-modern .social-tour360__scene-image {
    position: relative;
    display: block;
    height: 58px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
}

.social-modern .social-tour360__scene-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(4, 31, 58, .35));
    content: "";
}

.social-modern .social-tour360__scene-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-modern .social-tour360__scene-image i {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 25px;
    height: 25px;
    right: 5px;
    bottom: 5px;
    place-items: center;
    border-radius: 8px;
    color: var(--social-navy);
    font-size: 11px;
    background: var(--social-yellow);
}

.social-modern .social-tour360__scene-copy {
    display: block;
    min-width: 0;
}

.social-modern .social-tour360__scene-copy strong,
.social-modern .social-tour360__scene-copy small {
    display: block;
}

.social-modern .social-tour360__scene-copy strong {
    overflow: hidden;
    color: #fff;
    font-size: 12px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.social-modern .social-tour360__scene-copy small {
    display: -webkit-box;
    margin-top: 3px;
    overflow: hidden;
    color: rgba(255, 255, 255, .52);
    font-size: 9px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.social-modern .social-tour360__scene.is-active .social-tour360__scene-copy small {
    color: rgba(255, 255, 255, .72);
}

.social-modern .social-tour360__noscript {
    margin: 0;
    padding: 18px;
    color: #fff;
    text-align: center;
}

.social-modern .social-tour360--compact {
    border-radius: 20px;
    box-shadow: none;
}

.social-modern .social-tour360--compact .social-tour360__stage {
    height: clamp(320px, min(42vw, 54vh), 380px);
    min-height: 0;
}

.social-modern .social-tour360--compact .social-tour360__navigator {
    padding: 14px;
}

.social-modern .social-tour360--compact .social-tour360__navigator-head {
    margin-bottom: 10px;
}

.social-modern .social-tour360--compact .social-tour360__navigator-head > div span,
.social-modern .social-tour360--compact .social-tour360__navigator-head > div strong {
    display: none;
}

.social-modern .social-tour360--compact .social-tour360__scene {
    flex-basis: 196px;
    grid-template-columns: 66px minmax(0, 1fr);
}

.social-modern .social-tour360--compact .social-tour360__scene-image {
    height: 48px;
}

.social-modern .social-tour360--compact .social-tour360__identity {
    top: 20px;
    left: 20px;
}

.social-modern .social-tour360--compact .social-tour360__identity strong {
    font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.social-modern .social-tour360--compact .social-tour360__controls {
    top: 20px;
    right: 20px;
}

.social-modern .social-tour360--compact .social-tour360__controls button {
    width: 39px;
    height: 39px;
    border-radius: 11px;
}

.social-modern .social-tour360:fullscreen {
    display: grid;
    width: 100vw;
    height: 100vh;
    grid-template-rows: minmax(0, 1fr) auto;
    border: 0;
    border-radius: 0;
    background: var(--social-navy-deep);
}

.social-modern .social-tour360:fullscreen .social-tour360__stage {
    height: auto;
    min-height: 0;
}

.social-modern .social-tour360:fullscreen .social-tour360__navigator {
    padding-bottom: max(18px, env(safe-area-inset-bottom));
}

@keyframes social-tour360-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes social-tour360-hand {
    0%,
    100% {
        transform: translateX(-3px);
    }
    50% {
        transform: translateX(4px);
    }
}

@keyframes social-tour360-hotspot {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, .35), 0 0 0 0 rgba(255, 200, 61, .55);
    }
    72%,
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, .35), 0 0 0 16px rgba(255, 200, 61, 0);
    }
}

@media (max-width: 991px) {
    .social-modern .social-tour-page {
        padding: 60px 0 82px;
    }

    .social-modern .social-tour-page-intro {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .social-modern .social-tour-page-note {
        max-width: 470px;
    }

    .social-modern .social-tour360__stage {
        height: clamp(360px, min(58vw, 66vh), 520px);
    }

    .social-modern .social-tour360--compact .social-tour360__stage {
        height: clamp(320px, min(50vw, 56vh), 390px);
    }
}

@media (max-width: 767px) {
    .social-modern .social-tour-page {
        padding: 48px 0 68px;
    }

    .social-modern .social-tour-page-intro {
        margin-bottom: 25px;
    }

    .social-modern .social-tour-page-intro h3 {
        font-size: clamp(2rem, 11vw, 3.2rem);
    }

    .social-modern .social-tour-page-intro p {
        font-size: 15px;
        line-height: 1.65;
    }

    .social-modern .social-tour360 {
        margin-right: -7px;
        margin-left: -7px;
        border-radius: 21px;
    }

    .social-modern .social-tour360__stage,
    .social-modern .social-tour360--compact .social-tour360__stage {
        height: clamp(300px, min(112vw, 58vh), 440px);
        min-height: 0;
    }

    .social-modern .social-tour360--compact .social-tour360__stage {
        height: clamp(300px, min(106vw, 52vh), 390px);
    }

    .social-modern .social-tour360__identity,
    .social-modern .social-tour360--compact .social-tour360__identity {
        top: 17px;
        left: 17px;
        max-width: calc(100% - 150px);
    }

    .social-modern .social-tour360__live {
        margin-bottom: 8px;
        padding: 6px 9px;
        font-size: 8px;
    }

    .social-modern .social-tour360__identity strong,
    .social-modern .social-tour360--compact .social-tour360__identity strong {
        font-size: clamp(1.35rem, 7.5vw, 2rem);
    }

    .social-modern .social-tour360__identity small {
        display: none;
    }

    .social-modern .social-tour360__controls,
    .social-modern .social-tour360--compact .social-tour360__controls {
        top: 17px;
        right: 17px;
        gap: 5px;
    }

    .social-modern .social-tour360__controls button,
    .social-modern .social-tour360--compact .social-tour360__controls button {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 12px;
    }

    .social-modern .social-tour360__controls button:first-child,
    .social-modern .social-tour360__controls button:nth-child(3) {
        display: none;
    }

    .social-modern .social-tour360__hotspot strong {
        max-width: 135px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .social-modern .social-tour360__hotspot span {
        width: 44px;
        height: 44px;
    }

    .social-modern .social-tour360__hint {
        bottom: 17px;
        max-width: calc(100% - 34px);
        white-space: nowrap;
    }

    .social-modern .social-tour360__navigator,
    .social-modern .social-tour360--compact .social-tour360__navigator {
        padding: 15px 12px 17px;
    }

    .social-modern .social-tour360__navigator-head {
        margin-right: 4px;
        margin-left: 4px;
    }

    .social-modern .social-tour360__navigator-head > div {
        display: block;
    }

    .social-modern .social-tour360__navigator-head > div span {
        display: block;
        margin-bottom: 1px;
        font-size: 8px;
    }

    .social-modern .social-tour360__navigator-head > div strong {
        font-size: 12px;
    }

    .social-modern .social-tour360--compact .social-tour360__navigator-head > div span,
    .social-modern .social-tour360--compact .social-tour360__navigator-head > div strong {
        display: block;
    }

    .social-modern .social-tour360__scene,
    .social-modern .social-tour360--compact .social-tour360__scene {
        flex-basis: min(77vw, 260px);
        grid-template-columns: 82px minmax(0, 1fr);
        padding: 7px;
    }

    .social-modern .social-tour360__scene-image,
    .social-modern .social-tour360--compact .social-tour360__scene-image {
        height: 58px;
    }
}

/* Página de Ensino */
.social-modern .social-teaching-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 0 18%, rgba(24, 200, 244, .09), transparent 25rem),
        radial-gradient(circle at 100% 76%, rgba(255, 200, 61, .09), transparent 25rem),
        linear-gradient(180deg, #f8fcff, #fff);
}

.social-modern .social-teaching-main {
    display: grid;
    gap: 30px;
}

.social-modern .social-teaching-card {
    overflow: hidden;
    padding: 0;
    border-radius: 29px;
    background: #fff;
    box-shadow: 0 28px 60px rgba(7, 47, 85, .12);
}

.social-modern .social-teaching-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: var(--social-navy);
    isolation: isolate;
}

.social-modern .social-teaching-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.03) contrast(1.02);
    transition: filter .45s ease, transform .8s cubic-bezier(.2, .75, .2, 1);
}

.social-modern .social-teaching-card:hover .social-teaching-hero img {
    filter: saturate(1.1) contrast(1.04);
    transform: scale(1.025);
}

.social-modern .social-teaching-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3, 28, 50, .97) 0%, rgba(3, 33, 59, .88) 36%, rgba(3, 36, 64, .4) 70%, rgba(3, 28, 50, .12) 100%),
        linear-gradient(180deg, rgba(3, 28, 50, .08) 35%, rgba(3, 28, 50, .72) 100%);
    pointer-events: none;
}

.social-modern .social-teaching-hero-copy {
    position: absolute;
    bottom: 46px;
    left: 42px;
    z-index: 2;
    width: min(570px, calc(100% - 84px));
}

.social-modern .social-teaching-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--social-yellow);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.social-modern .social-teaching-kicker::before {
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    content: "";
}

.social-modern .social-teaching-hero-copy h2 {
    max-width: 520px;
    margin: 12px 0 16px;
    color: #fff;
    font-size: clamp(2.65rem, 4.6vw, 4.65rem);
    font-weight: 850;
    letter-spacing: -.06em;
    line-height: .96;
}

.social-modern .social-teaching-hero-copy h2 span {
    color: var(--social-cyan);
}

.social-modern .social-teaching-hero-copy p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 15px;
    line-height: 1.68;
}

.social-modern .social-teaching-hero-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 56px;
    padding: 9px 15px 9px 10px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 16px;
    color: #fff;
    background: rgba(3, 35, 61, .64);
    box-shadow: 0 14px 30px rgba(0, 18, 31, .18);
    backdrop-filter: blur(12px);
}

.social-modern .social-teaching-hero-badge > span {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border-radius: 11px;
    color: var(--social-navy);
    background: var(--social-yellow);
    font-size: 15px;
}

.social-modern .social-teaching-hero-badge small,
.social-modern .social-teaching-hero-badge strong {
    display: block;
    line-height: 1.2;
}

.social-modern .social-teaching-hero-badge small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .66);
    font-size: 8px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.social-modern .social-teaching-hero-badge strong {
    color: #fff;
    font-size: 12px;
    font-weight: 850;
}

.social-modern .social-teaching-body {
    padding: 45px 40px 40px;
    background:
        radial-gradient(circle at 100% 0, rgba(24, 200, 244, .065), transparent 20rem),
        #fff;
}

.social-modern .social-teaching-intro {
    display: grid;
    grid-template-columns: minmax(245px, .82fr) minmax(0, 1.18fr);
    align-items: start;
    gap: 45px;
    margin-bottom: 37px;
}

.social-modern .social-teaching-heading h2,
.social-modern .social-teaching-section-heading h2,
.social-modern .social-teaching-method h2,
.social-modern .social-teaching-cta h2 {
    margin: 11px 0 0;
    color: var(--social-navy);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 850;
    letter-spacing: -.05em;
    line-height: 1.06;
}

.social-modern .social-teaching-heading h2 span {
    color: var(--social-blue);
}

.social-modern .social-teaching-intro-copy p {
    margin: 0 0 14px;
    color: #557188;
    font-size: 14px;
    line-height: 1.78;
}

.social-modern .social-teaching-intro-copy p:last-child {
    margin-bottom: 0;
}

.social-modern .social-teaching-intro-copy .social-teaching-lead {
    color: var(--social-navy);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.68;
}

.social-modern .social-teaching-pillars {
    margin: 0 -12px 34px;
    padding: 37px 32px 32px;
    border: 1px solid rgba(7, 47, 85, .08);
    border-radius: 25px;
    background:
        radial-gradient(circle at 100% 0, rgba(24, 200, 244, .11), transparent 19rem),
        #f3faff;
}

.social-modern .social-teaching-section-heading {
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr);
    align-items: end;
    gap: 35px;
    margin-bottom: 25px;
}

.social-modern .social-teaching-section-heading h2 {
    margin-top: 10px;
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
}

.social-modern .social-teaching-section-heading > p {
    margin: 0 0 3px;
    color: #567188;
    font-size: 13px;
    line-height: 1.7;
}

.social-modern .social-teaching-pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.social-modern .social-teaching-pillar {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    min-height: 156px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(7, 47, 85, .09);
    border-radius: 19px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 13px 27px rgba(7, 47, 85, .055);
    transition:
        border-color .32s ease,
        background .32s ease,
        box-shadow .32s ease,
        transform .32s ease;
}

.social-modern .social-teaching-pillar::after {
    position: absolute;
    right: -26px;
    bottom: -31px;
    width: 98px;
    height: 98px;
    border: 22px solid rgba(0, 152, 216, .04);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.social-modern .social-teaching-pillar:hover {
    border-color: rgba(0, 152, 216, .28);
    box-shadow: 0 20px 38px rgba(7, 47, 85, .11);
    transform: translateY(-5px);
}

.social-modern .social-teaching-pillar-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(145deg, var(--social-cyan), var(--social-blue));
    box-shadow: 0 13px 25px rgba(0, 152, 216, .23);
    font-size: 22px;
    transition: transform .35s ease;
}

.social-modern .social-teaching-pillar:hover .social-teaching-pillar-icon {
    transform: rotate(-5deg) scale(1.06);
}

.social-modern .social-teaching-pillar h3 {
    margin: 3px 0 8px;
    color: var(--social-navy);
    font-size: 15px;
    font-weight: 850;
    letter-spacing: -.02em;
}

.social-modern .social-teaching-pillar p {
    margin: 0;
    color: #567188;
    font-size: 12px;
    line-height: 1.65;
}

.social-modern .social-teaching-method {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
    gap: 35px;
    margin-bottom: 34px;
    padding: 40px;
    overflow: hidden;
    border-radius: 25px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(24, 200, 244, .2), transparent 21rem),
        linear-gradient(135deg, #041f38, var(--social-navy) 62%, #075b8b);
    box-shadow: 0 25px 54px rgba(3, 35, 61, .19);
}

.social-modern .social-teaching-method::after {
    position: absolute;
    right: -65px;
    bottom: -100px;
    width: 250px;
    height: 250px;
    border: 43px solid rgba(255, 255, 255, .025);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.social-modern .social-teaching-method > * {
    position: relative;
    z-index: 1;
}

.social-modern .social-teaching-method h2 {
    color: #fff;
    font-size: clamp(2rem, 2.8vw, 2.8rem);
}

.social-modern .social-teaching-method-copy > p {
    margin: 15px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.75;
}

.social-modern .social-teaching-method-steps {
    display: grid;
    gap: 10px;
}

.social-modern .social-teaching-method-steps article {
    display: grid;
    grid-template-columns: 47px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 16px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(8px);
    transition: background .3s ease, transform .3s ease;
}

.social-modern .social-teaching-method-steps article:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateX(5px);
}

.social-modern .social-teaching-method-steps article > span {
    display: grid;
    width: 47px;
    height: 47px;
    place-items: center;
    border-radius: 14px;
    color: var(--social-navy);
    background: var(--social-yellow);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .13);
    font-size: 11px;
    font-weight: 900;
}

.social-modern .social-teaching-method-steps h3 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 850;
}

.social-modern .social-teaching-method-steps p {
    margin: 0;
    color: rgba(255, 255, 255, .67);
    font-size: 11px;
    line-height: 1.55;
}

.social-modern .social-teaching-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 31px 32px;
    border: 1px solid rgba(0, 152, 216, .13);
    border-radius: 23px;
    background:
        radial-gradient(circle at 100% 50%, rgba(24, 200, 244, .15), transparent 17rem),
        linear-gradient(120deg, #eefaff, #fff);
}

.social-modern .social-teaching-cta h2 {
    max-width: 500px;
    margin-top: 8px;
    font-size: clamp(1.75rem, 2.6vw, 2.55rem);
}

.social-modern .social-teaching-cta p {
    max-width: 570px;
    margin: 10px 0 0;
    color: #567188;
    font-size: 13px;
    line-height: 1.65;
}

.social-modern .social-teaching-cta-actions {
    display: grid;
    flex: 0 0 210px;
    gap: 9px;
}

.social-modern .social-teaching-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 47px;
    padding: 11px 14px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 10px;
    font-weight: 850;
    transition:
        border-color .28s ease,
        box-shadow .28s ease,
        transform .28s ease;
}

.social-modern .social-teaching-button:hover {
    transform: translateY(-3px);
}

.social-modern .social-teaching-button--primary {
    color: var(--social-navy);
    background: var(--social-yellow);
    box-shadow: 0 11px 24px rgba(255, 183, 0, .2);
}

.social-modern .social-teaching-button--primary:hover {
    color: var(--social-navy);
    box-shadow: 0 15px 29px rgba(255, 183, 0, .28);
}

.social-modern .social-teaching-button--secondary {
    border-color: rgba(7, 47, 85, .11);
    color: var(--social-navy);
    background: #fff;
}

.social-modern .social-teaching-button--secondary:hover {
    border-color: rgba(0, 152, 216, .28);
    color: var(--social-blue);
    box-shadow: 0 12px 25px rgba(7, 47, 85, .09);
}

@media (max-width: 991px) {
    .social-modern .social-teaching-aside {
        margin-top: 30px;
    }

    .social-modern .social-teaching-intro {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-modern .social-teaching-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .social-modern .social-teaching-cta-actions {
        width: 100%;
        flex-basis: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .social-modern .social-teaching-card {
        border-radius: 22px;
    }

    .social-modern .social-teaching-hero {
        min-height: 470px;
    }

    .social-modern .social-teaching-hero img {
        object-position: 58% center;
    }

    .social-modern .social-teaching-hero-shade {
        background:
            linear-gradient(180deg, rgba(3, 28, 50, .35) 0%, rgba(3, 30, 54, .58) 35%, rgba(3, 28, 50, .97) 100%);
    }

    .social-modern .social-teaching-hero-copy {
        bottom: 29px;
        left: 22px;
        width: calc(100% - 44px);
    }

    .social-modern .social-teaching-hero-copy h2 {
        font-size: clamp(2.4rem, 12vw, 3.35rem);
    }

    .social-modern .social-teaching-hero-copy p {
        font-size: 13px;
        line-height: 1.65;
    }

    .social-modern .social-teaching-hero-badge {
        top: 16px;
        right: 16px;
        padding-right: 12px;
    }

    .social-modern .social-teaching-body {
        padding: 30px 18px 22px;
    }

    .social-modern .social-teaching-intro {
        gap: 17px;
        margin-bottom: 29px;
        text-align: center;
    }

    .social-modern .social-teaching-heading .social-college-eyebrow,
    .social-modern .social-teaching-section-heading .social-college-eyebrow,
    .social-modern .social-teaching-cta .social-college-eyebrow {
        justify-content: center;
    }

    .social-modern .social-teaching-heading h2,
    .social-modern .social-teaching-section-heading h2,
    .social-modern .social-teaching-method h2,
    .social-modern .social-teaching-cta h2 {
        font-size: clamp(1.85rem, 9vw, 2.5rem);
    }

    .social-modern .social-teaching-intro-copy .social-teaching-lead {
        font-size: 15px;
    }

    .social-modern .social-teaching-intro-copy p {
        font-size: 13px;
        line-height: 1.7;
    }

    .social-modern .social-teaching-pillars {
        margin-right: -4px;
        margin-left: -4px;
        padding: 28px 14px 14px;
        border-radius: 21px;
    }

    .social-modern .social-teaching-section-heading {
        grid-template-columns: 1fr;
        gap: 11px;
        margin-bottom: 21px;
        padding: 0 5px;
        text-align: center;
    }

    .social-modern .social-teaching-section-heading > p {
        font-size: 12px;
    }

    .social-modern .social-teaching-pillar-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .social-modern .social-teaching-pillar {
        display: flex;
        min-height: 183px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 23px 19px;
        text-align: center;
        transition:
            border-color .38s ease,
            background .38s ease,
            box-shadow .38s ease,
            transform .38s cubic-bezier(.2, .8, .2, 1);
    }

    .social-modern .social-teaching-pillar-icon {
        width: 55px;
        height: 55px;
        margin: 0 auto 14px;
        border-radius: 16px;
        font-size: 21px;
    }

    .social-modern .social-teaching-pillar h3 {
        width: 100%;
        margin: 0 0 7px;
        font-size: 14px;
    }

    .social-modern .social-teaching-pillar p {
        width: 100%;
        max-width: 305px;
        margin: 0 auto;
        font-size: 11px;
    }

    .social-modern.social-js .social-teaching-pillar.is-scroll-active {
        border-color: rgba(24, 200, 244, .5);
        background:
            radial-gradient(circle at 100% 0, rgba(24, 200, 244, .22), transparent 11rem),
            linear-gradient(135deg, var(--social-navy-deep), #075d8d);
        box-shadow: 0 22px 40px rgba(7, 47, 85, .2);
        transform: translateY(-7px) scale(1.018) !important;
    }

    .social-modern.social-js .social-teaching-pillar.is-scroll-active .social-teaching-pillar-icon {
        color: var(--social-navy);
        background: var(--social-yellow);
        box-shadow: 0 12px 27px rgba(255, 200, 61, .24);
        transform: rotate(-6deg) scale(1.08);
    }

    .social-modern.social-js .social-teaching-pillar.is-scroll-active h3 {
        color: #fff;
    }

    .social-modern.social-js .social-teaching-pillar.is-scroll-active p {
        color: rgba(255, 255, 255, .72);
    }

    .social-modern .social-teaching-method {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
        padding: 29px 19px 19px;
        border-radius: 21px;
        text-align: center;
    }

    .social-modern .social-teaching-method .social-teaching-kicker {
        justify-content: center;
    }

    .social-modern .social-teaching-method-steps {
        text-align: left;
    }

    .social-modern .social-teaching-method-steps article {
        grid-template-columns: 43px minmax(0, 1fr);
        padding: 14px;
    }

    .social-modern .social-teaching-method-steps article > span {
        width: 43px;
        height: 43px;
        border-radius: 12px;
    }

    .social-modern .social-teaching-cta {
        gap: 22px;
        padding: 28px 19px 19px;
        border-radius: 20px;
        text-align: center;
    }

    .social-modern .social-teaching-cta-actions {
        grid-template-columns: 1fr;
    }
}

/* Refinamento do acionador do menu mobile */
@media (max-width: 991px) {
    .social-modern .altranative-header .alt-menu-btn {
        border: 0;
        color: var(--social-blue);
        background: transparent;
        box-shadow: none;
        transition: background .25s ease, transform .25s ease;
    }

    .social-modern .altranative-header .alt-menu-btn:hover,
    .social-modern .altranative-header .alt-menu-btn:focus {
        outline: 0;
        background: #eef9fe;
        transform: translateY(-1px);
    }

    .social-modern .alt-menu-btn .hamburger-menu {
        position: relative;
        display: block;
        width: 25px;
        height: 3px;
        overflow: visible;
        border-radius: 999px;
        background: var(--social-blue);
        box-shadow: none;
        transition: background .25s ease;
    }

    .social-modern .alt-menu-btn .hamburger-menu::before,
    .social-modern .alt-menu-btn .hamburger-menu::after {
        position: absolute;
        left: 0;
        width: 25px;
        height: 3px;
        border-radius: 999px;
        color: transparent;
        background: var(--social-blue);
        content: "";
        font-size: 0;
        line-height: 0;
        transform-origin: center;
        transition: top .25s ease, bottom .25s ease, transform .25s ease;
    }

    .social-modern .alt-menu-btn .hamburger-menu::before {
        top: -7px;
    }

    .social-modern .alt-menu-btn .hamburger-menu::after {
        bottom: -7px;
    }

    .social-modern .alt-menu-btn .hamburger-menu.open {
        background: transparent;
    }

    .social-modern .alt-menu-btn .hamburger-menu.open::before {
        top: 0;
        transform: rotate(45deg);
    }

    .social-modern .alt-menu-btn .hamburger-menu.open::after {
        bottom: 0;
        transform: rotate(-45deg);
    }
}

/* Navegação mobile dos banners */
@media (max-width: 767px) {
    .social-modern .slider-section,
    .social-modern .slider-section .rev_slider {
        touch-action: pan-y;
    }

    .social-modern #slide.slider-section .tparrows {
        display: grid !important;
        width: 40px;
        height: 40px;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, .42);
        border-radius: 50%;
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(4, 38, 67, .72);
        box-shadow:
            0 10px 25px rgba(0, 25, 45, .2),
            inset 0 1px 0 rgba(255, 255, 255, .25);
        backdrop-filter: blur(9px);
        transition: background .25s ease, transform .25s ease;
    }

    .social-modern #slide.slider-section .tparrows:hover,
    .social-modern #slide.slider-section .tparrows:focus {
        outline: 0;
        background: var(--social-blue);
    }

    .social-modern #slide.slider-section .tparrows::before {
        color: #fff;
        font-size: 15px;
        line-height: 40px;
    }

    .social-modern .slider-section .tp-bullets {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .social-modern .slider-section .tp-bullets::before {
        position: absolute;
        inset: -6px -9px;
        z-index: -1;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 999px;
        background: rgba(4, 38, 67, .7);
        box-shadow: 0 8px 20px rgba(0, 25, 45, .16);
        backdrop-filter: blur(8px);
        content: "";
    }

    .social-modern .slider-section .tp-bullet {
        width: 9px;
        height: 9px;
        border: 1px solid rgba(255, 255, 255, .62);
        border-radius: 50%;
        background: rgba(255, 255, 255, .48);
        transition: background .25s ease, transform .25s ease;
    }

    .social-modern .slider-section .tp-bullet.selected,
    .social-modern .slider-section .tp-bullet:hover,
    .social-modern .slider-section .tp-bullet:focus {
        outline: 0;
        background: var(--social-yellow);
        transform: scale(1.3);
    }
}
