/* 
 * vela_style-exemplo12.css
 * ESTILOS COMPLETOS PARA VELA VIRTUAL DE FÁTIMA
 * Versão: 12.0 - Completo e Funcional
 */

/* ================ RESET E BASE ================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================ CONTAINER PRINCIPAL ================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ================ HEADER ================ */
.header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 195, 0, 0.2);
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #FFC300, #FF8C00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(255, 195, 0, 0.3);
}

.header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1em;
}

/* ================ BARRA DE PROGRESSO ================ */
.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 30px auto;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255 255 0.1);
    transform: translateY(-50%);
    z-index: 1
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 195, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: linear-gradient(135deg, #FFC300, #FF8C00);
    color: #1a1a2e;
    border-color: #FFC300;
    box-shadow: 0 0 15px rgba(255, 195, 0, 0.5);
    transform: scale(1.1);
}

/* ================ CONTEÚDO DAS ETAPAS ================ */
.step-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    animation: fadeIn 0.5s ease;
}

.step-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================ ETAPA 1 - INTRODUÇÃO ================ */
.intro-content {
    text-align: center;
    padding: 40px 20px;
}

.intro-content h2 {
    color: #FFC300;
    margin-bottom: 20px;
    font-size: 2em;
}

.intro-content p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

/* ================ ETAPA 2 - OFERTA ================ */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.offer-option {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 195, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-option:hover {
    background: rgba(255, 195, 0, 0.15);
    border-color: #FFC300;
    transform: translateY(-5px);
}

.offer-option.selected {
    background: rgba(255, 195, 0, 0.2);
    border-color: #FFC300;
    box-shadow: 0 5px 15px rgba(255, 195, 0, 0.3);
}

.offer-value {
    font-size: 1.5em;
    font-weight: bold;
    color: #FFC300;
    margin-bottom: 5px;
}

.offer-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
}

/* ================ ETAPA 3 - INTENÇÃO ================ */
.intention-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FFC300;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 195, 0, 0.4);
    border-radius: 10px;
    color: white;
    font-size: 1em;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFC300;
    box-shadow: 0 0 0 3px rgba(255, 195, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ================ ETAPA 4 - CONFIRMAÇÃO ================ */
.confirmation-box {
    background: rgba(255, 195, 0, 0.1);
    border: 2px solid rgba(255, 195, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 25px 0;
    text-align: center;
}

.confirmation-box h3 {
    color: #FFC300;
    margin-bottom: 15px;
}

.confirmation-details {
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.detail-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #FFC300;
    font-weight: 500;
    margin-right: 10px;
}

.detail-value {
    color: rgba(255, 255, 255, 0.9);
}

/* ================ ETAPA 5 - COMUNIDADE DE VELAS ================ */
.community-section {
    text-align: center;
}

.community-title {
    color: #FFC300;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.community-candle {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 195, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.community-candle:hover {
    border-color: #FFC300;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.community-candle.selected {
    background: rgba(255, 195, 0, 0.15);
    border-color: #FFC300;
    box-shadow: 0 0 20px rgba(255, 195, 0, 0.4);
    animation: pulse 1.5s infinite;
}

.community-candle.lit {
    background: rgba(255, 195, 0, 0.1);
    border-color: rgba(255, 195, 0, 0.5);
}

.candle-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #FFC300;
}

.community-candle.lit .candle-icon {
    color: #FF4500;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.7);
    animation: flame 1s infinite alternate;
}

.pilgrim-info {
    margin-top: 10px;
    font-size: 0.9em;
}

.pilgrim-name {
    color: #FFC300;
    font-weight: 600;
    margin-bottom: 5px;
}

.pilgrim-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85em;
    margin-bottom: 5px;
}

.candle-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8em;
    font-style: italic;
}

.candle-details {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 195, 0, 0.2);
}

.available-candle {
    display: block;
    color: #FFC300;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.candle-instruction {
    display: inline-block;
    padding: 12px 20px;
    background: rgba(255, 195, 0, 0.1);
    border: 2px solid rgba(255, 195, 0, 0.4);
    border-radius: 10px;
    color: #FFC300;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-size: 1em;
}

.candle-instruction:hover {
    background: rgba(255, 195, 0, 0.2);
    border-color: #FFC300;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,195,0,0.2);
}

.candle-instruction:active {
    transform: translateY(-1px);
}

.selected-candle-preview {
    background: rgba(255, 195, 0, 0.1);
    border: 2px solid rgba(255, 195, 0, 0.4);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    text-align: center;
    display: none;
}

