/* ==========================================================
   VEX POCKET
   Tema WordPress
   ========================================================== */

/* ==========================================================
   1. VARIÁVEIS
   ========================================================== */

:root {
    --vex-bg: #020d15;
    --vex-bg-deep: #010910;
    --vex-bg-card: #04131d;
    --vex-bg-card-hover: #061a25;

    --vex-cyan: #00a8ba;
    --vex-cyan-light: #13c1d1;
    --vex-cyan-dark: #007f91;

    --vex-white: #ffffff;
    --vex-text: #f1f5f7;
    --vex-muted: #b4c0c6;
    --vex-muted-dark: #7f929c;

    --vex-border: rgba(131, 176, 194, 0.22);
    --vex-border-strong: rgba(0, 168, 186, 0.42);

    --vex-font-heading: "Barlow Condensed", sans-serif;
    --vex-font-body: "Inter", sans-serif;

    --vex-container: 1180px;

    --vex-radius-sm: 6px;
    --vex-radius-md: 10px;
    --vex-radius-lg: 16px;

    --vex-transition: 0.25s ease;
}

/* ==========================================================
   2. RESET E BASE
   ========================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(0, 105, 127, 0.12),
            transparent 32%
        ),
        var(--vex-bg);
    color: var(--vex-text);
    font-family: var(--vex-font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
    top: 32px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition:
        color var(--vex-transition),
        background var(--vex-transition),
        border-color var(--vex-transition),
        opacity var(--vex-transition),
        transform var(--vex-transition);
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

p {
    margin-top: 0;
}

::selection {
    background: var(--vex-cyan);
    color: var(--vex-white);
}

.container {
    width: min(100% - 40px, var(--vex-container));
    max-width: var(--vex-container);
    margin-inline: auto;
}

.site-main {
    overflow: hidden;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--vex-cyan-light);
    font-family: var(--vex-font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-title {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin: 0 auto 18px;
    padding: 0 18px;
    background: var(--vex-bg);
    color: var(--vex-cyan-light);
    font-family: var(--vex-font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.section-title::before,
.section-title::after {
    position: absolute;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--vex-cyan-light);
    content: "";
    transform: translateY(-50%);
}

.section-title::before {
    left: 0;
}

.section-title::after {
    right: 0;
}

.btn-vex {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 290px;
    min-height: 58px;
    padding: 14px 34px;
    border: 1px solid var(--vex-cyan);
    border-radius: var(--vex-radius-sm);
    background:
        linear-gradient(
            90deg,
            var(--vex-cyan-dark),
            var(--vex-cyan)
        );
    box-shadow: 0 12px 30px rgba(0, 147, 166, 0.16);
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.btn-vex:hover {
    border-color: var(--vex-cyan-light);
    background:
        linear-gradient(
            90deg,
            var(--vex-cyan),
            var(--vex-cyan-light)
        );
    box-shadow: 0 14px 35px rgba(0, 184, 204, 0.24);
    color: var(--vex-white);
    transform: translateY(-2px);
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

/* ==========================================================
   3. HEADER
   ========================================================== */

/*
 * O layout aprovado já possui logo e botão dentro do hero.
 * Por enquanto o cabeçalho fica completamente oculto.
 */

.site-header {
    display: none;
}

/* Estrutura pronta para quando o cabeçalho for ativado. */

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 25px;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    font-family: var(--vex-font-body);
    line-height: 1;
}

.logo-vex {
    color: var(--vex-cyan);
    font-size: 1.75rem;
    font-weight: 600;
}

.logo-pocket {
    color: var(--vex-white);
    font-size: 1.65rem;
    font-weight: 300;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.main-menu a {
    color: var(--vex-muted);
    font-size: 0.92rem;
    font-weight: 500;
}

.main-menu a:hover {
    color: var(--vex-cyan-light);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 18px;
    border: 1px solid var(--vex-cyan);
    border-radius: var(--vex-radius-sm);
    color: var(--vex-cyan-light);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================
   4. HERO
   ========================================================== */

.hero-section {
    position: relative;
    min-height: 780px;
    overflow: hidden;
    border-bottom: 1px solid var(--vex-border);
    background:
        radial-gradient(
            circle at 74% 22%,
            rgba(0, 110, 132, 0.18),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #010b12 0%,
            #02101a 62%,
            #03121c 100%
        );
}

.hero-section::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 8, 14, 0.42),
            transparent 45%,
            rgba(0, 8, 14, 0.08)
        );
    content: "";
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 110px;
    padding-top: 20px;
}

.hero-logo {
    display: grid;
    grid-template-columns: auto auto;
    align-items: baseline;
    column-gap: 8px;
    text-align: center;
}

.hero-logo-vex {
    color: var(--vex-cyan);
    font-size: 2.35rem;
    font-weight: 600;
    line-height: 1;
}

.hero-logo-pocket {
    color: var(--vex-white);
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1;
}

