/* V2.1 - Adicionada classe .pre-filled */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #E0E0E0;
    --secondary-color: #000000;
    --text-color: #FFFFFF;
    --text-color-light: #A0A0A0;
    --border-color: #444444;
    --font-family: 'Montserrat', sans-serif;
    --button-bg-color: #FFFFFF;
    --button-text-color: #000000;
    --button-height: 46px; 
    --button-gap: 35px;
    --input-vertical-padding: 16px; 
    --input-font-size: 18px; 
    --header-height: 60px;
    --footer-height: 60px;
    --star-color-lit: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-family);
    background-color: var(--secondary-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
}
body.modal-open { overflow: hidden; }

#splash-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #1A1A1A; display: flex; justify-content: center; align-items: center;
    z-index: 200; transition: opacity 1s ease-out;
}
#splash-screen.hidden { opacity: 0; pointer-events: none; }
@keyframes pulse-glow-dazzling {
    0%, 100% { transform: scale(1); filter: brightness(0.75) drop-shadow(0 0 2px rgba(245, 245, 245, 0.2)); opacity: 0.8; }
    50% { transform: scale(1.08); filter: brightness(1.2) drop-shadow(0 0 35px rgba(245, 245, 245, 0.95)); opacity: 1; }
}
#splash-screen .logo-container { animation: pulse-glow-dazzling 2.8s infinite ease-in-out; }
#splash-screen .animated-logo { width: 150px; height: 150px; }

.main-header, .main-footer {
    width: 100%;
    background: var(--secondary-color);
    position: fixed;
    left: 0;
    z-index: 100;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}
.main-header {
    top: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
}
.main-footer {
    bottom: 0;
    height: var(--footer-height);
    display: flex;
    align-items: center; 
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.language-switcher {
    pointer-events: auto;
    font-size: 14px;
}
.language-switcher a { text-decoration: none; color: var(--text-color-light); font-weight: 500; padding: 5px; cursor: pointer; transition: color 0.2s ease; }
.language-switcher a.active { color: var(--primary-color); font-weight: 700; }
.language-switcher span { color: var(--border-color); margin: 0 5px; }

.main-container {
    width: 100%; max-width: 650px; padding: 20px;
    text-align: center; margin: auto; opacity: 0; transition: opacity 0.5s ease-in;
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-top: var(--header-height);
    padding-bottom: var(--footer-height);
}
.main-container.visible { opacity: 1; }

.ritual-step { display: none; animation: fadeIn 0.5s ease-out forwards; width: 100%;}
.ritual-step.active { display: block; }

.step-wrapper { 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start;
    flex-grow: 1;
    width: 100%;
}

.step-content { 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start;
}

#step-confirmation.finale-active .step-wrapper {
    justify-content: center;
    padding-top: 0;
}

.cascade-item {
    opacity: 0; transform: translateY(15px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.cascade-item.visible { opacity: 1; transform: translateY(0); }

h1, .step-content h1 { 
    font-size: 29px; 
    font-weight: 700; 
    margin-bottom: 12px; 
    line-height: 1.35; 
    width: 100%;
}

.step-content p:not(.number-value):not(.number-description) { 
    font-size: 14px; 
    color: var(--text-color-light); 
    margin-bottom: 40px; 
    line-height: 1.6; 
    max-width: 550px; 
    margin-left: auto; 
    margin-right: auto; 
    width: 100%;
}

p { 
    font-size: 14px; 
    color: var(--text-color-light); 
    line-height: 1.6; 
}

#confirmation-text { 
    text-align: left; 
    margin-bottom: 25px !important; 
    min-height: 150px; 
}


.search-container { position: relative; width: 100%; }
#autocomplete-dropdown {
    position: absolute; width: 100%; max-height: 200px; overflow-y: auto; background-color: #1A1A1A;
    border: 1px solid var(--border-color); border-top: none; border-radius: 0 0 8px 8px; z-index: 10; text-align: left; margin-top: 0;
}
.autocomplete-item { padding: 12px 22px; cursor: pointer; color: var(--text-color-light); font-size: 14px; }
.autocomplete-item:hover { background-color: var(--border-color); color: var(--text-color); }
.autocomplete-item strong { color: var(--primary-color); font-weight: 500; }

