/* Estilos Globais */
:root {
    --primary-purple: #A730FD;
    --light-purple: #A730FD;
    --dark-blue: #0c0b1e;
    --text-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.2);
}

@font-face {
    font-family: "CustomFont";
    src: url("/fonts/CustomFont-Regular.eot?#iefix") format("embedded-opentype"),
        url("../fonts/CoolveticaLt-Regular.woff2") format("woff2"),
        url("/fonts/CustomFont-Regular.woff") format("woff"),
        url("/fonts/CustomFont-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    /* evita FOIT - mostra fallback até a fonte carregar */
}

/* Bold (700) */
@font-face {
    font-family: "CustomFont bold";
    src: url("/fonts/CustomFont-Bold.eot?#iefix") format("embedded-opentype"),
        url("../fonts/CoolveticaRg-Bold.woff2") format("woff2"),
        url("/fonts/CustomFont-Bold.woff") format("woff"),
        url("/fonts/CustomFont-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "CustomFont", sans-serif;
    background-color: #000;
    color: var(--text-color);
    overflow-x: hidden;
    letter-spacing: 1px;
}

.banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    height: 610px;
}

.banner video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
}

.desc {
    background: #A730FD;
    padding: 10px 16px;
    font-size: 20px;
    letter-spacing: 1px;
    border-radius: 6px;
}

.banner .content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.banner .content h1 {
    margin: 0;
    padding: 0;
    font-size: 5.5em;
    text-transform: uppercase;
    color: #ffff;
    font-family: "CustomFont bold", sans-serif;
}

.banner .content p {
    font-size: 1.5em;
    color: #ffff;
}

/* Imagem de fundo abstrata */
.background-section {
    position: relative;
}

.count.svg-like-card {
    display: flex;
    align-items: center;
    padding: 0px 30px 0px 10px;
    gap: 20px;
}

.svg-like-card {

    /* fundo preto com opacidade igual ao fill-opacity do SVG */
    background: rgba(0, 0, 0, 0.66);

    /* bordas arredondadas compatíveis com o caminho do SVG */
    border-radius: 8px;

    /* cria o efeito de blur do conteúdo por trás (semelhante ao foreignObject + backdrop-filter) */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* para Safari */

    /* se quiser o "recorte" exatamente como o clipPath do svg, mantenha overflow hidden */
    overflow: hidden;

    /* pequena elevação visual (opcional) */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

    /* para posicionamento em demo, remova se não quiser */
    display: inline-block;

    /* fundo preto com opacidade igual ao fill-opacity do SVG */
    background: rgba(0, 0, 0, 0.66);

    /* bordas arredondadas compatíveis com o caminho do SVG */
    border-radius: 8px;

    /* cria o efeito de blur do conteúdo por trás (semelhante ao foreignObject + backdrop-filter) */
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    /* para Safari */

    /* se quiser o "recorte" exatamente como o clipPath do svg, mantenha overflow hidden */
    overflow: hidden;

    /* pequena elevação visual (opcional) */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

    /* para posicionamento em demo, remova se não quiser */
    display: inline-block;
}

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

/* Cabeçalho e Navegação */
.navbar {
    background-color: transparent;
    padding: 1rem 0;
}

.navbar-brand {
    color: var(--text-color) !important;
    line-height: 1;
}

.brand-title {

    font-size: 1.8rem;
    letter-spacing: 5%;
}

.brand-subtitle {
    font-size: 0.55rem;
    font-weight: 300;
    letter-spacing: 1px;
    display: block;
    text-transform: uppercase;
}

.nav-link {
    color: #ccc !important;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    margin: 0 0.8rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
}

.event-tag {
    background-color: #9b59b6;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;

}

.fw-light-f {
    font-weight: 700;
    font-family: "CustomFont bold", sans-serif;
}

.event-date {
    color: var(--text-color);
    letter-spacing: 1px;
    font-size: 36px;
    position: relative;
    top: 3px;
}

.navbar-expand-lg .navbar-nav .btn-nav-cta {
    letter-spacing: 1px;
    border: 1px solid var(--primary-purple);
    color: var(--text-color);
    border-radius: 8px;
    padding: 0;
    font-size: 18px;
    padding: 12px 30px;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
    background-color: transparent;
}

.btn:first-child:active,
.btn:active {
    border: unset;
}

/* .btn-nav-cta:hover {
    background-color: var(--primary-purple);
    color: white;
} */

.title-hero h1 {
    font-size: 62px;
    letter-spacing: 1px;
    text-align: center;
    padding: 50px 0 20px;
    font-family: "CustomFont bold", sans-serif;
}

/* Seção Hero */
.hero h1 {
    font-size: 3.5rem;

    letter-spacing: -1px;
    margin: 2rem 0 4rem;
}