.hero-logo small {
    grid-column: 1 / -1;
    margin-top: 7px;
    color: var(--vex-white);
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-top-cta {
    position: absolute;
    top: 23px;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 8px 18px;
    border: 1px solid var(--vex-cyan);
    border-radius: var(--vex-radius-sm);
    color: var(--vex-cyan-light);
    font-family: var(--vex-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
	z-index: 9999;
}

.hero-top-cta:hover {
    background: var(--vex-cyan);
    color: var(--vex-white);
}

.hero-row {
    min-height: 620px;
	margin-top: -80px;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding: 32px 0 68px;
}

.hero-title {
    margin: 0 0 24px;
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: clamp(4.1rem, 6.2vw, 6.15rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 0.9;
    text-transform: uppercase;
}

.hero-title span {
    display: block;
    margin-top: 8px;
    color: var(--vex-cyan);
    font-size: 0.84em;
}

.hero-text {
    max-width: 540px;
    margin-bottom: 34px;
    color: var(--vex-text);
    font-size: 1.09rem;
    line-height: 1.65;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 28px;
    margin-bottom: 32px;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 120px;
}

.event-detail i {
    flex: 0 0 auto;
    color: var(--vex-cyan);
    font-size: 1.65rem;
}

.event-detail span {
    display: flex;
    flex-direction: column;
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    line-height: 1.05;
    text-transform: uppercase;
}

.event-detail strong {
    font-size: 1rem;
    font-weight: 500;
}

.event-detail small {
    margin-top: 4px;
    color: var(--vex-white);
    font-size: 0.84rem;
}

.hero-actions {
    display: flex;
    width: fit-content;
    flex-direction: column;
    align-items: center;
}

.limited-seats {
    margin-top: 8px;
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
	min-height: 700px;
    overflow: visible;
}

.hero-image-wrapper::before {
    display: none;
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: right bottom;
    transform: translateX(0px);
}

/* ==========================================================
   5. DESTAQUES
   ========================================================== */

.event-highlights {
    position: relative;
    z-index: 3;
    border-bottom: 1px solid var(--vex-border);
    background: #03121c;
}

.event-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.highlight-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 126px;
    gap: 18px;
    padding: 22px 28px;
}

.highlight-item:not(:last-child)::after {
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: rgba(191, 213, 221, 0.3);
    content: "";
}

.highlight-item > i {
    color: var(--vex-white);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
}

.highlight-item div {
    display: flex;
    flex-direction: column;
}

.highlight-item strong {
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1;
}

.highlight-item span {
    margin-top: 7px;
    color: var(--vex-muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

/* ==========================================================
   6. VERDADE
   ========================================================== */

.truth-section {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--vex-border);
    background:
        radial-gradient(
            circle at 65% 40%,
            rgba(0, 130, 151, 0.11),
            transparent 35%
        ),
        var(--vex-bg);
}

.truth-row {
    min-height: 500px;
}

.truth-content {
    padding: 65px 0 58px;
}

.truth-title {
    max-width: 570px;
    margin: 0 0 26px;
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: clamp(2.7rem, 4.5vw, 4rem);
    font-weight: 400;
    line-height: 1.08;
}

.truth-title span {
    display: block;
    margin-top: 8px;
    color: var(--vex-cyan);
}

.truth-list,
.learn-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    list-style: none;
}

.truth-list li,
.learn-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--vex-text);
    font-size: 1rem;
    line-height: 1.5;
}

.truth-list i,
.learn-list i {
    flex: 0 0 auto;
    margin-top: 4px;
    color: var(--vex-cyan-light);
    font-size: 1rem;
}

.truth-image-wrapper{
    display:flex;
    align-items:flex-end;
    justify-content:flex-end;
    width:100%;
    height:100%;
    min-height:700px;
    overflow:visible;
}

.truth-image{
    display:block;
    width:100%;
    max-width:none;
    height:auto;

    object-fit:contain;
    object-position:bottom right;
	
	transform: translateY(60px);
}

.truth-actions {
    margin-top: 0px;
}

.truth-actions .btn-vex {
    min-width: 260px;
}

/* ==========================================================
   7. AULAS DA IMERSÃO
   ========================================================== */

.learn-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0 78px;
    border-bottom: 1px solid var(--vex-border);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0, 190, 215, 0.08),
            transparent 38%
        ),
        #03121c;
}

.learn-section::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(14, 195, 216, 0.6),
            transparent
        );
    content: "";
}

.learn-section .section-heading {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto 46px;
    text-align: center;
}

.learn-section .section-title {
    margin: 10px 0 0;
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: clamp(2.3rem, 3.4vw, 3.8rem);
    font-weight: 500;
    line-height: 1.04;
    text-transform: uppercase;
}

/* Grade */

.learn-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

/* Card */

.learn-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    padding: 30px 24px 24px;
    border: 1px solid rgba(93, 151, 174, 0.3);
    border-radius: 28px;
    background:
        linear-gradient(
            155deg,
            rgba(8, 36, 50, 0.98),
            rgba(2, 18, 28, 0.98)
        );
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.learn-card:hover {
    border-color: rgba(15, 194, 216, 0.7);
    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.32),
        0 0 35px rgba(15, 194, 216, 0.08);
    transform: translateY(-8px);
}

/* Detalhe superior */

.learn-card::before {
    position: absolute;
    top: 0;
    left: 24px;
    width: 72px;
    height: 4px;
    border-radius: 0 0 8px 8px;
    background: var(--vex-primary);
    content: "";
}