.input-field-wrapper { position: relative; margin-bottom: 25px; transition: all 0.5s ease; }
#step-search .input-field-wrapper { margin-bottom: 0; }
.input-field {
    width: 100%; 
    padding: var(--input-vertical-padding) 10px 10px 10px; 
    font-size: var(--input-font-size); 
    background: transparent;
    border: none; border-bottom: 1px solid var(--border-color); color: var(--text-color);
    transition: border-color: 0.3s ease; text-align: center; border-radius: 0;
    box-sizing: border-box; 
}
.input-field:focus { outline: none; border-bottom-color: transparent; caret-color: var(--primary-color); }
.input-field-wrapper::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background-color: var(--primary-color); transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.input-field-wrapper:has(.input-field:focus)::after,
.input-field-wrapper.pre-filled::after { /* AJUSTE: Adiciona a classe .pre-filled */
    width: 100%;
}

.action-button {
    display: flex; justify-content: center; align-items: center; gap: 10px; 
    margin: 10px auto; padding: 14px 30px; font-size: 16px; font-weight: 700; 
    border-radius: 50px; border: 1px solid var(--button-bg-color); background-color: var(--button-bg-color);
    color: var(--button-text-color); cursor: pointer; transition: all 0.3s ease;
    width: 100%; max-width: 380px;
}
.action-button:hover:not(:disabled) { 
    transform: scale(1.05); 
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.2); 
}
.action-button:disabled {
    background-color: #555 !important; border-color: #555 !important; color: #999 !important;
    cursor: not-allowed; transform: scale(1); box-shadow: none;
    opacity: 0.6;
}
.action-button.active-feedback { 
    transform: scale(1.05); 
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.2); 
}

.confirmation-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.confirmation-buttons .action-button.secondary {
    background: transparent; color: var(--text-color); border: 1px solid var(--border-color);
}
.confirmation-buttons .action-button.secondary:hover:not(:disabled) {
    background-color: var(--button-bg-color); color: var(--button-text-color); border-color: var(--button-bg-color);
}
.confirmation-buttons .action-button {
    flex-grow: 1; max-width: 380px;
}

.phone-input-container {
    display: flex;
    gap: 10px; 
    align-items: baseline; 
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s ease;
}
.phone-input-container .input-field-wrapper { margin-bottom: 0; flex-grow: 1; }
.phone-input-container .country-code-wrapper {
    flex-grow: 0;
    flex-basis: 80px; 
    display: flex;
    align-items: baseline; 
    height: calc(var(--input-vertical-padding) * 2 + var(--input-font-size) - 6px); 
}
.input-field.country-code {
    width: 100%;
    text-align: center;
    padding: var(--input-vertical-padding) 5px 10px 5px; 
    border-bottom: 1px solid var(--border-color); 
    box-sizing: border-box; 
}
.phone-input-container .country-code-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.phone-input-container .country-code-wrapper:has(.input-field:focus)::after {
    width: 100%;
}
.phone-input-container .phone-number-wrapper {
    flex-grow: 1; 
    position: relative; 
}
.phone-input-container .phone-number-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.phone-input-container .phone-number-wrapper:has(.input-field:focus)::after {
    width: 100%;
}


#phone-display-wrapper { margin: 20px auto 30px; padding: 20px; border: 1px solid var(--border-color); border-radius: 8px; max-width: 400px; }
#phone-display-label { margin-bottom: 10px; color: var(--text-color-light); }
#phone-display-number { font-size: 20px; font-weight: 500; color: var(--primary-color); letter-spacing: 1px; }
#confirm-contact-question, #same-number-question { margin-bottom: 10px; margin-top: 20px; font-size: 14px; }