.cta-form {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

.cta-form .form-control {
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    padding: 0.75rem 1rem;
}

.cta-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.cta-form .form-control:focus {
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-form .btn {
    background-color: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cta-form .btn:hover {
    background: transparent;
}

.btn-nav-cta:hover {
    border: unset;
}

header .btn-nav-cta:hover {
    background-color: #fff;
    background: #A730FD;
}

.countdown-label {
    background-color: var(--primary-purple);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: center;
}

.time-segment {
    display: flex;
    gap: 10px;
    align-items: center;
}

.countdown-item {
    text-align: center;
}

span#days,
span#hours {
    font-size: 40px;
    letter-spacing: 1px;
    font-family: "CustomFont bold", sans-serif;
}

.countdown-number {
    font-size: 3.5rem;

    line-height: 1;
}

.countdown-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-healthcare {
    display: inline-block;
    border: 1px solid var(--light-purple);
    color: var(--light-purple);
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 4rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background-color 0.3s, color 0.3s;
}

.tag-healthcare:hover {
    background-color: var(--light-purple);
    color: white;
}

/* Seções de Conteúdo */
.content-section {
    padding: 5rem 0;
}

.content-section:last-of-type {
    border-bottom: none;
}

p.speaker-bio.mt-4.mt-md-0 {
    font-size: 12px;
    margin: 0;
}

h2.section-title {
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

#palestrantes .flex {
    display: grid;
    gap: 0px;
}

#palestrantes .flex img {
    width: 140px;
    border-radius: 50%;
    margin: 0 auto;
}

.center-row {
    justify-content: center;
}

#palestrantes .row.spaced-lg-50 .col-lg-6.text-center {
    margin-bottom: 80px;
}

/* #palestrantes .row.spaced-lg-50:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #fff;
    opacity: 0.2;
    left: 50%;
    transform: translateX(-50%);
} */
#palestrantes .text-start {
    padding: 0;
    margin-top: 10px;
}

.content-section p {
    max-width: 100%;
    line-height: 1.5;
    color: #ccc;
    font-size: 18px;
    letter-spacing: 1px;

}

/* Palestrantes */
.palestrantes-title {
    font-size: 1.4rem;
    text-transform: uppercase;
    color: white;
    line-height: 1.2;
    letter-spacing: 1px;
}

.speaker-card {
    margin-top: 2.5rem;
}

.speaker-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.speaker-info {
    text-align: center;
}

.speaker-info h4 {
    font-size: 1.2rem;
    font-family: "CustomFont bold", sans-serif;
    margin-top: 0;
    margin-bottom: 10px;
    color: white;
    margin-top: 10px;
}

.speaker-info p {
    font-size: 12px;
    color: var(--primary-purple);
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.5;
}

.speaker-bio {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}

.new-speakers-notice {
    display: inline-block;
    background-color: #1a1a1aa7;
    padding: 0.8rem 2.5rem;
    border-radius: 5px;
    margin-top: 3rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.actions.content {
    padding-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
footer {
    text-align: center;
}

.footer-logo {

    font-size: 2rem;
    letter-spacing: 1px;
}

footer h2 {
    font-family: "CustomFont bold", sans-serif;
    font-size: 60px;
    letter-spacing: 1px;
    margin: 2rem 0 2rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    font-size: 0.9rem;
    padding-bottom: 100px;
    color: #aaa;
}

.footer-bottom a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0.5rem 1rem;
}

.footer-bottom a:hover {
    color: var(--primary-purple);
}

.banner-section-two {
    position: relative;
    background-image: url('../img/fundo2.png');
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0 200px;
    text-align: center;
}

.banner-section-two {
    position: relative;
    overflow: hidden;
}

.banner-section-two .svg-like-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.02);
    -webkit-backdrop-filter: blur(17.56px);
    backdrop-filter: blur(17.56px);
    z-index: 0;
}

.banner-section-two .svg-like-card>* {
    position: relative;
    z-index: 1;
}

.box.svg-like-card {
    position: relative;
    width: 80%;
    padding: 20px 20px 60px;
}

.box.svg-like-card .title h2 {
    font-size: 56px;
    margin: 20px 0 20px;
    line-height: 56px;
    text-transform: uppercase;
    font-family: "CustomFont bold", sans-serif;
}

.banner-section-two .bt {
    position: relative;
    top: -60px;
}

/* Estilos do Modal de Inscrição */
.modal-content {
    background-color: #000000;
    border: 1px solid #000000;
    border-radius: 15px;
    color: #ffffff;
}

.modal-header {
    border-bottom: 1px solid #000000;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.5rem;
}

.btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

.modal-body {
    padding: 2rem;
}

