/* Variáveis Globais */
:root {
    --primary-color: #e74c3c;
    --primary-dark: #c0392b;
    --secondary-color: #2ecc71;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #eee;
    --white: #fff;
    --background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --color: #000000;
}

/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

/* Formulário */
.form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Estilos para as etapas do formulário */
.form-step {
    display: none;
}

.form-step:first-child {
    display: block;
}

/* Barra de Progresso */
.progress-container {
    margin-bottom: 30px;
}

.progress {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.progress-text {
    text-align: center;
    margin-top: 10px;
    color: #ffffff;
}

/* Cards de Opções */
.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.option-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #333;
    position: relative;
    padding-top: 40px;
}

.option-card h3, 
.option-card h4, 
.option-card h5,
.option-card p,
.option-card .price {
    color: #333;
}

.option-card.selected {
    border-color: #ff6b00;
    background: rgba(231, 76, 60, 0.05);
}

.option-card.selected h3,
.option-card.selected h4,
.option-card.selected h5,
.option-card.selected p,
.option-card.selected .price {
    color: #000000;
}

.option-card i {
    font-size: 2em;
    color: #333;
}

.price {
    color: #e74c3c;
    font-weight: bold;
}

.option-card.selected .price {
    color: #000000;
}

.price s {
    color: #000000;
    margin-right: 8px;
    text-decoration: line-through;
}

.option-card.selected .price s {
    color: rgba(0, 0, 0, 0.7);
}

.price-note {
    font-size: 0.9em !important;
    opacity: 0.9;
    margin-top: 5px !important;
    font-style: italic;
}

.price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1.1em;
}


/* option-button */
.option-button {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.option-button {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #333;
    position: relative;
    padding-top: 40px;
}

.option-button h3, 
.option-button h4, 
.option-button h5,
.option-button p,
.option-button .price {
    color: #333;
}

.option-button.selected {
    border-color: #c0392b;
    background: rgba(231, 76, 60, 0.05);
}

.option-buttond.selected h3,
.option-button.selected h4,
.option-button.selected h5,
.option-button.selected p,
.option-button.selected .price {
    color: #000000;
}

.option-button i {
    font-size: 2em;
    color: #333;
}

.price {
    color: #e74c3c;
    font-weight: bold;
}

.option-button.selected .price {
    color: #000000;
}

.price s {
    color: #000000;
    margin-right: 8px;
    text-decoration: line-through;
}

.option-button.selected .price s {
    color: rgba(0, 0, 0, 0.7);
}

.price-note {
    font-size: 0.9em !important;
    opacity: 0.9;
    margin-top: 5px !important;
    font-style: italic;
}

.price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1.1em;
}

/* btnbutton */
.btnbutton {
    background-color: #e74c3c;  
    color: #fff;                
    border: none;               
    padding: 12px 24px;          
    font-size: 16px;             
    font-weight: bold;          
    border-radius: 5px;          
    cursor: pointer;             
    transition: all 0.3s ease;  
    text-transform: uppercase;   
    outline: none;               
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);  
}

.btnbutton:hover {
    background-color: #cc5500;  /* Cor mais escura ao passar o mouse */
    transform: scale(1.05);     /* Efeito de leve crescimento */
}

.btnbutton:active {
    background-color: #993d00;  /* Cor ainda mais escura ao clicar */
    transform: scale(1);        /* Remove o efeito de escala ao clicar */
}





/* Contador de Convidados */
.guest-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.guest-counter button {
    background: #000000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
}

.guest-counter input {
    width: 80px;
    text-align: center;
    font-size: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 5px;
}

/* Seções de Serviço */
.service-section {
    margin: 30px 0;
}

.service-section h4 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.sub-options {
    margin-top: 15px;
    padding-left: 15px;
    border-left: 2px solid var(--border-color);
}

.sub-option {
    margin: 10px 0;
}

.sub-option h6 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.additional {
    margin-top: 10px;
    font-style: italic;
    color: var(--primary-color);
}

/* Duração dos Serviços */
.service-duration {
    margin-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
}