#sanctuary-buttons { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 8px; 
    margin-top: 0; 
    margin-bottom: 40px; 
}
.sanctuary-button {
    justify-content: space-between !important; background: transparent !important; color: var(--text-color) !important; border-color: var(--border-color) !important;
    opacity: 0; transform: translateY(15px); transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.sanctuary-button.visible { opacity: 1; transform: translateY(0); }
.sanctuary-button.locked { color: #555 !important; border-color: #333 !important; }

.sanctuary-button:not([disabled]):hover,
.sanctuary-button.viewed:not([disabled]):hover {
    background: var(--button-bg-color) !important; color: var(--button-text-color) !important; border-color: var(--button-bg-color) !important;
    transform: scale(1.05); box-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
}
.sanctuary-button.viewed { background: var(--button-bg-color) !important; color: var(--button-text-color) !important; }
.sanctuary-button .lock-icon, .sanctuary-button .key-icon { font-size: 16px; transition: color 0.3s ease; }
.sanctuary-button.viewed .lock-icon.fa-lock-open,
.sanctuary-button:not([disabled]):hover .lock-icon { color: var(--button-text-color); }

@keyframes unlock-glow { 0% { box-shadow: 0 0 0px rgba(224, 224, 224, 0); } 50% { box-shadow: 0 0 20px rgba(224, 224, 224, 0.4); } 100% { box-shadow: 0 0 0px rgba(224, 224, 224, 0); } }
.unlocked-highlight { animation: unlock-glow 1.5s ease-in-out; }

@keyframes fadeInSlideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(5px);
    display: none; align-items: center; justify-content: center; z-index: 300; opacity: 0; transition: opacity 0.4s ease;
}
.modal-overlay.visible { display: flex; opacity: 1; }
.modal-overlay.hiding { opacity: 0; }
.modal-box {
    background-color: #111; border: 1px solid var(--border-color); border-radius: 12px;
    width: 90%; max-width: 600px; height: 85vh; max-height: 700px;
    display: flex; flex-direction: column; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    transform: scale(0.95); opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease;
}
.modal-box.modal-animate-in { transform: scale(1); opacity: 1; }
.modal-content { padding: 30px 35px; overflow-y: auto; flex-grow: 1; }

.modal-content.animating > * { animation: fadeInSlideDown 0.8s ease-out forwards; opacity: 0; }
.modal-content.animating h3  { animation-delay: 0.2s; }
.modal-content.animating p   { animation-delay: 0.4s; }
.modal-content.animating h4  { animation-delay: 0.6s; }
.modal-content.animating ul, 
.modal-content.animating ol  { animation-delay: 0.8s; }
.modal-content.animating .final-quote { animation-delay: 1s; }

.modal-content p, .modal-content li { font-size: 15px; line-height: 1.7; color: var(--text-color-light); margin-bottom: 20px; text-align: left; }
.modal-content h3, .modal-content h4 { color: var(--primary-color); margin-top: 20px; margin-bottom: 15px; }
.modal-content ul, .modal-content ol { padding-left: 20px; margin-bottom: 20px; }
.modal-content .final-quote { font-style: italic; border-left: 3px solid var(--primary-color); padding-left: 15px; margin-top: 30px; }

.modal-footer { padding: 20px; border-top: 1px solid var(--border-color); text-align: center; }
.modal-footer .action-button { margin: 0 auto; justify-content: space-between; }

#privacy-notice-container {
    pointer-events: auto;
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 20px;
    overflow: hidden;
}
.privacy-notice {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: var(--text-color-light);
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(100%);
    cursor: pointer;
}
.privacy-notice.active {
    opacity: 0.7;
    transform: translateY(0);
}
.privacy-notice.exiting {
    transform: translateY(-100%);
    opacity: 0;
}
.privacy-notice a {
    text-decoration: underline;
    color: var(--text-color-light);
}

.our-numbers-section,
#sanctuary-container,
.partner-logos-container {
    margin-top: auto;
    margin-bottom: 20px;
    padding-top: 20px;
}
#step-ritual-contact .static-testimonial {
    margin-top: 40px;
}
.partner-logos-container {
    margin-top: 40px;
}


#sanctuary-container { display: block; border-top: 1px solid var(--border-color); }
.sanctuary-locations-wrapper { overflow: hidden; width: 100%; margin: 0 auto; }
.sanctuary-locations { 
    display: flex; 
    justify-content: space-around; 
    flex-wrap: nowrap; 
    text-align: center; 
    margin-bottom: 0px; 
}
.location { 
    flex: 1 0 30%; 
    min-width: 180px; 
    padding: 0 10px; 
    margin-bottom: 20px; 
}
.location h4 { font-size: 14px; font-weight: 700; color: var(--primary-color); margin-bottom: 8px; }
.location p { font-size: 14px; color: var(--text-color-light); margin-bottom: 0; line-height: 1.4; width: 100%; }
.prestige-item { opacity: 0; transition: opacity 1.2s ease-in; }
.prestige-item.visible { opacity: 1; }

#grand-finale-content {
    display: none; 
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
}

#finale-text {
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    max-width: 500px;
    margin-bottom: 20px !important;
    opacity: 0;
    animation: fadeIn 1s ease-in 0.5s forwards; 
}

.finale-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.finale-logo .animated-logo {
    width: 100%;
    height: 100%;
}

.finale-button {
    width: 100%;
    max-width: 380px;
    font-weight: 700;
    opacity: 0;
    animation: fadeIn 1.5s ease-in 1s forwards; 
}

.fade-out {
    opacity: 0 !important;
    transition: opacity 0.5s ease-out;
}

