:root {
    --main: #ff7a18;
}

body {
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #f8f9fb;
    text-align: center;
}

.minha-fonte {
    font-family: 'Inter', system-ui, sans-serif;
}

.back-to-top {
    background: #ff7a18;
}

.back-to-top:hover {
    color: #fff;
    background: #a74805;
    transition: background 0.2s ease-in-out;
}

h1 {
    font-size: 3 rem;
    /* título principal */
}

/* NAVBAR */
.navbar-glass {
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    padding: 22px 0;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--main);
}

/* HEADER */
.app-header {
    padding: 60px 0 40px;
}

.app-title {
    font-size: 2.5rem;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
}

.app-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 820px;
    margin: 16px auto 26px;
}

/* CHIPS */
.chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.chip {
    background: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

/* CREDITOS */
.credits-chip {
    background: #fff;
    padding: 10px 18px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.btn-buy {
    background: #e9ecef;
    border-radius: 14px;
    font-weight: 500;
}

.btn-buy:hover {
    background: var(--main);
    color: #fff
}

/* STEPPER */
.stepper-wrapper {
    position: relative;
    max-width: 760px;
    margin: 30px auto;
}

.stepper-line {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #e9ecef;
    transform: translateY(-50%);
    z-index: 0;
}

.stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.step {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e9ecef;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step.active,
.step.done {
    background: var(--main);
    color: #fff;
}

/* WIZARD */
.card-wizard {
    max-width: 760px;
    margin: 0 auto;
    padding: 36px;
    border-radius: 18px;
}

.option-card {
    border: 2px solid #e9ecef;
    border-radius: 14px;
    padding: 18px;
    cursor: pointer;
    transition: .2s;
}

.option-card.active {
    border-color: var(--main);
    background: #fff6ee;
}

.btn-main {
    background: var(--main);
    color: #fff;
    border-radius: 14px;
}

.btn-main:hover {
    background: #e96b0f;
    color: #fff
}

.hidden {
    display: none
}

/* PRODUÇÃO */
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #eee;
    border-top: 6px solid var(--main);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.timer {
    font-size: 32px;
    font-weight: 700;
}

/* FOOTER */
.app-footer {
    margin-top: 80px;
    padding: 40px 0 30px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, .05);
}

.footer-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--main);
}

.footer-text {
    font-size: 14px;
    color: #6c757d;
    max-width: 520px;
    margin: 12px auto 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: #6c757d;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--main);
}

.footer-copy {
    margin-top: 20px;
    font-size: 13px;
    color: #adb5bd;
}

/* ESTILO DA LOCUÇÃO */
.voice-option {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 18px;
    cursor: pointer;
    transition: .2s;
    background: #fff;
}

.voice-option.active {
    border-color: var(--main);
    background: #fff6ee;
}

.voice-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    flex-shrink: 0;
}

.voice-text {
    text-align: left;
}

.voice-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.voice-text span {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.3;
}

/* TRANSIÇÃO ENTRE PASSOS */
.step-content {
    display: none;
}

/*MUDANÇA DE TEMA*/
#hero .btn-get-started {
    border: 2px solid #ff7a18;
}

#hero .btn-get-started:hover {
    background: #ff7a18;
    color: #fff;
    text-decoration: none;
}

#hero .carousel-indicators .active {
    background-color: #ff7a18;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #ff7a18;
    text-decoration: none;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #ff7a18;
}

/*Player do locutor*/
.locutor-card {
    border: 1px solid #e3e6ed;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: .2s;
}

.locutor-card.active {
    border-color: #ff7a18;
    background: #fff7f0;
}

.locutor-card.hovered {
    border-color: #ff7a18;
    background: #fff7f0;
}

.locutor-card.selected {
    border-color: #ff7a18;
    background: #fff7f0;
}


.locutor-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.locutor-info {
    flex: 1;
}

.btn-play {
    margin-top: 6px;
    border-radius: 20px;
    padding: 4px 14px;
}

.playing-gif {
    width: 26px;
}

.option-card {
    position: relative;
}

/* ícone escondido por padrão */
.selected-check {
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ff7a18;
    /* cor do tema */
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: .2s;
}

/* quando selecionado */
.option-card.active .selected-check {
    opacity: 1;
    transform: scale(1);
}

.btn-orange {
    background-color: #ff7a18;
    color: #fff;
    border: none;
}

.btn-orange:hover {
    background-color: #e86c12;
    color: #fff;
}

/*ANTIGO meuStyle*/

h2,
h3,
h4,
h5 {
    font-weight: 700;
    margin-top: 20px;
    padding-bottom: 0;
    color: #4b605c;
}

h2 {
    font-size: 32px;
}

#jingles-comerciais {
    cursor: pointer;
}

#jingles-politicos {
    cursor: pointer;
}

.contact .php-email-form label.error {
    font-family: "Open Sans", sans-serif;
    color: red;
    font-size: 13px;
}

.form-Newsletter label.error {
    font-family: "Open Sans", sans-serif;
    color: red;
    font-size: 13px;
    float: left;
    margin-top: 5px;
}

#respostaNews {
    font-family: "Open Sans", sans-serif;
    color: red;
    font-size: 13px;
    float: left;
    margin-top: 5px;
}


.resp {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-top: 10px;
}

.page-item.active .page-link {
    z-index: 5;
    color: #fff;
    background-color: #26947f;
    border-color: #959595;
}

.page-link {
    color: #1bbca3;
}

.btn-disabled {
    opacity: .5;
    pointer-events: none;
}


.audio-mini {
    height: 26px;
    width: 160px;
}

/* slide locutores */

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.locutor-slider {
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
}

.locutor-slider::-webkit-scrollbar {
    display: none;
}

.slider-arrow {
    border: none;
    background: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
}

.slider-arrow.left {
    margin-right: 10px;
}

.slider-arrow.right {
    margin-left: 10px;
}

.locutor-slider {
    cursor: grab;
}

.locutor-slider.dragging {
    cursor: grabbing;
}

.locutor-card {
    min-width: 160px;
    max-width: 180px;
}

.locutor-info strong {
    display:block;
    line-height:1.2;
    word-break: break-word;
}


/* mobile abaixo de width 480 */
@media (max-width: 480px) {
    .app-title {
        font-size: 1.5rem;
    }
}

/* mobile abaixo de width 576 */
@media (max-width: 576px) {

    .locutor-card {
        min-width: 150px;
    }

}
