/* ===============================
   JORNADA DO CRESCIMENTO — LIVE LP STYLES
   =============================== */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

::selection {
    background: #083FCF;
    color: white;
}

*:focus-visible {
    outline: 3px solid #083FCF;
    outline-offset: 2px;
}

/* ===============================
   PAGE BACKGROUND
   =============================== */

body {
    background-image: url('../images/jornada-do-crescimento/background-jornada.png');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #f5f3ef;
}

/* ===============================
   BUTTONS
   =============================== */

.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    box-shadow: 0 4px 12px rgba(8, 63, 207, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(8, 63, 207, 0.4);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

/* ===============================
   CONTAINER
   =============================== */

.jdc-hero .container,
.jdc-topics .container,
.jdc-community .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===============================
   HERO SECTION
   =============================== */

.jdc-hero {
    position: relative;
    padding: 4rem 0 5rem;
}

.jdc-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* LEFT COLUMN */
.jdc-hero-content {
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Logos row */
.jdc-hero-logos {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.jdc-logo-jdc {
    height: 120px;
    width: auto;
}

.jdc-logo-lumni {
    height: 28px;
    width: auto;
    opacity: 0.9;
}

.jdc-logo-gpts {
    height: 48px;
    width: auto;
    opacity: 0.9;
}

.jdc-logos-divider {
    display: block;
    width: 1px;
    height: 28px;
    background: rgba(8, 63, 207, 0.2);
    flex-shrink: 0;
}

/* Live tag */
.jdc-live-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(252, 125, 85, 0.12);
    border: 1.5px solid rgba(252, 125, 85, 0.35);
    color: #c85f30;
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;

}

.jdc-live-tag-dot {
    width: 8px;
    height: 8px;
    background: #FC7D55;
    border-radius: 50%;
    display: inline-block;
    animation: jdc-pulse 1.4s ease-in-out infinite;
}

@keyframes jdc-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(252, 125, 85, 0.7); }
    50% { box-shadow: 0 0 0 5px rgba(252, 125, 85, 0); }
}

/* Hero title */
.jdc-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1F2937;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.jdc-hero-highlight {
    color: #FC7D55;
}

/* Event info badges */
.jdc-event-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.jdc-event-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(252, 125, 85, 0.12);
    border: 1.5px solid rgba(252, 125, 85, 0.35);
    border-radius: 100px;
    padding: 0.45rem 1rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #c85f30;
}

.jdc-event-badge strong {
    color: #c85f30;
    font-weight: 700;
}

.jdc-event-badge-icon {
    font-size: 0.95rem;
    line-height: 1;
}

/* Speakers */
.jdc-speakers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
    align-items: flex-start;
    width: 100%;
}

.jdc-speaker {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 55%;
}

.jdc-speaker-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    width: 100%;
}

.jdc-speaker-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.jdc-speaker:hover .jdc-speaker-photo {
    transform: scale(1.04);
}

/* Nome + cargo abaixo da imagem */
.jdc-speaker-label {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: left;
}

.jdc-speaker-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.2;
}

.jdc-speaker-role {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.4;
}

/* RIGHT COLUMN — Form */
.jdc-hero-form {
    position: sticky;
    top: 80px;
}

.jdc-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem 1.75rem 1.75rem;
    box-shadow: 0 20px 60px rgba(8, 63, 207, 0.15), 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(8, 63, 207, 0.08);
}

.jdc-form-header {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
}

.jdc-form-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.35rem;
}

.jdc-form-header p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

/* ===============================
   FORM FIELDS (shared)
   =============================== */

.waitlist-form .form-group {
    margin-bottom: 0.75rem;
}

.waitlist-form .form-group label {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.waitlist-form .form-group input,
.waitlist-form .form-group select {
    width: 100%;
    padding: 0.5rem 0.8rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: #1F2937;
    background: #f9fafb;
    transition: all 0.2s ease;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.waitlist-form .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.25rem;
}

.waitlist-form .form-group input:focus,
.waitlist-form .form-group select:focus {
    outline: none;
    border-color: #083FCF;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(8, 63, 207, 0.1);
}

.waitlist-form .form-group input::placeholder {
    color: #9CA3AF;
}

.form-required {
    color: #FC7D55;
    font-weight: 700;
}

.form-radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.25rem;
}

.form-radio-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #4B5563;
    font-weight: 400;
    cursor: pointer;
}

.form-radio-label input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #083FCF;
    cursor: pointer;
}

/* City + state inline row */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
}

.form-row-2 .form-group {
    margin-bottom: 0;
}

.form-state-select {
    width: 90px !important;
}

.waitlist-form .btn-submit {
    width: 100%;
    margin-top: 0.5rem;
    height: 54px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
}

/* ===============================
   TOPICS SECTION
   =============================== */

.jdc-section-divider {
    max-width: 680px;
    margin: 2.5rem auto;
    border-top: 1px solid rgba(8, 63, 207, 0.1);
}

.jdc-topics {
    padding: 5rem 0;
}

.jdc-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.jdc-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.jdc-section-header h2 span {
    color: #FC7D55;
}

.jdc-section-header p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.65;
}

.jdc-topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.jdc-topic-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(8, 63, 207, 0.08);
    border-radius: 16px;
    padding: 1.75rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.jdc-topic-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(8, 63, 207, 0.2);
    box-shadow: 0 8px 30px rgba(8, 63, 207, 0.1);
    transform: translateY(-3px);
}