.fade-in {
    opacity: 1 !important;
    animation: fadeIn 1.2s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOutStep {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

.ritual-step.hiding {
    animation: fadeOutStep 0.4s ease-out forwards;
    pointer-events: none;
}

.whatsapp-float-button {
    position: fixed;
    bottom: 20px; 
    right: 25px;
    background-color: #1A1A1A;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px; /* AUMENTADO */
    cursor: grab;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7); /* SOMBRA ADICIONADA */
    z-index: 150;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}
.whatsapp-float-button:active {
    cursor: grabbing;
}

.whatsapp-float-button.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.whatsapp-float-button:hover {
    background-color: var(--text-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.our-numbers-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    width: 100%;
    max-width: 500px;
    border-top: 1px solid var(--border-color);
    position: relative;
    margin: 40px auto 0;
}

.numbers-slider-wrapper {
    overflow: hidden;
    width: 100%;
}
.numbers-slider {
    display: flex;
    width: 100%; 
}
.number-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    padding: 0 10px;
}
.number-value {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    margin: 0;
}
.number-description {
    font-size: 12px;
    color: var(--text-color-light);
    line-height: 1.4;
    margin: 0;
}
.slider-arrow {
    display: none;
}

#landing-subtitle {
    transition: opacity 0.5s ease-out;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#landing-subtitle.fade-out {
    opacity: 0 !important;
}

.purpose-buttons-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: calc(2 * var(--button-height) + var(--button-gap));
    min-height: calc(2 * var(--button-height) + var(--button-gap));
    margin: 20px auto;
}

.fusion-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.purpose-button {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    -webkit-tap-highlight-color: transparent;
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s ease;
    z-index: 1;
}

@keyframes text-fade-out-blur {
    from { opacity: 1; filter: blur(0); }
    to { opacity: 0; filter: blur(4px); }
}

@keyframes text-fade-in-blur {
    from { opacity: 0; filter: blur(4px); }
    to { opacity: 1; filter: blur(0); }
}

.purpose-button span, .purpose-button::after {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.purpose-button::after {
    content: attr(data-fused-text);
    position: absolute;
    top: 0; left: 0;
    font-weight: 700;
    color: var(--button-text-color);
    opacity: 0;
}

.purpose-button.is-transforming-text span {
    animation: text-fade-out-blur 0.6s ease-in-out forwards;
    animation-delay: 0.1s;
}

.purpose-button.is-transforming-text::after {
    animation: text-fade-in-blur 0.6s ease-in-out forwards;
    animation-delay: 0.1s;
}


#purpose-buy-btn {
    top: 0;
    transform: translateY(0);
}

#purpose-rent-btn {
    top: calc(var(--button-height) + var(--button-gap));
    transform: translateY(0);
}

#step-landing .purpose-button:hover:not(:disabled) {
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
    border-color: var(--button-bg-color);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

#step-landing .purpose-button.touch-active {
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
    border-color: var(--button-bg-color);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.purpose-buttons-container.animating-fusion .purpose-button.touch-active:disabled {
    background-color: var(--button-bg-color) !important;
    color: var(--button-text-color) !important;
    border-color: var(--button-bg-color) !important;
    transform: scale(1.05);
    opacity: 1 !important;
}

@keyframes fuse-buy-btn-animation {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(calc(var(--button-height) / 2 + var(--button-gap) / 2)); opacity: 0; }
}

@keyframes fuse-rent-btn-animation {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(calc(-1 * (var(--button-height) / 2 + var(--button-gap) / 2))); opacity: 0; }
}

.purpose-buttons-container.animating-fusion #purpose-buy-btn {
    animation: fuse-buy-btn-animation 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