/* Número grande decorativo */

.learn-card::after {
    position: absolute;
    top: 10px;
    right: 17px;
    color: rgba(255, 255, 255, 0.025);
    content: "01";
    font-family: var(--vex-font-heading);
    font-size: 6.5rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.learn-card:nth-child(2)::after {
    content: "02";
}

.learn-card:nth-child(3)::after {
    content: "03";
}

.learn-card:nth-child(4)::after {
    content: "04";
}

/* Etiqueta da aula */

.learn-number {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 7px 13px;
    border: 1px solid rgba(15, 194, 216, 0.4);
    border-radius: 999px;
    background: rgba(15, 194, 216, 0.07);
    color: var(--vex-primary);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.learn-speaker {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 24px;
    color: var(--vex-white);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

/* Títulos */

.learn-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 14px;
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: clamp(1.55rem, 1.6vw, 2rem);
    font-weight: 500;
    line-height: 1.05;
    text-transform: uppercase;
}

.learn-subtitle {
    position: relative;
    z-index: 2;
    margin: 0 0 22px;
    color: var(--vex-muted);
    font-size: 0.91rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Lista de tópicos */

.learn-card ul {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.learn-card li {
    position: relative;
    padding-left: 26px;
    color: rgba(220, 230, 235, 0.8);
    font-size: 0.82rem;
    line-height: 1.42;
}

.learn-card li::before {
    position: absolute;
    top: 0.05em;
    left: 0;
    display: grid;
    width: 17px;
    height: 17px;
    border: 1px solid rgba(15, 194, 216, 0.45);
    border-radius: 50%;
    background: rgba(15, 194, 216, 0.08);
    color: var(--vex-primary);
    content: "✓";
    font-size: 0.65rem;
    font-weight: 900;
    line-height: 1;
    place-items: center;
}

/* Frase de impacto */

.learn-card blockquote {
    position: relative;
    z-index: 2;
    margin: auto 0 0;
    padding: 22px 18px 18px;
    border: 1px solid rgba(15, 194, 216, 0.15);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(15, 194, 216, 0.06),
            rgba(255, 255, 255, 0.015)
        );
    color: var(--vex-white);
    font-size: 0.82rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.48;
}

.learn-card blockquote::before {
    position: absolute;
    top: 7px;
    left: 13px;
    color: rgba(15, 194, 216, 0.38);
    content: "“";
    font-family: Georgia, serif;
    font-size: 2.2rem;
    line-height: 1;
}

.learn-card blockquote::after {
    position: absolute;
    right: 12px;
    bottom: -4px;
    color: rgba(15, 194, 216, 0.2);
    content: "”";
    font-family: Georgia, serif;
    font-size: 2.2rem;
    line-height: 1;
}

/* CTA */

.learn-actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.learn-actions .btn-vex {
    min-width: 330px;
}

/* ==========================================================
   8.DIFERENCIAL DA VEX
   ========================================================== */

.difference-section {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--vex-border);
    background: var(--vex-bg);
}

.difference-row {
    min-height: 690px;
}

.difference-content {
    max-width: 610px;
    padding: 82px 0 72px 42px;
    text-align: left;
}

.difference-title {
    margin: 10px 0 28px;
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: clamp(2.7rem, 4vw, 4.4rem);
    font-weight: 500;
    line-height: 1.04;
    text-transform: uppercase;
}

.difference-text {
    margin: 0 0 18px;
    color: var(--vex-muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

.difference-highlight {
    margin: 28px 0 0;
    color: var(--vex-white);
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.55;
}

.difference-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 34px;
}

.difference-actions .btn-vex {
    min-width: 320px;
}

/* Imagem do lado esquerdo */

.difference-image-col {
    position: relative;
    align-self: stretch;
    overflow: hidden;
}

.difference-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 690px;
    overflow: hidden;
}

.difference-image {
   display:block;
    width:100%;
    max-width:none;
    height:auto;

    object-fit:contain;
    object-position:bottom right;
	
	transform: translateY(60px);
}

/* ==========================================================
   9. PALESTRANTES
   ========================================================== */

.speakers-section {
    position: relative;
    padding: 8px 0 10px;
    border-bottom: 1px solid var(--vex-border);
    background: var(--vex-bg);
}

.speakers-section::before {
    position: absolute;
    top: 30px;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--vex-border);
    content: "";
}

/* Container mais largo apenas nesta seção */

.speakers-section .container {
	width: 100% !important;
    max-width: 1900px !important;
}

/* Menor distância entre os dois cards */

.speakers-section .row {
    --bs-gutter-x: 16px;
}

.speaker-card{
    display:grid;
    grid-template-columns:42% 58%;
    width:100%;
    height:500px;
    overflow:hidden;

    border:1px solid var(--vex-border);
    border-radius:var(--vex-radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(5,24,35,.95),
            rgba(2,14,22,.95)
        );
}

/* ===========================
   IMAGENS
=========================== */

.speaker-card img{

    align-self:end;
    justify-self:center;

    width:115%;
    height:auto;

    max-width:none;

    object-fit:contain;
    object-position:center bottom;

    transform-origin:center bottom;
	/*transform: translatey(-80px) !important;*/
}

/* JULIANA */

.speaker-card--juliana img{

    width:132%;

    transform:translateX(4px) translatey(-80px);
}

/* ROBLEDO */

.speaker-card--robledo img{

    width:132%;

    transform:translateX(8px) translatey(-80px);
}

.speaker-content{
    position:relative;
    z-index:2;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    min-width:0;
    padding:34px 30px 30px 12px;
}

/* Nome */

.speaker-content h3 {
    min-height: 76px;
    margin: 0;
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 0.98;
    text-transform: uppercase;
}

/* Cargo */

.speaker-content h4 {
    display: flex;
    align-items: flex-start;
    min-height: 58px;
    margin: 8px 0 18px;
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
}

/* Juliana */

.speaker-card--juliana .speaker-content h3{
    min-height:76px;
}

.speaker-card--juliana .speaker-content h4{
    margin-top:-40px;
}

/* Robledo */

.speaker-card--robledo .speaker-content h3{
    min-height:auto;
}

.speaker-card--robledo .speaker-content h4{
    margin-top:8px;
}

/* Texto */

.speaker-content p {
    margin: 0 0 14px;
    color: var(--vex-muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.speaker-content p:last-child {
    margin-bottom: 0;
}

/* Botão */

.speakers-actions {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.speakers-actions .btn-vex {
    min-width: 320px;
}

/* ==========================================================
   10. PROGRAMAÇÃO
   ========================================================== */

.schedule-section {
    position: relative;
    padding: 18px 0 30px;
    border-bottom: 1px solid var(--vex-border);
    background: var(--vex-bg);
}

.schedule-section::before {
    position: absolute;
    top: 30px;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--vex-border);
    content: "";
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: start;
    gap: 0;
}

.schedule-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding: 0 14px;
    text-align: center;
}

.schedule-item:not(:last-child)::after {
    position: absolute;
    top: 26px;
    right: -16px;
    color: var(--vex-cyan);
    content: "⟶";
    font-size: 2rem;
    font-weight: 300;
}

.schedule-item > i {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 9px;
    border: 1px solid var(--vex-white);
    border-radius: 50%;
    color: var(--vex-white);
    font-size: 1.65rem;
    place-items: center;
}

.schedule-item strong {
    margin-bottom: 5px;
    color: var(--vex-cyan-light);
    font-family: var(--vex-font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
}

.schedule-item span {
    max-width: 145px;
    color: var(--vex-muted);
    font-size: 0.79rem;
    line-height: 1.35;
}

/* ==========================================================
   11. LOCAL
   ========================================================== */

.location-section {
    position: relative;
    padding: 18px 0 8px;
    background: #03121c;
}

.location-section::before {
    position: absolute;
    top: 30px;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--vex-border);
    content: "";
}

.location-card,
.mini-card {
    width: 100%;
    height: 100%;
    min-height: 114px;
    border: 1px solid var(--vex-border);
    border-radius: var(--vex-radius-md);
    background:
        linear-gradient(
            145deg,
            rgba(5, 25, 36, 0.8),
            rgba(2, 15, 23, 0.92)
        );
}

/* Card principal */

.location-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
}

.location-card > i {
    flex: 0 0 auto;
    color: var(--vex-cyan-light);
    font-size: 3.5rem;
    line-height: 1;
}

.location-card h3 {
    margin: 0 0 5px;
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: 1.22rem;
    font-weight: 500;
    line-height: 1.05;
    text-transform: uppercase;
}

.location-card p {
    margin: 0;
    color: var(--vex-muted);
    font-size: 0.76rem;
    line-height: 1.4;
}

/* Cards menores */

.mini-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px;
}

