body {
    background: linear-gradient(135deg, #581c87 0%, #3730a3 50%, #be185d 100%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Background Effects - Seguindo exatamente o React */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1;
}

.bg-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    pointer-events: none;
    z-index: 2;
}

.bg-dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 3;
}

.bg-gradient-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
    z-index: 4;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Step Circles Container - Garantir sempre horizontal */
.d-flex.justify-content-between.align-items-center {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.d-flex.justify-content-between.align-items-center .step-circle {
    flex-shrink: 0;
    margin: 0;
}

.step-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step-circle.active {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border: 2px solid #ec4899;
    color: white;
}

.step-circle.inactive {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.5);
}

.progress-bar-custom {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.toggle-option {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-weight: 500;
}

.toggle-option:hover {
    background: rgba(255, 255, 255, 0.2);
}

.toggle-option.selected {
    background: #ec4899;
    border-color: #ec4899;
    color: white;
}

.form-control-custom {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
}

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

.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ec4899;
    box-shadow: 0 0 0 0.2rem rgba(236, 72, 153, 0.25);
    color: white;
}

/* Estilos específicos para select */
select.form-control-custom {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    padding-right: 2rem;
}

select.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ec4899;
    box-shadow: 0 0 0 0.2rem rgba(236, 72, 153, 0.25);
    color: white;
}

/* Estilos para as opções do select */
select.form-control-custom option {
    background: #581c87;
    color: white;
    padding: 0.5rem;
}

select.form-control-custom option:hover {
    background: #ec4899;
}

/* Estilo para o ícone de seta do select */
select.form-control-custom {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.btn-gradient {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #db2777, #7c3aed);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

.btn-outline-custom {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.upload-area {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ec4899;
}

.photo-preview {
    position: relative;
    display: inline-block;
    margin: 0.5rem;
}

.photo-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.remove-photo {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-preview:hover .remove-photo {
    opacity: 1;
}

.modal-preview {
    background: rgba(0, 0, 0, 0.8);
}

.modal-preview .modal-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-heart {
    position: fixed;
    color: #ec4899;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 5;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.icon-large {
    font-size: 3rem;
    color: #ec4899;
}

.text-purple-light {
    color: #e9d5ff !important;
}

.text-purple-lighter {
    color: #f3e8ff !important;
}

/* Footer */
.footer-create {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
    clear: both;
}

.footer-create a {
    color: #e9d5ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-create a:hover {
    color: #ec4899;
}

.footer-create .bi-heart {
    color: #ec4899;
    animation: pulse 2s infinite;
}

.footer-create .text-purple-light {
    color: #e9d5ff !important;
}

.footer-create .text-white {
    color: white !important;
}

.footer-create .text-pink-400 {
    color: #ec4899 !important;
}

.footer-create .btn-success {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-create .btn-success:hover {
    background: linear-gradient(135deg, #db2777, #7c3aed);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .glass-card {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .icon-large {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .toggle-option {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .form-control-custom {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    select.form-control-custom {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .btn-gradient, .btn-outline-custom {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .upload-area {
        padding: 1.5rem;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
        font-size: 0.9rem;
    }
    
    .progress-bar-custom {
        height: 6px;
    }
    
    .floating-heart {
        font-size: 1rem;
    }
    
    /* Forçar layout horizontal dos steps */
    .d-flex.justify-content-between {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    .d-flex.justify-content-between .btn {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .d-flex.justify-content-between.flex-wrap {
        flex-wrap: nowrap !important;
    }
    
    .d-flex.justify-content-between.flex-wrap .btn {
        flex-shrink: 0;
        margin: 0 0.2rem;
    }
    
    /* Forçar layout horizontal dos step circles */
    .d-flex.justify-content-between.align-items-center {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
    }
    
    .d-flex.justify-content-between.align-items-center .step-circle {
        flex-shrink: 0;
        margin: 0 0.2rem;
    }
    
    .footer-create {
        padding: 0.5rem 0;
    }
    
    .footer-create .col-md-6:first-child {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .footer-create .d-flex.justify-content-md-end {
        justify-content: center !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .glass-card {
        padding: 1rem;
        margin: 0.25rem;
        border-radius: 1rem;
    }
    
    .icon-large {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    .toggle-option {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .form-control-custom {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    select.form-control-custom {
        padding: 0.5rem;
        font-size: 0.8rem;
        padding-right: 2rem;
    }
    
    .btn-gradient, .btn-outline-custom {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .upload-area {
        padding: 1rem;
    }
    
    .step-circle {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        font-size: 0.8rem;
    }
    
    .progress-bar-custom {
        height: 4px;
    }
    
    .floating-heart {
        font-size: 0.8rem;
    }
    
    /* Forçar layout horizontal dos step circles */
    .d-flex.justify-content-between.align-items-center {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 0.1rem;
    }
    
    .d-flex.justify-content-between.align-items-center .step-circle {
        flex-shrink: 0;
        margin: 0;
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
    }
    
    #photo-previews .col-4 {
        width: 33.333%;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .footer-create {
        padding: 0.25rem 0;
    }
    
    .footer-create .d-flex.justify-content-md-end {
        justify-content: center !important;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-create .btn-success {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 375px) {
    .glass-card {
        padding: 0.75rem;
        margin: 0.1rem;
        border-radius: 0.75rem;
    }
    
    .icon-large {
        font-size: 1.75rem;
    }
    
    h1 {
        font-size: 1.25rem;
    }
    
    h2 {
        font-size: 1.1rem;
    }
    
    .toggle-option {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    .form-control-custom {
        padding: 0.4rem;
        font-size: 0.75rem;
    }
    
    select.form-control-custom {
        padding: 0.4rem;
        font-size: 0.75rem;
        padding-right: 1.5rem;
    }
    
    .btn-gradient, .btn-outline-custom {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .upload-area {
        padding: 0.75rem;
    }
    
    .step-circle {
        width: 25px;
        height: 25px;
        min-width: 25px;
        min-height: 25px;
        font-size: 0.7rem;
    }
    
    .progress-bar-custom {
        height: 3px;
    }
    
    .floating-heart {
        font-size: 0.7rem;
    }
    
    /* Forçar layout horizontal dos step circles */
    .d-flex.justify-content-between.align-items-center {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 0.05rem;
    }
    
    .d-flex.justify-content-between.align-items-center .step-circle {
        flex-shrink: 0;
        margin: 0;
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
    }
    
    .footer-create {
        padding: 0.1rem 0;
    }
    
    .footer-create .btn-success {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

.container-fluid {
    flex: 1;
}

.footer-create {
    margin-top: auto;
    background: transparent !important;
    backdrop-filter: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: relative;
    z-index: 10;
    width: 100%;
    clear: both;
}

/* Forçar visibilidade do footer */
.footer-create {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ajuste para o container principal */
.container-fluid.position-relative {
    min-height: calc(100vh - 200px); /* Altura mínima considerando o footer */
} 