.purpose-buttons-container.animating-fusion #purpose-rent-btn {
    animation: fuse-rent-btn-animation 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.partner-logos-container {
    width: 100%;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.partner-logos-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-row {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
}

.logo-row.scroll-left {
    animation: scroll-left 40s linear infinite;
}

.logo-row.scroll-right {
    animation: scroll-right 40s linear infinite;
}

.partner-logo {
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    height: 60px;
    width: auto;
    max-width: 150px;
    display: block;
    object-fit: contain;
    filter: brightness(0.7);
    opacity: 0.6;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.partner-logo img:hover, .partner-logo img.glow {
    filter: brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

.logo-slider-arrow {
    display: none;
}

/* --- INÍCIO DA MODIFICAÇÃO DOS TESTEMUNHAIS --- */
.static-testimonial {
    width: 100%;
    max-width: 580px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    pointer-events: auto;
    transition-delay: 0.6s;
    min-height: 95px; 
    position: relative;
}

.testimonial-card {
    width: 100%;
    border-left: 2px solid var(--border-color);
    padding-left: 20px;
    text-align: left;
    position: absolute;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, filter 1.2s ease-in-out; /* Transição suave */
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.testimonial-card.active {
    opacity: 1;
    filter: blur(0); /* CORREÇÃO: Remove o blur do card ativo */
    -webkit-filter: blur(0);
}

.testimonial-card.hiding {
    opacity: 0;
    filter: blur(3px); /* Garante que o blur retorne ao sair */
    -webkit-filter: blur(3px);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.testimonial-quote {
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 6px;
    color: var(--primary-color);
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 5px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars .fa-star {
    font-size: 13px;
    color: var(--border-color);
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.testimonial-stars .fa-star.lit {
    color: var(--star-color-lit);
    text-shadow: 0 0 6px hsla(0, 0%, 100%, 0.6);
}

.testimonial-attribution {
    font-size: 10px;
    font-style: normal;
    color: var(--text-color-light);
    opacity: 0.8;
    margin-bottom: 0;
    text-align: right;
}
/* --- FIM DA MODIFICAÇÃO DOS TESTEMUNHAIS --- */

@keyframes carousel-address {
    0%, 28% { transform: translateX(0%); } 
    33%, 61% { transform: translateX(-25%); } 
    66%, 94% { transform: translateX(-50%); } 
    100% { transform: translateX(0%); }
}

@media (max-width: 768px) {
    .step-wrapper {
        justify-content: center;
        padding-top: 0;
        min-height: calc(100vh - var(--header-height) - var(--footer-height) - 40px);
    }
    .main-container {
        padding-top: 0;
        padding-bottom: 0;
    }

    h1, .step-content h1 { font-size: 26px; }
    .step-content p { margin-bottom: 30px; } 
    .modal-content { padding: 25px; }
    .confirmation-buttons { flex-direction: column; align-items: center; }
    .confirmation-buttons .action-button { width: 100%; }

    #step-ritual-contact-confirm .step-content p {
         margin-bottom: 25px;
    }

    .whatsapp-float-button {
        width: 50px;
        height: 50px;
        font-size: 28px; /* AUMENTADO */
        right: 20px;
        bottom: 20px;
    }

    .partner-logos-slider-wrapper {
        flex-direction: column;
        gap: 0;
    }
    ..logo-row.scroll-left {
        gap: 0;
        animation: scroll-left 30s linear infinite;
        padding: 10px 0;
        width: 200%; 
    }
    .logo-row.scroll-right {
        display: none;
    }
    .partner-logo {
        padding: 0 20px;
        flex-shrink: 0;
    }
    .partner-logo img {
        height: 75px; /* Aumento de 25% */
    }
    
    .sanctuary-locations.is-carouseling {
        width: 200%; 
        animation: carousel-address 9s linear infinite;
        justify-content: flex-start;
    }
    .sanctuary-locations.is-carouseling .location {
        flex-basis: 25%;
        padding: 0 5px; 
    }
}


@media (max-width: 480px) {
    .our-numbers-section {
        max-width: 100%;
    }
    .numbers-slider {
        width: 300%;
        transition: transform 0.5s ease-in-out;
    }
    .number-item {
        width: 33.333%;
        flex-shrink: 0;
    }

    .static-testimonial {
        margin-bottom: 5px;
        height: auto;
        min-height: 115px;
    }
    .testimonial-quote {
        font-size: 12px;
    }
    .testimonial-attribution {
        font-size: 11px;
    }

    .sanctuary-locations-wrapper {
        overflow-x: hidden;
    }

    .location {
       min-width: 0;
       flex: 1 0 50%; /* Mostra 2 por vez */
    }
}

/* --- NOVA CLASSE ADICIONADA --- */
/* Para ocultar elementos mas preservar seu espaço no layout */
.hidden-preserve-layout {
    visibility: hidden;
}

/* --- NOVOS ESTILOS PARA NOTIFICAÇÃO E ANIMAÇÃO DO WHATSAPP --- */
.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff3b30;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid #1A1A1A;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification-badge.show {
    transform: scale(1);
}

@keyframes shake-attention {
    0%, 100% { transform: translateY(0) scale(1); }
    10%, 30%, 50%, 70%, 90% { transform: translateY(-3px) scale(1.1); }
    20%, 40%, 60%, 80% { transform: translateY(3px) scale(1.1); }
}

.whatsapp-attention {
    animation: shake-attention 0.8s ease-in-out;
}