.duration-options {
    margin-top: 15px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.duration-options label {
    display: block;
    margin: 10px 0;
    color: white;
    cursor: pointer;
}

.duration-options input[type="radio"] {
    margin-right: 10px;
}

.duration-option {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.duration-option input[type="radio"] {
    display: none;
}

.duration-option label {
    cursor: pointer;
    display: block;
    width: 100%;
}

.duration-option input[type="radio"]:checked + label {
    color: var(--primary-color);
}

.duration-option:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background: rgba(231, 76, 60, 0.05);
}

.additional-option {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.additional-options label {
    display: block;
    margin: 15px 0;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.additional-options label:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.additional-option input[type="checkbox"] {
    margin-right: 10px;
}

/* Extras */
.extras-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.extras-options .option-card {
    text-align: center;
}

.extras-options .option-card.special {
    grid-column: 1 / -1;
    background: #fff;
    color: #000000;
}

.extras-options .option-card.special h4,
.extras-options .option-card.special p {
    color: #000000;
}

/* Formulário de Dados */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Estilo para o formulário de dados dos noivos */
.form-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 1em;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
    background-color: #fff;
}

.input-group input:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
    outline: none;
}

.input-group input::placeholder {
    color: #999;
    font-size: 0.9em;
}

/* Animação suave ao focar */
.input-group input:focus {
    transform: translateY(-2px);
}

/* Estilo para campos obrigatórios */
.input-group input:required {
    background-image: linear-gradient(45deg, transparent 50%, #e74c3c 50%);
    background-position: right 15px top 50%;
    background-size: 5px 5px;
    background-repeat: no-repeat;
}

/* Estilo para campos válidos */
.input-group input:valid {
    border-color: #2ecc71;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-content {
        padding: 15px;
    }
    
    .input-group input {
        padding: 10px 12px;
    }
}

/* Navegação */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #000000;
    border-color: #000000;
    color: #fff;
}

.btn-secondary {
    background-color: #000000;
    border-color: #000000;
    color: #fff;
}

.btn-next {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
}

/* Resumo */
.summary-section {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.summary-section h4 {
    color: #e74c3c;
    margin-top: 25px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 8px;
    font-size: 1.2em;
}

.summary-section p {
    margin: 10px 0;
    line-height: 1.6;
    font-size: 1.1em;
}

.summary-section ul {
    list-style-type: none;
    padding-left: 0;
    margin: 10px 0;
}

.summary-section li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
    line-height: 1.6;
}

.summary-section li strong {
    display: block;
    margin-bottom: 5px;
}

.summary-section li p {
    margin: 5px 0;
    font-size: 0.95em;
    color: #666;
}

.summary-section strong {
    color: #2c3e50;
    font-weight: 600;
}

.total-section {
    margin-top: 30px;
    padding: 25px;
    background-color: #e74c3c;
    border-radius: 15px;
    color: white;
    text-align: center;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

.total-section h4 {
    color: white !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3) !important;
    padding-bottom: 15px !important;
    margin-bottom: 20px !important;
    font-size: 1.4em !important;
}