.preview-title {
    color: #FFC300;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.preview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#preview-name {
    font-size: 1.4em;
    font-weight: 600;
    color: #FFC300;
}

#preview-location {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
}

.preview-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ================ ETAPA 6 - VELA FINAL ================ */
.final-candle-section {
    text-align: center;
    padding: 30px;
}

.candle-container {
    position: relative;
    width: 200px;
    height: 300px;
    margin: 30px auto;
}

.candle-final {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 200px;
    background: linear-gradient(to right, #f8f8f8, #f0f0f0, #f8f8f8);
    border-radius: 40px 40px 0 0;
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.8),
        0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.candle-final.lit {
    background: linear-gradient(to right, #fff8e1, #ffecb3, #fff8e1);
    box-shadow: 
        inset 0 0 30px rgba(255, 248, 225, 0.9),
        0 0 30px rgba(255, 195, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.3);
}

.wick-final {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 20px;
    background: #5d4037;
    border-radius: 3px 3px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.wick-final:hover {
    transform: translateX(-50%) scale(1.1);
}

.candle-final.lit .wick-final::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    background: center 100%);
    border-radius: 50% 50% 20% 20%;
    filter: blur(5px);
    animation: flame 1s infinite alternate;
    z-index: 1
}

.candle-final.lit .wick-final::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 35px;
    background: center 100%);
    border-radius: 50%;
    filter: blur(3px);
    animation: flameSmall 0.8s infinite alternate-reverse;
    z-index: 2
}

@keyframes flame {
    0% { 
        transform: translateX(-50%) scaleY(1) scaleX(1); 
        opacity: 0.9;
    }
    100% { 
        transform: translateX(-50%) scaleY(1.1) scaleX(0.9); 
        opacity: 1;
    }
}

@keyframes flameSmall {
    0% { 
        transform: translateX(-50%) scale(1); 
        opacity: 0.8;
    }
    100% { 
        transform: translateX(-50%) scale(1.2); 
        opacity: 1;
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px rgba(255, 195, 0, 0.4); }
    50% { box-shadow: 0 0 30px rgba(255, 195, 0, 0.6); }
    100% { box-shadow: 0 0 20px rgba(255, 195, 0, 0.4); }
}

.candle-status {
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 195, 0, 0.3);
}

.candle-counter {
    margin-top: 20px;
    font-size: 1.2em;
    color: #FFC300;
}

.counter-number {
    font-size: 2em;
    font-weight: bold;
    color: #FFC300;
    text-shadow: 0 0 10px rgba(255, 195, 0, 0.5);
}

/* ================ ETAPA 7 - MINHAS VELAS ================ */
.my-candles-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.search-candle {
    background: rgba(255, 195, 0, 0.1);
    border: 2px solid rgba(255, 195, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
}

.search-input {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 195, 0, 0.4);
    border-radius: 10px;
    color: white;
    font-size: 1em;
    margin-bottom: 15px;
}

.candles-list {
    margin: 30px 0;
    min-height: 200px;
}

.candle-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 195, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.candle-card.active {
    border-color: #FFC300;
    background: rgba(255, 195, 0, 0.1);
}

.candle-card.expired {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    opacity: 0.7;
}

.candle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 195, 0, 0.2);
}

.candle-name {
    color: #FFC300;
    font-size: 1.3em;
    font-weight: 600;
}