.jdc-topic-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FC7D55;
    line-height: 1;
    min-width: 52px;
    flex-shrink: 0;
    opacity: 0.8;
}

.jdc-topic-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.jdc-topic-content p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.jdc-section-cta {
    display: flex;
    justify-content: center;
}

/* ===============================
   FACILITATORS SECTION
   =============================== */

.jdc-facilitators {
    padding: 4rem 0;
}

.jdc-facilitators .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jdc-facilitators .jdc-section-header {
    margin-bottom: 2.5rem;
}

.jdc-facilitators .jdc-section-header h2 span {
    color: #FC7D55
}

.jdc-facilitators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.jdc-facilitator-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(8, 63, 207, 0.08);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.jdc-facilitator-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(8, 63, 207, 0.15);
    box-shadow: 0 8px 30px rgba(8, 63, 207, 0.1);
}

.jdc-facilitator-photo {
    width: 180px;
    height: 225px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.jdc-facilitator-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.jdc-facilitator-role {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.jdc-facilitator-bio {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .jdc-facilitators-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===============================
   COMMUNITY SECTION
   =============================== */

.jdc-community {
    padding: 5rem 0;
}

.jdc-community-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.jdc-wa-icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.jdc-community-inner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.jdc-community-inner h2 strong {
    color: #FC7D55;
}

.jdc-community-inner > p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

/* Logos row */
.jdc-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(8, 63, 207, 0.1);
    flex-wrap: wrap;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.jdc-logos-row img {
    opacity: 0.65;
    transition: opacity 0.3s ease;
    filter: grayscale(20%);
}

.jdc-logos-row img:hover {
    opacity: 0.9;
    filter: grayscale(0%);
}

.jdc-footer-logo-jdc {
    height: 44px;
    width: auto;
}

.jdc-footer-logo-lumni {
    height: 28px;
    width: auto;
}

.jdc-footer-logo-gpts {
    height: 44px;
    width: auto;
}

/* ===============================
   MOBILE STICKY CTA
   =============================== */

.jdc-mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e5e7eb;
    padding: 0.85rem 1.25rem;
    z-index: 998;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.jdc-mobile-sticky.visible {
    display: block;
}

.jdc-mobile-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.jdc-mobile-sticky-text {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1F2937;
}

.jdc-mobile-sticky-text span {
    display: block;
    font-size: 0.8rem;
    color: #6B7280;
    font-weight: 400;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 900px) {
    .jdc-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .jdc-hero-form {
        position: static;
    }

    .jdc-hero-content {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

    .jdc-hero-logos {
        justify-content: center;
    }

    .jdc-event-info {
        justify-content: center;
    }

    .jdc-hero-title {
        font-size: 2.75rem;
        text-align: center;
    }

    .jdc-speakers {
        align-items: center;
    }

    .jdc-speaker {
        align-items: center;
        width: 100%;
        max-width: 220px;
    }

    .jdc-speaker-label {
        text-align: center;
    }

    .jdc-topics-grid {
        grid-template-columns: 1fr;
    }

    .jdc-section-header {
        text-align: center;
    }

    .jdc-section-cta {
        display: flex;
        justify-content: center;
    }

    .jdc-facilitators .jdc-section-header {
        text-align: center;
    }

    .jdc-form-card {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .jdc-hero {
        padding: 3rem 0 4rem;
    }

    .jdc-hero-title {
        font-size: 2.5rem;
    }

    .jdc-section-header {
        text-align: center;
    }

    .jdc-section-header h2 {
        font-size: 1.75rem;
    }

    .jdc-section-header p {
        margin-left: auto;
        margin-right: auto;
    }

    .jdc-community-inner h2 {
        font-size: 1.6rem;
    }

    .jdc-speakers {
        flex-direction: column;
        align-items: center;
    }

    .jdc-speaker {
        align-items: center;
    }

    .jdc-speaker-label {
        text-align: center;
    }

    .jdc-form-card {
        padding: 1.5rem;
    }

    .jdc-logos-row {
        gap: 1.75rem;
    }

    .jdc-topics .container,
    .jdc-facilitators .container {
        text-align: center;
    }

    .jdc-topic-item {
        text-align: left;
    }

    .jdc-facilitators-grid {
        justify-items: center;
    }

    .jdc-facilitator-card {
        text-align: center;
    }

    .jdc-facilitator-info {
        text-align: center;
    }

    .jdc-mobile-sticky.visible {
        display: block;
    }
}

@media (max-width: 480px) {
    .jdc-hero .container,
    .jdc-topics .container,
    .jdc-community .container {
        padding: 0 1.25rem;
    }

    .jdc-hero-content {
        text-align: center;
    }

    .jdc-hero-title {
        font-size: 2.1rem;
        text-align: center;
    }

    .jdc-hero-logos {
        gap: 0.85rem;
        justify-content: center;
    }

    .jdc-logo-jdc {
        height: 56px;
    }

    .jdc-speakers {
        align-items: center;
    }

    .jdc-speaker {
        align-items: center;
    }

    .jdc-speaker-label {
        text-align: center;
    }

    .jdc-mobile-sticky-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .jdc-mobile-sticky-text {
        text-align: center;
    }
}