.mini-card > i {
    flex: 0 0 auto;
    color: var(--vex-cyan-light);
    font-size: 2.65rem;
    line-height: 1;
}

.mini-card-content {
    min-width: 0;
}

.mini-card h4 {
    margin: 0 0 3px;
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.1;
}

.mini-card p {
    margin: 0;
    color: var(--vex-muted);
    font-size: 0.75rem;
    line-height: 1.35;
}

/* Mantém o endereço em uma única linha no desktop */

.mini-card--local p {
    white-space: nowrap;
}

/* Horário com espaço um pouco menor */

.mini-card--time {
    gap: 10px;
    padding-right: 12px;
    padding-left: 12px;
}

.mini-card--time > i {
    font-size: 2.35rem;
}

.mini-card--time h4 {
    font-size: 1rem;
}

.mini-card--time p {
    white-space: nowrap;
    font-size: 0.72rem;
}

/* =====================================
   12.MAPA DO EVENTO
===================================== */
.map-section{
    padding:70px 0 80px;
    background:#0b1220;
    border-top:1px solid rgba(255,255,255,.08);
}

.map-header{
    max-width:760px;
    margin:0 auto 40px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.map-header .section-kicker,
.map-header .section-title,
.map-header .section-text{
    width:100%;
    text-align:center;
}

.map-header .section-kicker{
    display:block;
    margin-bottom:10px;
    color:#00b8d4;
}

.map-header .section-title{
    margin:0 0 14px;
    padding:0;
    background:transparent;
    color:#ffffff;
    font-size:38px;
    line-height:1.15;
    text-align:center;
    box-shadow:none;
}

.map-header .section-title::before,
.map-header .section-title::after{
    display:none;
}

.map-header .section-text{
    margin:0;
    color:rgba(255,255,255,.72);
    font-size:17px;
    line-height:1.7;
}

.map-wrapper{
    max-width:1100px;
    margin:0 auto;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    border-radius:22px;
    background:#111827;
    box-shadow:0 24px 60px rgba(0,0,0,.35);
}

.map-wrapper iframe{
    display:block;
    width:100%;
    height:430px;
    border:0;
}

.map-actions{
    display:flex;
    justify-content:center;
    margin-top:28px;
}

.map-actions .btn-vex{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:auto;
    min-width:280px;
}

/* ==========================================================
   13. CTA FINAL
   ========================================================== */

.final-cta {
    padding: 8px 0 22px;
    background: #03121c;
}

.final-cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta .limited {
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.final-cta h2 {
    margin: 4px 0 30px;
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    font-weight: 400;
    line-height: 1;
}

.final-cta h2 strong {
    color: var(--vex-cyan-light);
    font-weight: 500;
	font-size: 1.2em;
}

.final-cta .btn-vex {
    min-width: 350px;
    min-height: 38px;
    padding: 6px 28px;
    font-size: 1.15rem;
}

.cta-content{
    text-align:center;
}

.cta-title{
    margin-bottom:4px;
}

.cta-kicker{
    display: block;
    margin: -25px 0 20px 0 !important;
    padding: 0;
    line-height: 1;
}

.cta-content .btn-vex{
    margin-top: 0;
}

/* ==========================================================
   14. FOOTER
   ========================================================== */

.site-footer {
    border-top: 1px solid var(--vex-border);
    background: var(--vex-bg-deep);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 38px 0 25px;
}

.footer-brand {
    max-width: 480px;
}

.footer-description {
    margin: 12px 0 0;
    color: var(--vex-muted);
    font-size: 0.88rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    display: grid;
    width: 42px;
    height: 42px;
    border: 1px solid var(--vex-border-strong);
    border-radius: 50%;
    color: var(--vex-cyan-light);
    place-items: center;
}

.footer-social a:hover {
    border-color: var(--vex-cyan-light);
    background: var(--vex-cyan);
    color: var(--vex-white);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid var(--vex-border);
}

.footer-bottom p {
    margin: 0;
    color: var(--vex-muted-dark);
    font-size: 0.78rem;
}

.footer-credit a {
    color: var(--vex-cyan-light);
}

/* ==========================================================
   15. BLOG E PÁGINAS INTERNAS
   ========================================================== */

.blog-page,
.archive-page,
.search-page,
.single-post-page,
.internal-page {
    min-height: 100vh;
    background: var(--vex-bg);
}

.blog-hero {
    padding: 100px 0 70px;
    border-bottom: 1px solid var(--vex-border);
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(0, 167, 189, 0.15),
            transparent 35%
        ),
        var(--vex-bg-deep);
}

.blog-hero h1,
.single-header h1,
.internal-header h1 {
    margin: 0;
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 600;
    line-height: 0.95;
}

.blog-hero p,
.archive-description {
    max-width: 700px;
    margin-top: 20px;
    color: var(--vex-muted);
}

.blog-list {
    padding: 65px 0;
}

.blog-card {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--vex-border);
    border-radius: var(--vex-radius-md);
    background: var(--vex-bg-card);
    transition:
        transform var(--vex-transition),
        border-color var(--vex-transition);
}