.candle-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.candle-status.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.candle-status.expired {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.candle-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.candle-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.candle-info i {
    color: #FFC300;
    width: 20px;
}

.candle-time {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.time-remaining {
    font-size: 1.1em;
    color: #FFC300;
    font-weight: 600;
}

.time-remaining.expired {
    color: #EF4444;
}

.candle-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.empty-state i {
    margin-bottom: 15px;
}

.empty-state p {
    font-size: 1.1em;
    margin-bottom: 8px;
}

/* ================ BOTÕES ================ */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FFC300, #FF8C00);
    color: #1a1a2e;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    min-width: 200px;
    margin: 10px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 195, 0, 0.3);
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.btn:active {
    transform: translateY(-1px);
}

.btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-small {
    padding: 10px 20px;
    font-size: 1em;
    min-width: 150px;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-icon i {
    font-size: 1.2em;
}

/* ================ CHECKBOX E RADIO ================ */
.checkbox-group {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: #FFC300;
}

.checkbox-group label {
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #FFC300;
}

.radio-option label {
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

/* ================ FOOTER ================ */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    margin-bottom: 10px;
}

/* ================ RESPONSIVIDADE ================ */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 2em;
    }
    
    .progress-bar {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .step-dot {
        width: 35px;
        height: 35px;
        font-size: 0.9em;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .community-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .candle-container {
        width: 150px;
        height: 250px;
    }
    
    .candle-final {
        width: 60px;
        height: 150px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1em;
        min-width: 180px;
    }
    
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8em;
    }
    
    .step-dot {
        width: 30px;
        height: 30px;
        font-size: 0.8em;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .preview-actions {
        flex-direction: column;
    }
}

/* ================ ANIMAÇÕES ESPECIAIS ================ */
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

/* ================ UTILITÁRIOS ================ */
.text-center {
    text-align: center;
}

.text-gold {
    color: #FFC300 !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.8) !important;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ================ NOTIFICAÇÕES (TOAST) ================ */
.fatima-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 195, 0, 0.95);
    color: #1a1a2e;
    padding: 15px 20px;
    border-radius: 10px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: slideInRight 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.fatima-toast i {
    font-size: 1.2em;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* ================ LOADING SPINNER ================ */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #FFC300;
    animation: spin 1s ease-in-out infinite;
}

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

/* ================ FORMULÁRIO DE PERSONALIZAÇÃO ================ */
.personalization-form-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.personalization-form-container.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.personalization-form-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    border: 2px solid rgba(255, 195, 0, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    animation: fadeInUp 0.3s ease;
}

.personalization-form-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,195,0,0.3);
}

.personalization-form-header h3 {
    color: #FFC300;
    margin-bottom: 8px;
    font-size: 1.5em;
    font-weight: 600;
}

.personalization-form-header p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95em;
}

.personalization-form-group {
    margin-bottom: 20px;
}

.personalization-form-group label {
    display: block;
    color: #FFC300;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95em;
}

.personalization-form-group label i {
    margin-right: 8px;
    width: 20px;
}

.personalization-form-group input,
.personalization-form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,195,0,0.4);
    border-radius: 8px;
    color: white;
    font-size: 1em;
    transition: all 0.3s ease;
    font-family: inherit;
}

.personalization-form-group input:focus,
.personalization-form-group textarea:focus {
    outline: none;
    border-color: #FFC300;
    box-shadow: 0 0 0 3px rgba(255,195,0,0.2);
    background: rgba(255,255,255,0.1);
}

.personalization-form-group .form-help {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85em;
    font-style: italic;
}

.personalization-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.personalization-form-actions button {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.personalization-form-actions .btn-primary {
    background: linear-gradient(135deg, #FFC300, #FF8C00);
    color: #1a1a2e;
}

.personalization-form-actions .btn-primary:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,195,0,0.4);
}

.personalization-form-actions .btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.personalization-form-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

/* ================ SCROLL PERSONALIZADO ================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 195, 0, 0.5);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 195, 0, 0.7);
}

/* ================ ESTILOS PARA ICONES ================ */
.fas {
    font-size: 1.1em;
}

.icon-large {
    font-size: 2em;
}

.icon-gold {
    color: #FFC300;
}

.icon-white {
    color: rgba(255, 255, 255, 0.9);
}

/* CORREÇÃO PARA FASE 5 - LAYOUT QUEBRADO */
.community-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
}

/* Garantir que não tenha múltiplas colunas lado a lado */
#step-content-5 .step-content {
    display: block !important;
    width: 100% !important;
}

/* Remover qualquer float ou display inline */
.community-candle {
    float: none !important;
    display: block !important;
    width: 100% !important;
    margin: 10px auto !important;
}

/* Container único para todo o conteúdo */
.candle-details {
    clear: both !important;
    width: 100% !important;
    max-width: 600px !important;
    margin: 30px auto !important;
    float: none !important;
}

/* Garantir que formulário fique abaixo */
.candle-details .form-group {
    width: 100% !important;
    max-width: 500px !important;
    margin: 15px auto !important;
}

/* Remover qualquer coluna extra */
[class*="col-"], 
[class*="column"],
.table-responsive,
.row {
    width: 100% !important;
    float: none !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ================ GRADIENTES ESPECIAIS ================ */
.gradient-gold {
    background: linear-gradient(135deg, #FFC300, #FF8C00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-blue {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ================ SOMBRAS ================ */
.shadow-gold {
    box-shadow: 0 5px 20px rgba(255, 195, 0, 0.3);
}

.shadow-blue {
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.3);
}

.shadow-white {
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

/* ================ BORDAS ANIMADAS ================ */
.border-animated {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #1a1a2e, #16213e) padding-box,
                linear-gradient(135deg, #FFC300, #FF8C00) border-box;
    border-radius: 15px;
}

/* ================ FIM DO ARQUIVO CSS ================ */