/* Estilos dos Campos do Formulário */
.form-control-modal {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #444;
    border-radius: 0;
    padding: 0.75rem 0;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.form-control-modal::placeholder {
    color: #888;
}

.form-control-modal:focus {
    background-color: transparent;
    box-shadow: none;
    border-color: #A730FD;
    /* --primary-purple */
    color: white;
}

/* Estilos dos Radio Buttons e Checkboxes */
.form-check-label {
    font-size: 0.9rem;
}

.form-check-input {
    background-color: transparent;
    border: 1px solid #888;
}

.form-check-input:checked {
    background-color: #A730FD;
    /* --primary-purple */
    border-color: #A730FD;
    /* --primary-purple */
}

.form-check-input:focus {
    box-shadow: none;
    border-color: #A730FD;
    /* --primary-purple */
}

/* Estilo do Botão de Envio */
.btn-modal-submit {
    background-color: #A730FD;
    /* --primary-purple */
    border: none;
    color: white;
    font-weight: 700;
    padding: 1.2rem;
    width: 100%;
    border-radius: 10px;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.btn-modal-submit:hover {
    background-color: #A730FD;
    /* --light-purple */
}

/* Botão Flutuante para Mobile */
.floating-cta-btn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 1050;
    /* Acima de outros elementos */
    background-color: #A730FD;
    /* Cor principal roxa */
    color: white;
    border: none;
    border-radius: 8px;
    /* Arredondado */
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.floating-cta-btn:hover {
    background-color: #A730FD;
    color: white;
}
#local p {
    font-size: 16px;
}
#palestrantes .row.spaced-lg-50 .col-lg-6.text-center .social img {
    width: 40px;
    margin-top: 10px;
}
/* Responsividade */
@media (max-width: 1199px) {
    .navbar-brand img {
        width: 220px;
    }

    .event-date {
        font-size: 18px;
    }

    .title-hero h1,
    footer h2,
    .box.svg-like-card .title h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .event-info {
        display: none;
    }

    .speaker-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .event-date {
        font-size: 32px;
    }

    .navbar-toggler {
        border: solid 1px #ffffff;

    }

    .navbar-toggler span {

        filter: invert(1);
    }

    .actions.content {
        display: grid;
        gap: 10px;
        justify-content: center;
    }

    .count.svg-like-card {
        width: 320px;
        display: grid;
        align-items: center;
        padding: 30px;
        gap: 20px;
        margin: 0 auto;
    }

    .banner {
        height: 100%;
        padding-bottom: 70px;
        padding-top: 30px;
    }

    .content-section {
        padding: 3rem 0 0;
    }

    .new-speakers-notice {
        margin: 0;
    }

    .box.svg-like-card {
        width: 100%;
    }

    .banner-section-two .bt img {
        width: 100%;
    }

    .footer-bottom {
        margin-top: 0;
    }

    .footer-bottom {
        gap: 10px;
    }
}

@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.5rem;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form .form-control {
        margin-bottom: 1rem;
        text-align: center;
    }

    .content-section .row>div {
        margin-bottom: 2rem;
    }

    footer h2 {
        font-size: 1.8rem;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .navbar-brand {
        text-align: center;
        margin: 0 auto;
    }

    .navbar-brand img {
        width: 320px;
        margin-bottom: 20px;
    }

    header .d-lg-flex.align-items-center.gap-4.mx-auto {
        margin: 0 40px 0 0 !important;
    }

    .title-hero h1 {
        padding-top: 30px;
    }

    .bt-form img {
        width: 100%;
    }

    .actions.content {
        padding: 0;
    }

    .banner video {
        height: 510px;
    }

    .content-section {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    p.speaker-bio.mt-4.mt-md-0 {
        font-size: 14px;
    }

    .box.svg-like-card img {
        width: 100%;
    }

    .footer-links {
        display: grid;
    }

    .footer-bottom {
        padding-top: 0;
    }

    .title-hero h1,
    footer h2,
    .box.svg-like-card .title h2 {
        font-size: 40px;
        line-height: 40px;
    }

    #palestrantes .text-start {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .agenda-table th,
    .agenda-table td {
        padding: 1rem 5px!important;
    }

    section#agenda {
        padding-top: 30px;

    }

    section#agenda h2.section-title {
        display: none;
    }

    .content-section .row>div {
        margin: 0;
    }

    p.speaker-bio.mt-4.mt-md-0 {
        font-size: 14px;
        /* margin: 0; */
        margin-top: 0 !important;
        text-align: center;
    }

    h2.section-title {
        text-align: center;
    }

    section#local img {
        margin-top: 30px;
    }

    section#sobre h2.section-title {
        margin-bottom: 30px;
    }
    #palestrantes .text-start {
        text-align: center!important;
    }
}