.blog-card:hover {
    border-color: var(--vex-cyan);
    transform: translateY(-5px);
}

.blog-card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--vex-bg-deep);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    color: var(--vex-cyan);
    font-size: 3rem;
    place-items: center;
}

.blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.blog-card-meta,
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--vex-muted-dark);
    font-size: 0.8rem;
}

.blog-card-meta i,
.post-meta i {
    margin-right: 4px;
    color: var(--vex-cyan);
}

.blog-card-title {
    margin: 15px 0;
    font-family: var(--vex-font-heading);
    font-size: 2rem;
    line-height: 1.05;
}

.blog-card-title a {
    color: var(--vex-white);
}

.blog-card-excerpt {
    color: var(--vex-muted);
    font-size: 0.92rem;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 17px;
    color: var(--vex-cyan-light);
    font-weight: 600;
}

.blog-pagination {
    margin-top: 45px;
}

.blog-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.blog-pagination .page-numbers {
    display: grid;
    min-width: 43px;
    min-height: 43px;
    padding: 8px 12px;
    border: 1px solid var(--vex-border);
    border-radius: var(--vex-radius-sm);
    color: var(--vex-white);
    place-items: center;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    border-color: var(--vex-cyan);
    background: var(--vex-cyan);
}

.single-article,
.internal-article {
    max-width: 920px;
    margin: 0 auto;
    padding: 80px 0 55px;
}

.single-header,
.internal-header {
    margin-bottom: 35px;
}

.post-category {
    margin-bottom: 14px;
}

