.voice-actor-card {
    transition: transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.voice-actor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rating {
    font-size: 0.9rem;
    margin-top: 2px;
}

.audio-player {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
}

.audio-player audio {
    width: 100%;
}

.carousel-item {
    height: 400px;
    background-position: center;
    background-size: cover;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 20px;
}

.selected-actor-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#loader {
    padding: 20px;
}

.badge {
    padding: 8px 12px;
}

/* Responsividade */
@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }
    
    .voice-actor-card {
        margin-bottom: 15px;
    }
    
    .card-header {
        padding: 10px;
    }
    
    .selected-actor-info {
        padding: 10px;
    }
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.voice-actor-card {
    animation: fadeIn 0.5s ease;
}

/* Estilos do Form */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
}

/* Novo estilos para o Header e Logo */
.logo-container {
    display: flex;
    align-items: center;
    height: 81px;
}

.logo-container img {
    max-width: 100%;
    height: auto;
}

/* Estilos para o Menu */
.navbar-nav .nav-link {
    color: #333;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 3px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.navbar-nav .nav-link .menu-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
    transform: translateY(-2px);
}

/* Efeito hover mais agradável */
.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: #0d6efd;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-item:hover::after {
    width: 80%;
}

/* Estilos para Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Botão Flutuante do WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color: white;
}

/* Garante que o botão do WhatsApp apareça em dispositivos móveis */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 24px;
    }
}

/* Modais */
.modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    border-radius: 10px 10px 0 0;
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Estilos para cards no modal "Como Funciona" */
.how-it-works-step {
    padding: 15px;
    border-radius: 10px;
    background-color: #f8f9fa;
    height: 100%;
    transition: transform 0.3s ease;
}

.how-it-works-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Filtros */
.btn-outline-primary.active,
.btn-primary {
    background-color: #0d6efd;
    color: white;
}

.btn-outline-success.active,
.btn-success {
    background-color: #198754;
    color: white;
}

/* Lazy loading para otimização */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Contador total */
#loadedCount {
    font-weight: bold;
    color: #0d6efd;
}

/* Estilos para formulário de passo a passo */
.step-wizard {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.step-wizard-list {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333;
    list-style-type: none;
    border-radius: 10px;
    display: flex;
    padding: 15px 0;
    position: relative;
    z-index: 10;
    width: 100%;
}

.step-wizard-item {
    padding: 0 10px;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.step-wizard-item + .step-wizard-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 25px;
    background: #0d6efd;
    width: 100%;
    height: 2px;
    transform: translateX(-50%);
    z-index: -10;
}

.progress-count {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    color: #fff;
    background-color: #c7c7c7;
}

.active .progress-count,
.completed .progress-count {
    background-color: #0d6efd;
}

.step-wizard-item .progress-label {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
}

.step-wizard-item.active .progress-label {
    color: #0d6efd;
}

.step-wizard-item.completed .progress-count::after {
    content: '✓';
    display: block;
    position: absolute;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.text-counter {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #6c757d;
}

.price-estimate {
    margin-top: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #0d6efd;
}

.step-button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn-prev {
    background-color: #f8f9fa;
    color: #0d6efd;
    border: 1px solid #0d6efd;
}

.btn-prev:hover {
    background-color: #e9ecef;
}

/* Tooltip para estilos */
.style-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    color: #6c757d;
}

.style-tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

.style-tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.style-tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.service-type-card {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-type-card.selected {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
}

.service-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#customStyleField {
    display: none;
    margin-top: 10px;
}

.highlight-info {
    padding: 5px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-size: 1.1em;
}