.total-section .total-price {
    font-size: 2.5em !important;
    font-weight: bold;
    margin: 0 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.total-price-display {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #e74c3c;
    color: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.2em;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.total-price-display .label {
    font-weight: normal;
}

.total-price-display .amount {
    font-weight: bold;
    font-size: 1.2em;
    color: white !important;
}

/* Estilos para o resumo e total */
.total-section {
    background-color: #e74c3c;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.total-section h3 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.summary-content {
    padding: 20px;
}

.summary-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.summary-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.summary-content h4 {
    color: #e74c3c;
    margin-bottom: 15px;
}

/* Responsividade */
@media (max-width: 768px) {
    .extras-options {
        grid-template-columns: 1fr;
    }

    .form-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }

    .guest-counter input {
        width: 60px;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Linha decorativa com créditos */
.form-container::after {
    content: 'Feito com ❤️ e ☕ por Fae Developer • www.faedeveloper.com.br';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7em;
    color: var(--primary-color);
    white-space: nowrap;
    text-decoration: none;
    opacity: 0.8;
    cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }
    
    .option-cards {
        grid-template-columns: 1fr;
    }
    
    .guest-counter {
        flex-direction: column;
    }
}

/* Estilos Mobile */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .form-card {
        padding: 20px;
    }

    .option-cards {
        grid-template-columns: 1fr;
    }

    .option-card {
        text-align: center;
        margin: 10px auto;
        max-width: 100%;
    }

    .guest-counter {
        justify-content: center;
        margin: 15px auto;
    }

    .form-group {
        text-align: center;
    }

    .form-control {
        text-align: center;
        margin: 10px auto;
    }

    .btn-next,
    .btn-secondary {
        display: block;
        width: 100%;
        margin: 10px auto;
        text-align: center;
    }

    .step-title {
        text-align: center !important;
        width: 100%;
    }
    

    .progress-container {
        max-width: 90%;
        margin: 0 auto 20px;
    }

    .summary-container {
        text-align: center;
    }

    .summary-item {
        text-align: center;
        margin: 15px auto;
    }

    .summary-total {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .ceremony-options,
    .service-options,
    .extras-options {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .duration-option {
        text-align: center;
        width: 100%;
    }

    label {
        text-align: center;
        display: block;
        margin-bottom: 5px;
    }

    select,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"] {
        width: 100%;
        text-align: center;
    }

    .service-option {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }

    .service-option input[type="checkbox"] {
        margin: 10px auto 5px;
    }

    .service-option label {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .service-option .price {
        margin-top: 5px;
    }

    .additional-option {
        margin-top: 15px;
        text-align: center;
    }

    .additional-option input[type="checkbox"] {
        margin: 10px auto 5px;
    }

    .additional-option label {
        text-align: center;
        width: 100%;
    }
}

/* Container principal */
.form-container {
    background: var(--background-light);
    color: var(--text-dark);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Ajuste para textos específicos fora do container */
body > h1,
body > h2,
body > h3,
body > p,
body > div:not(.form-container):not(.party-lights):not(.sparkles) {
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    color: #e74c3c;
}

.step-title {
    color: #e74c3c;
}

.form-step p, 
.form-step label,
.form-step .lead,
.option-card p,
.option-card h4,
.option-card h5,
.option-card h6 {
    color: #333;
}

.option-card.selected p,
.option-card.selected h4,
.option-card.selected h5,
.option-card.selected h6 {
    color: #000000;
}

.price {
    font-weight: bold;
    color: #e74c3c;
}

.option-card.selected .price {
    color: #fff;
}

.summary-container p,
.summary-container h4,
.summary-item {
    color: #333;
}

.progress-text {
    color: #ffffff;
}

.text-center .lead {
    color: #ffffff;
    font-weight: 400;
}

html, body {
    overflow: auto; 
    height: auto;   
}

/* Estilos específicos para o formulário de casamento */
.form-step {
    display: none;
    padding: 10px;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

.ceremony-options,
.brasa-options,
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.service-options {
    margin: 20px 0;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.service-option input[type="checkbox"] {
    margin-right: 10px;
}

.service-option label {
    display: inline-block;
    width: calc(100% - 30px);
    cursor: pointer;
}

.service-option h5 {
    margin: 0 0 10px 0;
    color: #333;
}

.service-option .price {
    color: #e74c3c;
    font-weight: bold;
    margin: 5px 0;
}

.service-option .price span {
    font-weight: normal;
    margin-left: 10px;
}

.service-option p {
    margin: 5px 0 0 0;
    color: #333;
}

.summary-container {
    background: var(--background-light);
    color: var(--text-dark);
}

.summary-item h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.summary-total {
    color: var(--text-dark);
    border-top: 2px solid var(--primary-color);
    padding-top: 1rem;
    margin-top: 1rem;
}

.summary-total .price {
    color: var(--white);
    font-size: 1.25rem;
}

/* Estilo para os grupos de opções */
optgroup {
    font-weight: bold;
    color: #e74c3c;
}

optgroup option {
    font-weight: normal;
    color: #333;
    padding-left: 15px;
}

select.form-control {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-size: 16px;
}

select.form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

button,
.btn-next, 
.btn-primary,
.btn-secondary,
.guest-counter button,
.service-option,
.duration-option,
.option-card {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Ajustes para a etapa 8 */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.service-options .option-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-options .option-card h5 {
    color: #333;
    margin-bottom: 10px;
}

.service-options .option-card p {
    color: #666;
    margin-bottom: 15px;
}

.service-options .option-card .service-duration {
    width: 100%;
    margin-top: auto;
}

.service-options .duration-option {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    text-align: center;
}

.service-options .duration-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.service-options .duration-option .price {
    color: #e74c3c;
    font-weight: bold;
    margin: 5px 0;
}

.service-options .additional-option {
    margin-top: 15px;
    text-align: center;
}

/* Ajustes mobile para a etapa 8 */
@media (max-width: 768px) {
    .service-options {
        grid-template-columns: 1fr;
    }

    .service-options .option-card {
        margin-bottom: 20px;
    }

    .service-options .duration-option {
        margin: 10px 0;
    }

    .service-options .duration-option label {
        padding: 10px;
    }

    .service-options .additional-option {
        padding: 10px 0;
    }
}

/* Estilos para o resumo final */
.final-summary {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.final-summary h4 {
    color: #e74c3c;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 5px;
}

.final-summary p {
    margin: 8px 0;
    line-height: 1.5;
}

.final-summary ul {
    list-style-type: none;
    padding-left: 0;
    margin: 10px 0;
}

.final-summary li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.final-summary strong {
    color: #2c3e50;
}

/* Botões do resumo final */
.form-navigation-final {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.form-navigation-final .btn {
    padding: 12px 25px;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.form-navigation-final .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-navigation-final .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.form-navigation-final .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.form-navigation-final .btn i {
    margin-right: 8px;
}

/* preço riscado */
p {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.preco-riscado {
    text-decoration: line-through;
    color: #d9534f; /* Vermelho */
    font-weight: bold;
}

.preco-promocional {
    color: #5cb85c; /* Verde */
    font-weight: bold;
    font-size: 18px;
}

.descricao-texto {
    color: #555;
    font-style: italic;
}

strong {
    color: #000;
}


/* descrição pacote */
.descricao-pacote {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.descricao-pacote h3, 
.descricao-pacote h4 {
    color: #e63946;
    margin-bottom: 10px;
}

.descricao-pacote p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.descricao-pacote ul {
    list-style: none;
    padding-left: 0;
}

.descricao-pacote ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

.descricao-pacote ul li strong {
    color: #1d3557;
}

.floating-total {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e74c3c;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-total:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.total-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

.total-content span:first-child {
    color: rgba(255, 255, 255, 0.9);
}

.total-content #live-total {
    color: white;
}

#step12 {
    color: var(--color);
}

#step12 h3, 
#step12 p,
#step12 .summary-item {
    color: var(--color);
}

.summary-total .price {
    color: var(--color);
    font-size: 1.25rem;
}


/* Estilos para as etapas do formulário */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

/* Estilos para os botões de navegação */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}









/* Estilos Mobile */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 10px;
        margin: 0 auto;
    }

    .form-card {
        padding: 15px;
        margin: 10px auto;
        width: 100%;
    }

    /* Ajuste de textos */
    h1, h2, h3, h4, h5, p {
        text-align: center;
    }

    /* Ajuste de campos de formulário */
    .form-group {
        margin-bottom: 20px;
        width: 100%;
    }

    .form-control {
        width: 100%;
        padding: 10px;
    }

    /* Ajuste dos cards de opções */
    .option-card {
        width: 100%;
        margin: 10px auto;
        padding: 15px;
    }

    /* Ajuste dos botões */
    .navigation-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 20px;
    }

    .btn {
        width: 100%;
        margin: 5px 0;
        padding: 12px;
    }

    /* Ajuste do contador de convidados */
    .guest-counter {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin: 10px auto;
    }

    /* Ajuste das seções de serviços */
    .service-options {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* Ajuste da barra de progresso */
    .progress-container {
        width: 90%;
        margin: 20px auto;
    }

    /* Ajuste dos selects */
    select.form-control {
        width: 100%;
        text-align: center;
    }
}
/* Centralização do Body */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        overflow-x: hidden;
    }
}

/* Estilos para cards selecionados */
.option-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.option-card.selected {
    border: 2px solid #ff6b00;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
    background: rgba(231, 76, 60, 0.05);
}

.option-card.selected h4,
.option-card.selected h5 {
    color: #e74c3c;
}

.option-card.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Estilo para o sumário de seleções */
.selection-summary {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    color: #333;
    text-align: center;
    font-size: 0.9rem;
}


.piscando {
    color: red;
    font-weight: bold;
    font-size: 18px;
    animation: piscar 1s infinite alternate;
}

@keyframes piscar {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}


.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    background-color: #000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 999 !important;
}

.floating-button:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}