.post-category a,
.post-tags a {
    color: var(--vex-cyan-light);
}

.post-meta {
    margin-top: 20px;
}

.single-thumbnail,
.internal-thumbnail {
    overflow: hidden;
    margin: 0 0 38px;
    border-radius: var(--vex-radius-lg);
}

.single-content,
.internal-content {
    color: #dce6ea;
    font-size: 1.05rem;
    line-height: 1.85;
}

.single-content h2,
.internal-content h2 {
    margin-top: 1.8em;
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: 2.6rem;
}

.single-content h3,
.internal-content h3 {
    margin-top: 1.6em;
    color: var(--vex-white);
    font-family: var(--vex-font-heading);
    font-size: 2rem;
}

.single-content a,
.internal-content a {
    color: var(--vex-cyan-light);
    text-decoration: underline;
}

.single-content blockquote {
    margin: 32px 0;
    padding: 23px;
    border-left: 4px solid var(--vex-cyan);
    background: var(--vex-bg-card);
}

.search-form {
    display: flex;
    max-width: 620px;
    margin-top: 25px;
}

.search-field {
    width: 100%;
    min-height: 52px;
    padding: 12px 17px;
    border: 1px solid var(--vex-border);
    border-right: 0;
    border-radius: var(--vex-radius-sm) 0 0 var(--vex-radius-sm);
    outline: none;
    background: var(--vex-bg-card);
    color: var(--vex-white);
}

.search-field:focus {
    border-color: var(--vex-cyan);
}

.search-submit {
    width: 56px;
    border: 1px solid var(--vex-cyan);
    border-radius: 0 var(--vex-radius-sm) var(--vex-radius-sm) 0;
    background: var(--vex-cyan);
    color: var(--vex-white);
}

.content-none {
    padding: 80px 20px;
    text-align: center;
}

.content-none > i {
    color: var(--vex-cyan);
    font-size: 4rem;
}

.hero-desktop {
    display: block !important;
}

.hero-mobile {
	display: none !important;
}

/* ==========================================================
   16. RESPONSIVO
   ========================================================== */

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 4.7rem;
    }

    .highlight-item {
        padding-inline: 20px;
    }

    .schedule-item {
        padding-inline: 7px;
    }

    .schedule-item:not(:last-child)::after {
        right: -12px;
    }
	
	.learn-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .learn-card h3 {
        font-size: 1.9rem;
    }
}

@media (max-width: 991.98px) {
    .container {
        width: min(100% - 32px, var(--vex-container));
    }

    .hero-section {
        min-height: auto;
    }

    .hero-top {
        justify-content: flex-start;
        min-height: 100px;
    }

    .hero-top-cta {
        right: 0;
    }

    .hero-row {
        min-height: auto;
    }

    .hero-content {
        max-width: 680px;
        padding: 35px 0 20px;
    }

    .hero-title {
        font-size: clamp(4rem, 9vw, 5.3rem);
    }

    .hero-image-wrapper {
        min-height: 520px;
    }

    .hero-image {
        max-height: 530px;
    }

    .event-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-item:nth-child(2)::after {
        display: none;
    }

    .highlight-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--vex-border);
    }

    .truth-content {
        padding-bottom: 15px;
    }

    .truth-image-wrapper {
        min-height: 430px;
    }

    .truth-image {
        max-height: 430px;
    }

    .speaker-card {
        min-height: 270px;
    }

    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 35px;
    }

    .schedule-item:nth-child(3)::after {
        display: none;
    }

    .schedule-item:not(:last-child)::after {
        right: -10px;
    }

    .location-card {
        min-height: 130px;
    }
	
	.hero-image-wrapper {
        min-height: 540px;
        justify-content: center;
    }

    .hero-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 620px;
    }
	
	 .map-section{
        padding:80px 0;
    }

    .map-wrapper iframe{
        height:420px;
    }
}

