/* css/styles.css - Ajustado para corresponder ao original */

/* Configurações Globais */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* Utilitários */
.snap-x-mandatory { scroll-snap-type: x mandatory; }
.snap-center { scroll-snap-align: center; }
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Nav */
.nav-scrolled {
    background-color: rgba(61, 35, 17, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Cards & Hover */
.card-float-hover { transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.card-float-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(181, 172, 59, 0.2);
}

/* Wizard Options - ESTILO ORIGINAL */
.wizard-option-card {
    transition: all 0.3s;
    border: 2px solid transparent; /* Transparente inicialmente para evitar 'pulo' visual */
    cursor: pointer;
    background-color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); /* Sombra leve para borda invisível */
}
.wizard-option-card:hover {
    border-color: #b5ac3b;
    transform: translateY(-2px);
    background-color: #fffbeb;
}
.wizard-option-card.selected {
    border-color: #b5ac3b;
    background-color: #FDFBF7;
    box-shadow: 0 4px 14px rgba(181, 172, 59, 0.2);
    position: relative;
}
.check-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #b5ac3b;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s;
}
.wizard-option-card.selected .check-indicator {
    opacity: 1;
    transform: scale(1);
}

.icon-circle {
    width: 3.5rem; height: 3.5rem; background-color: #f3f4f6;
    border-radius: 9999px; display: flex; align-items: center; justify-content: center;
    color: #b5ac3b; font-size: 1.5rem; margin-bottom: 0.5rem; margin-left: auto; margin-right: auto;
    transition: all 0.3s;
}
.wizard-option-card:hover .icon-circle { background-color: #b5ac3b; color: white; }

/* Marquee Slider */
@keyframes scrollLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-container { 
    overflow: hidden; white-space: nowrap; position: relative; width: 100%; 
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-content { display: inline-flex; width: max-content; animation: scrollLoop 40s linear infinite; }
.marquee-content:hover { animation-play-state: paused; }
.marquee-item {
    width: 8rem; height: 8rem; flex: none; border-radius: 9999px;
    overflow: hidden; border: 2px solid #b5ac3b; position: relative; margin-right: 1rem;
}
.marquee-item img { width: 100%; height: 100%; object-fit: cover; }
.marquee-item .overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.4);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.75rem; font-weight: bold;
}

/* Modais */
.modal-overlay {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(0,0,0,0.9); backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.hidden { display: none; }
.modal-content { background: white; width: 100%; border-radius: 1rem; overflow: hidden; position: relative; }
.gallery-modal-content { height: 80vh; }
@media (max-width: 768px) { .gallery-modal-content { height: 90vh; } }

/* Botões */
.custom-nav-btn {
    background: rgba(255,255,255,0.9); color: #7e4923;
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: all 0.3s; z-index: 20;
}

/* Chat */
.animate-bounce-slow { animation: bounce 3s infinite; }
#chatWidget.active { display: block; opacity: 1; transform: scale(1); }

/* Steps */
.wizard-step { display: none; animation: fadeIn 0.5s ease-out; }
.wizard-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* General */
.card-badge {
    position: absolute; top: 1rem; right: 1rem;
    background-color: rgba(74, 222, 128, 0.1);
    color: #4ade80; font-size: 0.625rem; font-weight: 700;
    padding: 0.25rem 0.75rem; border-radius: 9999px;
    text-transform: uppercase; z-index: 20;
}
.structure-card {
    background-color: white; padding: 1.5rem; border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); border: 1px solid rgba(181, 172, 59, 0.1);
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; transition: all 0.3s;
}
.structure-card:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.structure-icon {
    width: 3.5rem; height: 3.5rem; background-color: rgba(181, 172, 59, 0.1);
    border-radius: 9999px; display: flex; align-items: center; justify-content: center;
    color: #b5ac3b; font-size: 1.5rem; transition: all 0.3s;
}
.group:hover .structure-icon { background-color: #b5ac3b; color: white; }
.card-icon {
    width: 3.5rem; height: 3.5rem; background-color: #FDFBF7;
    border-radius: 9999px; display: flex; align-items: center; justify-content: center;
    color: #7e4923; font-size: 1.5rem; margin-bottom: 1rem;
    transition: all 0.3s;
}
.group:hover .card-icon { background-color: #b5ac3b; color: white; }
.mobile-full-img-card .card-mini-slider { width: 100%; height: 200px; margin-top: 0; border-radius: 0 0 1.5rem 1.5rem; }
.details-list li {
    position: relative; padding-left: 2rem; margin-bottom: 0.5rem;
    font-size: 0.95rem; color: #4b5563; display: flex; align-items: flex-start;
}
.details-list li i { color: #b5ac3b; margin-right: 10px; margin-top: 4px; }
.buffet-option {
    /* Styles inline HTML usados, mas adicionado aqui para garantir consistência */
    border: 1px solid #e5e7eb;
}
.buffet-option:hover { border-color: #b5ac3b; background-color: #FDFBF7; }
.buffet-option.selected { border-color: #b5ac3b; background-color: #FDFBF7; }

.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.bg-pattern { background-image: radial-gradient(#333 1px, transparent 1px); background-size: 20px 20px; }
.btn-primary {
    background-color: #b5ac3b; color: white; font-weight: bold;
    padding: 0.75rem 2.5rem; border-radius: 9999px;
    transition: background-color 0.3s; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover { background-color: #7e4923; }
.btn-whatsapp {
    background-color: #b5ac3b; color: white;
    font-weight: bold; padding: 1rem; border-radius: 0.5rem;
    font-size: 1.125rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    transition: transform 0.3s; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-whatsapp:hover { transform: scale(1.01); background-color: #7e4923; }
.card-slider-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0; transition: opacity 1s ease-in-out;
}
.card-slider-img.active { opacity: 1; }
.stack-container {
    perspective: 1000px; width: 100%; height: 220px;
    position: relative; display: flex; justify-content: center; align-items: center; margin-top: 20px;
}
.stack-card {
    position: absolute; width: 85%; height: 180px; background: white;
    border-radius: 1rem; padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(181, 172, 59, 0.2);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    top: 0;
}
.stack-card.front { z-index: 3; transform: translateY(0) scale(1); opacity: 1; }
.stack-card.middle { z-index: 2; transform: translateY(15px) scale(0.95); opacity: 0.8; }
.stack-card.back { z-index: 1; transform: translateY(30px) scale(0.9); opacity: 0.5; }
.stack-card.hidden-stack { z-index: 0; transform: translateY(45px) scale(0.85); opacity: 0; pointer-events: none; }