/* Webinar Page - Apple Clean Light Aesthetic with Cyan (#00cfef) Accents */
body, h1, h2, h3, h4, h5, h6, p, label, input, select, textarea, button {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.webinar-wrapper {
    background-color: #fbfbfd;
    padding: 120px 0 80px 0;
    min-height: 85vh;
}

.webinar-header-box {
    text-align: center;
    margin-bottom: 40px;
}

.webinar-title {
    font-size: 2.5em !important;
    font-weight: 800 !important;
    color: #676767 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 16px !important;
    line-height: 1.25 !important;
}

.webinar-subtitle {
    font-size: 1.2em !important;
    color: #424245 !important;
    line-height: 1.65 !important;
    max-width: 780px !important;
    margin: 0 auto 22px auto !important;
    font-weight: 400 !important;
}

.webinar-datetime-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #0088cc;
    border: 1px solid rgba(0, 207, 239, 0.4);
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 1.05em;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 207, 239, 0.12);
}

.webinar-datetime-badge i {
    color: #00cfef;
}

/* Apple-Inspired Light Card Container */
.webinar-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.webinar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00cfef, #0088cc, #00cfef);
}

.webinar-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 30px;
    border-bottom: 1px solid #f2f2f7;
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.terminal-tag {
    font-family: 'SF Mono', 'Courier New', Courier, monospace;
    font-size: 0.88em;
    color: #0088cc;
    background: rgba(0, 207, 239, 0.08);
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 600;
}

/* Título com espaçamento corrigido */
.webinar-instructions {
    font-size: 1.3em !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
    margin-bottom: 30px !important;
    text-align: center !important;
    letter-spacing: 0.2px !important;
    word-spacing: normal !important;
    line-height: 1.5 !important;
    text-transform: none !important;
}

.webinar-form .form-group {
    margin-bottom: 22px;
}

.webinar-form label {
    display: block;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
    font-size: 0.95em;
    letter-spacing: 0.1px;
}

.webinar-form label span.req {
    color: #00cfef;
    font-weight: 700;
}

.webinar-form .form-control {
    background-color: #f5f5f7 !important;
    border: 1px solid #d2d2d7 !important;
    color: #1d1d1f !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    height: auto !important;
    font-size: 1em !important;
    line-height: 1.5 !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.webinar-form .form-control::placeholder {
    color: #86868b !important;
    opacity: 1 !important;
}

.webinar-form .form-control:focus {
    background-color: #ffffff !important;
    border-color: #00cfef !important;
    box-shadow: 0 0 0 4px rgba(0, 207, 239, 0.18) !important;
    outline: none !important;
}

.webinar-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%3C00cfef' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.webinar-form textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.webinar-submit-btn {
    width: 100%;
    background: #00cfef !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.1em !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 16px 24px !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    box-shadow: 0 4px 18px rgba(0, 207, 239, 0.35) !important;
}

.webinar-submit-btn:hover {
    background: #00b8d4 !important;
    box-shadow: 0 8px 25px rgba(0, 207, 239, 0.45) !important;
    transform: translateY(-2px);
}

.webinar-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed !important;
    transform: none !important;
}

.hp-field {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}