@media (max-width: 767.98px) {

    body.admin-bar .site-header {
        top: 46px;
    }

    .container {
        width: min(100% - 26px, var(--vex-container));
    }
	
	.hero-desktop {
		display: none !important;
	}

	.hero-mobile {
		display: block !important;
	}
	
	/* ==========================================================
   HERO EXCLUSIVO MOBILE
   ========================================================== */
	.hero-desktop {
		display: none !important;
	}

	.hero-mobile {
		display: block;
	}

	.hero-section {
		padding-bottom: 0;
	}

	.hero-mobile-top {
		display: flex;
		min-height: 112px;
		align-items: flex-start;
		justify-content: space-between;
		padding: 18px 0 16px;
	}

	.hero-mobile-top .hero-logo {
		display: block;
		min-width: 0;
	}

	.hero-mobile-top .hero-logo-vex {
		font-size: 1.75rem;
		line-height: 1;
	}

	.hero-mobile-top .hero-logo-pocket {
		font-size: 1.68rem;
		line-height: 1;
	}

	.hero-mobile-top .hero-logo small {
		display: block;
		margin-top: 5px;
		font-size: 0.64rem;
		line-height: 1.2;
	}

	.hero-mobile-top .hero-top-cta {
		position: static;
		flex: 0 0 auto;
		min-height: 38px;
		padding: 8px 10px;
		font-size: 0.64rem;
		white-space: nowrap;
	}

	.hero-mobile-content {
		padding: 12px 0 8px;
		text-align: left;
	}

	.hero-mobile-content .section-kicker {
		display: block;
		margin-bottom: 14px;
	}

	.hero-mobile-content .hero-title {
		margin: 0;
		font-size: clamp(3.4rem, 16vw, 4.5rem);
		line-height: 0.94;
	}

	.hero-mobile-image-wrapper {
		position: relative;
		width: 100%;
		height: 390px;
		margin-top: -8px;
		overflow: hidden;
	}

	.hero-mobile-image {
		position: absolute;
		bottom: 0;
		left: 50%;
		display: block;
		width: 135%;
		max-width: none;
		height: auto;
		max-height: 390px;
		object-fit: contain;
		object-position: center bottom;
		transform: translateX(-50%);
	}

	.hero-mobile-actions {
		display: flex;
		width: 100%;
		flex-direction: column;
		align-items: center;
		padding: 18px 0 24px;
	}

	.hero-mobile-actions .btn-vex {
		width: 100%;
		min-height: 54px;
	}

	.hero-mobile-actions .limited-seats {
		margin-top: 10px;
		color: var(--vex-white);
		font-size: 0.8rem;
		font-weight: 700;
		letter-spacing: 0.06em;
		line-height: 1;
		text-transform: uppercase;
	}

	.hero-mobile-details {
		padding: 0 0 38px;
	}

	.hero-mobile-details .hero-text {
		margin: 0 0 28px;
		font-size: 0.98rem;
		line-height: 1.55;
	}

	.hero-mobile-details .event-details {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px 12px;
	}

	.hero-mobile-details .event-detail {
		min-width: 0;
	}

	.hero-mobile-details .event-detail i {
		font-size: 1.45rem;
	}

	.hero-mobile-details .event-detail strong {
		font-size: 0.9rem;
	}

	.hero-mobile-details .event-detail small {
		font-size: 0.7rem;
	}
	
    /* ==========================================================
       BOTÕES
       ========================================================== */

    .btn-vex {
        min-width: 0;
        min-height: 53px;
        font-size: 1.25rem;
    }

    /* ==========================================================
       DESTAQUES
       ========================================================== */

    .event-highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        min-height: 105px;
        padding: 18px 15px;
        border-bottom: 1px solid var(--vex-border);
    }

    .highlight-item:last-child {
        border-bottom: 0;
    }

    .highlight-item::after {
        display: none;
    }

    /* ==========================================================
       TRUTH
       ========================================================== */

    .truth-section {
        padding-bottom: 0;
    }

    .truth-row {
        min-height: 0;
        align-items: flex-end !important;
    }

    .truth-content {
        padding: 52px 0 24px;
    }

    .truth-title {
        font-size: 2.8rem;
    }

    .truth-actions {
        margin-top: 28px;
        margin-bottom: 0;
    }

    .truth-actions .btn-vex {
        width: 100%;
    }

    .truth-image-col {
		position: relative !important;
		display: block !important;
		width: 100% !important;
		min-height: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
	}

	.truth-image-wrapper {
		position: relative !important;
		display: flex !important;
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		align-items: flex-end !important;
		justify-content: center !important;
		margin: 0 !important;
		padding-top: 18px !important;
		overflow: hidden !important;
	}

	.truth-image-wrapper .truth-image {
		position: relative !important;
		right: auto !important;
		bottom: auto !important;
		left: auto !important;

		display: block !important;
		width: 92% !important;
		max-width: 390px !important;
		height: auto !important;
		max-height: none !important;

		margin: 0 auto !important;
		opacity: 1 !important;
		visibility: visible !important;

		object-fit: contain !important;
		object-position: center bottom !important;

		transform: none !important;
	}

    /* ==========================================================
       AULAS
       ========================================================== */

    .learn-section {
        padding: 52px 0 58px;
		margin-top: -35px;
    }

    .learn-section .section-heading {
        margin-bottom: 32px;
        text-align: left;
    }

    .learn-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .learn-card {
        padding: 28px 20px 22px;
        border-radius: 22px;
    }

    .learn-card:hover {
        transform: none;
    }

    .learn-card h3 {
        font-size: 1.8rem;
    }

    .learn-subtitle {
        font-size: 0.9rem;
    }

    .learn-card li,
    .learn-card blockquote {
        font-size: 0.86rem;
    }

    .learn-actions {
        margin-top: 32px;
    }

    .learn-actions .btn-vex {
        width: 100%;
        min-width: 0;
    }

    /* ==========================================================
    DIFERENCIAL — MOBILE
    ========================================================== */

	.difference-section {
		padding: 0;
	}

	.difference-row {
		display: flex;
		min-height: 0 !important;
		flex-direction: column;
		align-items: stretch !important;
	}

	/* Texto primeiro */

	.difference-image-col {
		order: 1;
	}

	.difference-row > .col-lg-6:last-child {
		order: 2;
	}

	.difference-content {
		width: 100%;
		max-width: none;
		padding: 52px 0 28px;
		text-align: left;
		margin-top: -70px;
	}

	.difference-title {
		margin: 10px 0 22px;
		font-size: 2.55rem;
		line-height: 1.06;
	}

	.difference-text {
		margin-bottom: 16px;
		font-size: 0.98rem;
		line-height: 1.6;
	}

	.difference-highlight {
		margin-top: 22px;
		font-size: 1.04rem;
		line-height: 1.55;
	}

	.difference-actions {
		display: flex;
		width: 100%;
		justify-content: flex-start;
		margin-top: 28px;
	}

	.difference-actions .btn-vex {
		width: 100%;
		min-width: 0;
	}

	/* Imagem depois do conteúdo */

	.difference-image-col {
		position: relative !important;
		display: block !important;
		width: 100% !important;
		min-height: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
	}

	.difference-image-wrapper {
		position: relative !important;
		display: flex !important;
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		align-items: flex-end !important;
		justify-content: center !important;
		margin: 0 !important;
		overflow: hidden !important;
	}

	.difference-image-wrapper .difference-image {
		position: relative !important;
		right: auto !important;
		bottom: auto !important;
		left: auto !important;

		display: block !important;
		width: 92% !important;
		max-width: 390px !important;
		height: auto !important;
		max-height: none !important;

		margin: 0 auto !important;
		opacity: 1 !important;
		visibility: visible !important;

		object-fit: contain !important;
		object-position: center bottom !important;

		transform: none !important;
	}

    /* ==========================================================
    PALESTRANTES — MOBILE
    ========================================================== */
	.speaker-card {
		display: flex !important;
		min-height: 0 !important;
		height: 100% !important;
		flex-direction: column !important;
		overflow: hidden !important;
	}

	.speaker-card > img,
	.speaker-card .speaker-image,
	.speaker-card .speaker-photo {
		display: block !important;
		width: 100% !important;
		max-width: none !important;		
		height:420px !important;
		max-height: none !important;
		align-self: stretch !important;
		margin: 0 !important;

		object-fit: contain !important;
		object-position: center bottom !important;

		transform: scale(1.22) !important;
		transform-origin: center bottom !important;
	}
	
	.speaker-card--juliana > img {
		height: 420px !important;
		transform: translateY(20px) scale(1.22) !important;
		transform-origin: center bottom !important;
		object-position: center bottom !important;
	}

    .speaker-card--robledo > img {
        height: 460px !important;
        transform: translateY(40px) scale(1.28) !important;
        transform-origin: center bottom !important;
        object-position: center bottom !important;
    }

	.speaker-content {
		position: relative;
		z-index: 2;
		width: 100%;
		padding: 18px 20px 24px;
		background: #03121c;
		text-align: left;
	}

	.speaker-content h3 {
		margin: 0 0 8px;
		font-size: 1.9rem;
		line-height: 1;
	}

	.speaker-content h4 {
		margin: 0 0 12px;
		font-size: 1.25rem;
	}

	.speaker-content p {
		margin: 8px 0 0;
		font-size: 0.98rem;
		line-height: 1.45;
	}

	.speakers-actions {
		margin-top: 32px;
	}

	.speakers-actions .btn-vex {
		width: 100%;
		min-width: 0;
	}

    /* ==========================================================
       PROGRAMAÇÃO
       ========================================================== */

    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0;
    }

    .schedule-item:nth-child(3)::after {
        display: block;
    }

    .schedule-item:nth-child(even)::after,
    .schedule-item:last-child::after {
        display: none;
    }

    .schedule-item > i {
        width: 52px;
        height: 52px;
    }

    /* ==========================================================
       LOCAL
       ========================================================== */

    .location-card,
    .mini-card {
        min-height: 105px;
    }

    /* ==========================================================
       CTA FINAL
       ========================================================== */

    .final-cta {
        padding-bottom: 28px;
    }

    .final-cta h2 {
        max-width: 340px;
        line-height: 1.15;
    }

    .final-cta .btn-vex {
        width: 100%;
        min-width: 0;
    }

    /* ==========================================================
       RODAPÉ
       ========================================================== */

    .footer-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .hero-top {
        justify-content: flex-start;
    }

    .hero-top-cta {
        position: static;
        margin-left: auto;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 3.85rem);
    }

    .event-details {
        grid-template-columns: 1fr 1fr;
    }

    .hero-image-wrapper {
        min-height: 360px;
    }

    .hero-image {
        max-height: 380px;
    }

    .truth-title {
        font-size: 2.45rem;
    }

    .truth-list li,
    .learn-list li {
        font-size: 0.88rem;
    }

    .speaker-card {
        grid-template-columns: 1fr;
    }

    .speaker-card img {
        height: 240px;
    }

    .speaker-content {
        padding: 22px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        padding-bottom: 24px;
        border-bottom: 1px solid var(--vex-border);
    }

    .schedule-item:last-child {
        border-bottom: 0;
    }

    .schedule-item::after {
        display: none !important;
    }

    .schedule-item span {
        max-width: 230px;
    }

    .location-card {
        align-items: flex-start;
    }

    .mini-card {
        grid-template-columns: auto 1fr;
    }

    .final-cta .limited {
        font-size: 1.05rem;
    }

    .final-cta h2 {
        font-size: 1.75rem;
    }
}