@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');
:root {
--primary: #1a2332;
--primary-light: #243447;
--primary-mid: #2e4058;
--accent: #75aadb;
--accent-hover: #5a94c8;
--accent-light: #8fbde6;
--accent-glow: rgba(117, 170, 219, 0.15);
--gold: #75aadb;
--gold-light: #a3c8e8;
--success: #2d8a4e;
--error: #c0392b;
--bg: #f0f4f8;
--surface: #ffffff;
--border: #c7d5e0;
--border-light: #dde7ef;
--text: #1a1a1a;
--text-light: #5a6a7a;
--text-lighter: #8a9bab;
--text-on-dark: #e8f0f8;
--shadow-sm: 0 1px 2px rgba(26,35,50,0.04);
--shadow: 0 1px 3px rgba(26,35,50,0.08), 0 1px 2px rgba(26,35,50,0.04);
--shadow-md: 0 4px 12px rgba(26,35,50,0.08), 0 2px 4px rgba(26,35,50,0.04);
--shadow-lg: 0 12px 24px rgba(26,35,50,0.1), 0 4px 8px rgba(26,35,50,0.04);
--shadow-gold: 0 4px 14px rgba(117, 170, 219, 0.25);
--radius: 10px;
--radius-lg: 16px;
--radius-xl: 20px;
--font-display: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
--font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: var(--font-body);
background: var(--bg);
color: var(--text);
line-height: 1.6;
min-height: 100vh;
}
.header {
background: var(--primary);
color: var(--text-on-dark);
padding: 0;
display: flex;
align-items: center;
justify-content: space-between;
position: sticky;
top: 0;
z-index: 100;
border-bottom: 3px solid var(--accent);
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
max-width: 960px;
margin: 0 auto;
padding: 0.9rem 2rem;
}
.header-logo {
display: flex;
align-items: center;
gap: 0.75rem;
}
.header-logo img { height: 32px; }
.header-logo h1 {
font-family: var(--font-display);
font-size: 1.4rem;
font-weight: 700;
letter-spacing: 0.01em;
color: white;
}
.header-logo h1 span {
color: var(--accent);
}
.header-tagline {
font-size: 0.8rem;
opacity: 0.6;
font-weight: 400;
letter-spacing: 0.04em;
text-transform: uppercase;
color: var(--text-on-dark);
}
.hero-banner {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
padding: 2.5rem 2rem;
text-align: center;
color: var(--text-on-dark);
position: relative;
overflow: hidden;
}
.hero-banner::before {
content: '';
position: absolute;
inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
opacity: 1;
}
.hero-banner h2 {
font-family: var(--font-display);
font-size: 1.75rem;
font-weight: 700;
margin-bottom: 0.4rem;
position: relative;
color: white;
}
.hero-banner p {
font-size: 0.9rem;
opacity: 0.75;
position: relative;
max-width: 600px;
margin: 0 auto;
}
.hero-banner .gold-line {
width: 50px;
height: 3px;
background: var(--accent);
margin: 0.75rem auto 0;
border-radius: 2px;
position: relative;
}
.container {
max-width: 820px;
margin: -1.5rem auto 2rem;
padding: 0 1.5rem;
position: relative;
z-index: 1;
}
.wizard-progress {
background: var(--surface);
border-radius: var(--radius-lg);
padding: 1.5rem 2rem;
margin-bottom: 1.25rem;
box-shadow: var(--shadow);
border: 1px solid var(--border-light);
}
.wizard-steps-nav {
display: flex;
align-items: flex-start;
justify-content: space-between;
position: relative;
margin-bottom: 0.75rem;
}
.wizard-steps-nav::before {
content: '';
position: absolute;
top: 16px;
left: 20px;
right: 20px;
height: 2px;
background: var(--border);
z-index: 0;
}
.wizard-progress-line {
position: absolute;
top: 16px;
left: 20px;
height: 2px;
background: var(--accent);
z-index: 1;
transition: width 0.4s ease;
}
.wizard-step-indicator {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.4rem;
position: relative;
z-index: 2;
cursor: default;
}
.wizard-step-circle {
width: 34px;
height: 34px;
border-radius: 50%;
border: 2px solid var(--border);
background: var(--surface);
display: flex;
align-items: center;
justify-content: center;
font-size: 0.8rem;
font-weight: 700;
color: var(--text-lighter);
transition: all 0.3s;
}
.wizard-step-indicator.active .wizard-step-circle {
border-color: var(--accent);
background: var(--accent);
color: var(--primary);
box-shadow: 0 0 0 4px var(--accent-glow);
}
.wizard-step-indicator.completed .wizard-step-circle {
border-color: var(--accent);
background: var(--accent);
color: var(--primary);
}
.wizard-step-label {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--text-lighter);
font-weight: 500;
text-align: center;
transition: color 0.3s;
}
.wizard-step-indicator.active .wizard-step-label {
color: var(--accent);
font-weight: 600;
}
.wizard-step-indicator.completed .wizard-step-label {
color: var(--text-light);
}
.wizard-step {
display: none;
animation: fadeSlideIn 0.35s ease;
}
.wizard-step.active {
display: block;
}
@keyframes fadeSlideIn {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
.wizard-nav {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 1.25rem;
padding-top: 1.25rem;
border-top: 1px solid var(--border-light);
}
.wizard-nav.end-only {
justify-content: flex-end;
}
.btn-wizard-back {
background: transparent;
color: var(--text-light);
border: 1.5px solid var(--border);
padding: 0.65rem 1.5rem;
font-size: 0.88rem;
font-weight: 600;
border-radius: 50px;
cursor: pointer;
transition: all 0.2s;
font-family: var(--font-body);
}
.btn-wizard-back:hover {
border-color: var(--text-light);
color: var(--text);
}
.btn-wizard-next {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
color: var(--primary);
border: none;
padding: 0.65rem 2rem;
font-size: 0.88rem;
font-weight: 700;
border-radius: 50px;
cursor: pointer;
transition: all 0.25s;
box-shadow: var(--shadow-gold);
font-family: var(--font-body);
letter-spacing: 0.02em;
}
.btn-wizard-next:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}
.btn-wizard-next:active { transform: translateY(0); }
.form-section {
background: var(--surface);
border-radius: var(--radius-lg);
padding: 2rem;
margin-bottom: 1.25rem;
box-shadow: var(--shadow);
border: 1px solid var(--border-light);
position: relative;
overflow: hidden;
}
.form-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--accent), var(--gold-light));
opacity: 0;
transition: opacity 0.3s;
}
.form-section:focus-within::before {
opacity: 1;
}
.form-section h2 {
font-family: var(--font-display);
font-size: 1.15rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 1.5rem;
padding-bottom: 0.85rem;
border-bottom: 1px solid var(--border-light);
display: flex;
align-items: center;
gap: 0.6rem;
}
.section-icon {
width: 32px;
height: 32px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1rem;
flex-shrink: 0;
}
.section-icon.gold { background: rgba(201, 168, 76, 0.15); color: var(--accent); }
.section-icon.warm { background: rgba(44, 36, 32, 0.08); color: var(--primary); }
.section-icon.amber { background: #fef3c7; }
.section-icon.emerald { background: #d1fae5; }
.section-icon.purple { background: #ede9fe; }
.section-icon.rose { background: #ffe4e6; }
.section-icon.blue { background: rgba(201, 168, 76, 0.12); }
.section-icon.slate { background: rgba(44, 36, 32, 0.06); }
.form-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.1rem;
}
.form-group {
display: flex;
flex-direction: column;
gap: 0.4rem;
}
.form-group.full-width {
grid-column: 1 / -1;
}
.form-group label {
font-size: 0.8rem;
font-weight: 600;
color: var(--text);
letter-spacing: 0.01em;
}
.form-group label .required {
color: var(--accent);
margin-left: 1px;
}
.form-group input,
.form-group select,
.form-group textarea {
padding: 0.7rem 0.85rem;
border: 1.5px solid var(--border);
border-radius: var(--radius);
font-size: 0.88rem;
font-family: var(--font-body);
color: var(--text);
background: var(--surface);
transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--accent);
box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group input.input-error,
.form-group select.input-error {
border-color: var(--error);
box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
color: var(--text-lighter);
}
.form-group textarea {
resize: vertical;
min-height: 90px;
}
.price-input-wrapper {
display: flex;
align-items: center;
border: 1.5px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
transition: all 0.2s;
}
.price-input-wrapper:focus-within {
border-color: var(--accent);
box-shadow: 0 0 0 3px var(--accent-glow);
}
.price-input-wrapper .currency-badge {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
padding: 0.7rem 0.85rem;
font-weight: 700;
color: var(--primary);
font-size: 0.8rem;
white-space: nowrap;
letter-spacing: 0.02em;
}
.price-input-wrapper input {
border: none;
flex: 1;
padding: 0.7rem 0.85rem;
font-size: 1rem;
font-weight: 600;
}
.price-input-wrapper input:focus {
outline: none;
box-shadow: none;
}
.amenities-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
gap: 0.5rem;
}
.amenity-item {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.55rem 0.7rem;
border: 1.5px solid var(--border);
border-radius: var(--radius);
cursor: pointer;
transition: all 0.15s;
font-size: 0.82rem;
font-weight: 500;
}
.amenity-item:hover {
background: var(--accent-glow);
border-color: var(--accent);
}
.amenity-item:has(input:checked) {
background: var(--accent-glow);
border-color: var(--accent);
color: var(--primary);
}
.amenity-item input[type="checkbox"] {
accent-color: var(--accent);
width: 15px;
height: 15px;
border-radius: 3px;
}
.photo-sections {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.photo-section-cover,
.photo-section-extras {
display: flex;
flex-direction: column;
}
.cover-badge {
display: inline-block;
font-size: 0.65rem;
background: var(--accent);
color: var(--primary);
padding: 2px 8px;
border-radius: 4px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
margin-bottom: 0.4rem;
align-self: flex-start;
}
.photo-section-subtitle {
font-size: 0.78rem;
color: var(--text-light);
margin-bottom: 0.5rem;
}
.photo-upload-area {
border: 2px dashed var(--border);
border-radius: var(--radius-lg);
padding: 1.5rem 1rem;
text-align: center;
cursor: pointer;
transition: all 0.2s;
position: relative;
min-height: 140px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.photo-upload-area:hover {
border-color: var(--accent);
background: var(--accent-glow);
}
.photo-upload-area.dragover {
border-color: var(--accent);
background: var(--accent-glow);
transform: scale(1.01);
}
.photo-upload-area input[type="file"] {
position: absolute;
inset: 0;
opacity: 0;
cursor: pointer;
z-index: 2;
}
.photo-upload-icon {
font-size: 1.8rem;
margin-bottom: 0.35rem;
opacity: 0.5;
color: var(--accent);
}
.photo-upload-text {
color: var(--text-light);
font-size: 0.78rem;
line-height: 1.5;
}
.photo-upload-text strong {
color: var(--accent);
font-weight: 600;
}
.photo-preview {
position: relative;
border-radius: 8px;
overflow: hidden;
background: var(--bg);
border: 1px solid var(--border);
}
.photo-preview.cover-photo-preview {
aspect-ratio: 16/10;
margin-top: 0;
}
.photo-preview img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.photo-preview .remove-btn {
position: absolute;
top: 6px;
right: 6px;
background: rgba(0,0,0,0.6);
color: white;
border: none;
border-radius: 50%;
width: 24px;
height: 24px;
cursor: pointer;
font-size: 0.65rem;
display: flex;
align-items: center;
justify-content: center;
z-index: 3;
transition: background 0.15s;
}
.photo-preview .remove-btn:hover { background: var(--error); }
.photo-previews {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
gap: 0.5rem;
margin-top: 0.5rem;
}
.photo-previews .photo-preview {
aspect-ratio: 4/3;
}
.photo-previews .photo-preview .remove-btn {
width: 20px;
height: 20px;
top: 3px;
right: 3px;
font-size: 0.6rem;
opacity: 0;
transition: opacity 0.15s;
}
.photo-previews .photo-preview:hover .remove-btn { opacity: 1; }
.photo-previews .photo-preview[draggable] {
cursor: grab;
user-select: none;
touch-action: manipulation;
}
.photo-previews .photo-preview[draggable]:active {
cursor: grabbing;
}
.photo-preview.dragging {
opacity: 0.4;
border: 2px dashed var(--accent);
transform: scale(0.95);
}
.photo-preview.drag-over {
border: 2px solid var(--accent);
box-shadow: 0 0 0 3px var(--accent-glow);
transform: scale(1.05);
transition: all 0.15s ease;
}
.photo-order-badge {
position: absolute;
top: 3px;
left: 3px;
background: rgba(0,0,0,0.65);
color: var(--accent-light);
font-size: 0.6rem;
font-weight: 700;
width: 20px;
height: 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
z-index: 3;
font-family: 'Source Sans 3', sans-serif;
}
.photo-rotate-btn {
position: absolute;
bottom: 6px;
right: 6px;
background: rgba(0,0,0,0.6);
color: white;
border: none;
border-radius: 50%;
width: 28px;
height: 28px;
cursor: pointer;
font-size: 1rem;
display: flex;
align-items: center;
justify-content: center;
z-index: 3;
transition: background 0.15s, transform 0.15s;
line-height: 1;
}
.photo-rotate-btn:hover {
background: var(--accent);
color: var(--primary);
transform: rotate(90deg);
}
.photo-previews .photo-preview .photo-rotate-btn {
width: 22px;
height: 22px;
bottom: 3px;
right: 3px;
font-size: 0.8rem;
opacity: 0;
transition: opacity 0.15s;
}
.photo-previews .photo-preview:hover .photo-rotate-btn { opacity: 1; }
.cover-photo-preview .photo-rotate-btn {
opacity: 1;
}
.photo-preview img {
transition: transform 0.3s ease;
}
@media (max-width: 768px) {
.photo-previews .photo-preview .remove-btn,
.photo-previews .photo-preview .photo-rotate-btn {
opacity: 1;
}
.photo-rotate-btn {
width: 32px;
height: 32px;
font-size: 1.1rem;
}
.photo-previews .photo-preview .photo-rotate-btn {
width: 26px;
height: 26px;
}
.photo-previews .photo-preview .remove-btn {
width: 24px;
height: 24px;
}
}
.submit-section {
text-align: center;
padding: 1.5rem 0;
}
.btn-submit {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
color: var(--primary);
border: none;
padding: 1rem 3.5rem;
font-size: 1.05rem;
font-weight: 700;
border-radius: 50px;
cursor: pointer;
transition: all 0.25s;
box-shadow: var(--shadow-gold);
font-family: var(--font-body);
letter-spacing: 0.02em;
}
.btn-submit:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled {
opacity: 0.7;
cursor: not-allowed;
transform: none;
}
.btn-submit .spinner {
display: inline-block;
width: 18px;
height: 18px;
border: 2.5px solid rgba(44, 36, 32, 0.2);
border-top-color: var(--primary);
border-radius: 50%;
animation: spin 0.8s linear infinite;
margin-right: 0.5rem;
vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }
.submit-hint {
margin-top: 0.75rem;
color: var(--text-lighter);
font-size: 0.75rem;
letter-spacing: 0.01em;
}
.results-hero {
background: var(--primary);
padding: 2.5rem 1.5rem 2rem;
text-align: center;
position: relative;
overflow: hidden;
}
.results-hero::before {
content: "";
position: absolute;
inset: 0;
background:
radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
pointer-events: none;
}
.results-hero-inner {
position: relative;
max-width: 700px;
margin: 0 auto;
}
.results-hero-badge {
width: 52px;
height: 52px;
border-radius: 50%;
background: linear-gradient(135deg, var(--accent), var(--accent-hover));
display: inline-flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.results-hero-badge svg {
width: 24px;
height: 24px;
color: var(--primary);
animation: drawCheck 0.4s ease 0.3s both;
}
.results-hero-title {
font-family: var(--font-display);
font-size: 1.6rem;
color: white;
margin-bottom: 0.4rem;
letter-spacing: -0.01em;
}
.results-hero-subtitle {
color: rgba(255,255,255,0.6);
font-size: 0.92rem;
margin-bottom: 1.25rem;
}
.results-hero-chips {
display: flex;
flex-wrap: wrap;
gap: 0.4rem;
justify-content: center;
}
.hero-chip {
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.12);
color: rgba(255,255,255,0.85);
padding: 0.25rem 0.7rem;
border-radius: 50px;
font-size: 0.72rem;
font-weight: 500;
letter-spacing: 0.02em;
}
@keyframes popIn {
0% { transform: scale(0); opacity: 0; }
100% { transform: scale(1); opacity: 1; }
}
@keyframes drawCheck {
0% { stroke-dasharray: 0 100; }
100% { stroke-dasharray: 100 100; }
}
.results-container {
max-width: 960px;
margin: 0 auto;
padding: 0 1.5rem 2rem;
}
.results-section {
margin-top: 2rem;
}
.section-header {
display: flex;
align-items: center;
gap: 0.85rem;
margin-bottom: 1.25rem;
padding-bottom: 0.75rem;
border-bottom: 1px solid var(--border-light);
}
.section-icon {
width: 40px;
height: 40px;
border-radius: 10px;
background: var(--accent-glow);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.15rem;
flex-shrink: 0;
}
.section-title {
font-family: var(--font-display);
font-size: 1.15rem;
color: var(--primary);
margin-bottom: 0.1rem;
}
.section-desc {
font-size: 0.82rem;
color: var(--text-light);
}
.media-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1rem;
}
.media-card {
background: var(--surface);
border-radius: var(--radius-lg);
border: 1px solid var(--border-light);
overflow: hidden;
transition: box-shadow 0.25s, transform 0.25s;
display: flex;
flex-direction: column;
}
.media-card:hover {
box-shadow: var(--shadow-lg);
transform: translateY(-3px);
}
.media-card-badge {
padding: 0.5rem 0.85rem;
font-size: 0.72rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--accent);
background: var(--bg);
border-bottom: 1px solid var(--border-light);
}
.media-card-preview {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 1.25rem 1rem;
min-height: 260px;
background:
linear-gradient(135deg, #f9f7f4 0%, #f0ece5 100%);
}
.media-card-footer {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.6rem 0.85rem;
border-top: 1px solid var(--border-light);
background: var(--surface);
}
.media-card-size {
font-size: 0.7rem;
color: var(--text-lighter);
font-weight: 500;
}
.media-card-btn {
display: inline-flex;
align-items: center;
gap: 0.35rem;
background: var(--primary);
color: white;
text-decoration: none;
padding: 0.35rem 0.85rem;
font-size: 0.72rem;
font-weight: 600;
border-radius: 50px;
transition: all 0.2s;
}
.media-card-btn:hover {
background: var(--primary-light);
transform: translateY(-1px);
}
.phone-frame {
position: relative;
border-radius: 16px;
overflow: hidden;
box-shadow:
0 8px 30px rgba(0,0,0,0.12),
0 2px 8px rgba(0,0,0,0.08),
inset 0 0 0 2px rgba(0,0,0,0.06);
background: #000;
}
.phone-frame img {
display: block;
width: 100%;
height: auto;
}
.phone-frame--post {
max-width: 180px;
}
.phone-frame--story {
max-width: 140px;
}
.video-generating {
text-align: center;
padding: 1rem 0;
position: relative;
}
.video-pulse-ring {
width: 60px;
height: 60px;
border-radius: 50%;
border: 3px solid var(--accent-glow);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -60%);
animation: pulseRing 2s ease-out infinite;
}
.video-pulse-icon {
font-size: 2rem;
margin-bottom: 0.75rem;
animation: gentlePulse 2s ease-in-out infinite;
}
.video-status-text {
font-size: 0.78rem;
color: var(--text-light);
font-weight: 500;
}
.video-ready-state {
text-align: center;
padding: 1rem 0;
}
.video-ready-icon {
font-size: 2rem;
margin-bottom: 0.5rem;
animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.video-ready-state p {
font-size: 0.82rem;
color: var(--text-light);
font-weight: 500;
}
.video-error-state {
text-align: center;
padding: 1rem 0;
color: var(--error);
}
.video-error-state p {
font-size: 0.82rem;
font-weight: 600;
}
.video-error-hint {
font-weight: 400 !important;
opacity: 0.75;
margin-top: 0.25rem;
font-size: 0.72rem !important;
word-break: break-word;
}
.btn-retry-video {
display: inline-flex;
align-items: center;
gap: 0.4rem;
margin-top: 0.75rem;
padding: 0.5rem 1.25rem;
background: var(--primary);
color: #fff;
border: none;
border-radius: 8px;
font-size: 0.8rem;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
}
.btn-retry-video:hover {
background: var(--primary-dark, #1a1a2e);
transform: translateY(-1px);
}
@keyframes pulseRing {
0% { transform: translate(-50%, -60%) scale(0.8); opacity: 0.5; }
50% { transform: translate(-50%, -60%) scale(1.3); opacity: 0; }
100% { transform: translate(-50%, -60%) scale(0.8); opacity: 0; }
}
@keyframes gentlePulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}
.carousel-card {
background: var(--surface);
border-radius: var(--radius-lg);
border: 1px solid var(--border-light);
overflow: hidden;
margin-top: 1rem;
transition: box-shadow 0.25s;
}
.carousel-card:hover {
box-shadow: var(--shadow-md);
}
.carousel-card-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 1.25rem;
border-bottom: 1px solid var(--border-light);
gap: 1rem;
}
.carousel-card-title {
font-size: 0.92rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 0.15rem;
}
.carousel-card-desc {
font-size: 0.78rem;
color: var(--text-light);
}
.carousel-download-btn {
display: inline-flex;
align-items: center;
gap: 0.4rem;
background: var(--primary);
color: white;
text-decoration: none;
padding: 0.45rem 1rem;
font-size: 0.75rem;
font-weight: 600;
border-radius: 50px;
transition: all 0.2s;
white-space: nowrap;
flex-shrink: 0;
}
.carousel-download-btn:hover {
background: var(--primary-light);
transform: translateY(-1px);
}
.carousel-slides-scroll {
display: flex;
gap: 0;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
}
.carousel-slides-scroll::-webkit-scrollbar { height: 4px; }
.carousel-slides-scroll::-webkit-scrollbar-track { background: var(--bg); }
.carousel-slides-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.carousel-slide-item {
flex-shrink: 0;
position: relative;
scroll-snap-align: start;
width: 200px;
}
.carousel-slide-item img {
display: block;
width: 100%;
height: auto;
transition: opacity 0.2s;
}
.carousel-slide-item:hover img {
opacity: 0.92;
}
.carousel-slide-num {
position: absolute;
top: 8px;
right: 8px;
background: rgba(0,0,0,0.55);
color: white;
font-size: 0.65rem;
font-weight: 600;
padding: 2px 8px;
border-radius: 50px;
backdrop-filter: blur(4px);
}
.pdf-card {
background: var(--surface);
border-radius: var(--radius-lg);
border: 1px solid var(--border-light);
padding: 1.5rem;
display: flex;
align-items: center;
gap: 1.25rem;
transition: box-shadow 0.25s;
}
.pdf-card:hover {
box-shadow: var(--shadow-md);
}
.pdf-card-icon {
width: 64px;
height: 64px;
border-radius: 14px;
background: var(--accent-glow);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.pdf-card-info {
flex: 1;
}
.pdf-card-info h4 {
font-size: 0.95rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 0.2rem;
}
.pdf-card-info p {
font-size: 0.8rem;
color: var(--text-light);
}
.btn-download-main {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: linear-gradient(135deg, var(--accent), var(--accent-hover));
color: var(--primary);
text-decoration: none;
padding: 0.7rem 1.8rem;
font-size: 0.88rem;
font-weight: 700;
border-radius: 50px;
transition: all 0.2s;
box-shadow: var(--shadow-gold);
white-space: nowrap;
flex-shrink: 0;
}
.btn-download-main:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}
.copy-grid {
display: grid;
grid-template-columns: 1fr;
gap: 0.85rem;
}
.copy-card {
background: var(--surface);
border-radius: var(--radius-lg);
border: 1px solid var(--border-light);
overflow: hidden;
transition: box-shadow 0.2s;
}
.copy-card:hover {
box-shadow: var(--shadow);
}
.copy-card-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.65rem 1rem;
background: var(--bg);
border-bottom: 1px solid var(--border-light);
}
.copy-card-label {
display: flex;
align-items: center;
gap: 0.4rem;
font-size: 0.82rem;
font-weight: 600;
color: var(--primary);
}
.copy-card-icon {
font-size: 1rem;
}
.btn-copy {
display: inline-flex;
align-items: center;
gap: 0.35rem;
background: var(--primary);
color: var(--text-on-dark);
border: none;
padding: 0.3rem 0.85rem;
font-size: 0.7rem;
font-weight: 600;
border-radius: 50px;
cursor: pointer;
transition: all 0.2s;
font-family: var(--font-body);
}
.btn-copy:hover { background: var(--primary-light); }
.btn-copy.copied { background: var(--success); }
.copy-card-body {
padding: 0.85rem 1rem;
font-size: 0.82rem;
line-height: 1.7;
white-space: pre-wrap;
word-break: break-word;
max-height: 200px;
overflow-y: auto;
color: var(--text);
}
.copy-card-body::-webkit-scrollbar { width: 4px; }
.copy-card-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.copy-card-action {
padding: 0.5rem 1rem 0.85rem;
border-top: 1px solid var(--border-light);
}
.btn-whatsapp {
display: inline-flex;
align-items: center;
gap: 0.4rem;
background: #25d366;
color: white;
text-decoration: none;
padding: 0.4rem 1.2rem;
font-size: 0.8rem;
font-weight: 600;
border-radius: 50px;
transition: all 0.2s;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); }
.results-bottom-actions {
display: flex;
justify-content: center;
margin-top: 2.5rem;
padding-top: 1.5rem;
border-top: 1px solid var(--border-light);
}
.btn-new-listing {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: transparent;
color: var(--primary);
text-decoration: none;
padding: 0.65rem 1.8rem;
font-size: 0.88rem;
font-weight: 600;
border: 2px solid var(--primary);
border-radius: 50px;
transition: all 0.2s;
}
.btn-new-listing:hover {
background: var(--primary);
color: white;
transform: translateY(-1px);
}
@media (max-width: 700px) {
.media-grid {
grid-template-columns: 1fr 1fr;
}
.pdf-card {
flex-direction: column;
text-align: center;
}
.carousel-slide-item { width: 160px; }
.results-hero { padding: 2rem 1rem 1.5rem; }
.results-hero-title { font-size: 1.3rem; }
}
@media (max-width: 480px) {
.media-grid {
grid-template-columns: 1fr;
}
.carousel-card-header {
flex-direction: column;
align-items: flex-start;
}
}
.error-box {
background: #fef2f2;
border: 1px solid #fca5a5;
color: #991b1b;
border-radius: var(--radius);
padding: 1rem 1.25rem;
margin-bottom: 1rem;
font-size: 0.88rem;
font-weight: 500;
}
.validation-hint {
color: var(--error);
font-size: 0.78rem;
font-weight: 500;
margin-top: 0.5rem;
display: none;
}
.validation-hint.show {
display: block;
animation: fadeSlideIn 0.25s ease;
}
.footer {
text-align: center;
padding: 2rem;
color: var(--text-lighter);
font-size: 0.75rem;
letter-spacing: 0.02em;
}
.footer span {
color: var(--accent);
font-weight: 600;
}
@media (max-width: 768px) {
.header-inner { padding: 0.75rem 1rem; }
.header-tagline { display: none; }
.hero-banner { padding: 1.5rem 1rem; }
.hero-banner h2 { font-size: 1.3rem; }
.container { padding: 0 1rem; margin-top: -1rem; }
.form-grid { grid-template-columns: 1fr; }
.amenities-grid { grid-template-columns: 1fr 1fr; }
.form-section { padding: 1.25rem; }
.photo-sections { grid-template-columns: 1fr; }
.wizard-progress { padding: 1rem; }
.wizard-step-label { font-size: 0.6rem; }
.wizard-step-circle { width: 28px; height: 28px; font-size: 0.7rem; }
.wizard-nav { flex-direction: column; gap: 0.75rem; }
.btn-wizard-back, .btn-wizard-next { width: 100%; text-align: center; }
}
.header-nav {
display: flex;
align-items: center;
gap: 0.5rem;
}
.header-nav-link {
color: var(--text-on-dark);
text-decoration: none;
font-size: 0.85rem;
font-weight: 500;
padding: 0.4rem 0.9rem;
border-radius: var(--radius);
border: 1px solid rgba(255,255,255,0.15);
transition: all 0.2s;
}
.header-nav-link:hover {
background: rgba(255,255,255,0.1);
border-color: rgba(255,255,255,0.3);
}
.header-nav-link.active {
background: var(--accent);
color: var(--primary);
border-color: var(--accent);
font-weight: 600;
}
.template-editor-header {
text-align: center;
margin-bottom: 2rem;
}
.template-editor-header h2 {
font-family: var(--font-display);
font-size: 1.8rem;
color: var(--primary);
margin-bottom: 0.5rem;
}
.template-editor-header p {
color: var(--text-light);
font-size: 0.95rem;
}
.template-section {
background: var(--surface);
border-radius: var(--radius-lg);
box-shadow: var(--shadow);
margin-bottom: 1.5rem;
overflow: hidden;
}
.template-section-title {
display: flex;
align-items: center;
gap: 0.6rem;
padding: 1rem 1.5rem;
background: var(--primary);
color: var(--text-on-dark);
font-family: var(--font-display);
font-size: 1.1rem;
font-weight: 600;
}
.template-section-icon {
font-size: 1.2rem;
}
.template-section-body {
padding: 1.5rem;
}
.variant-label {
display: block;
font-weight: 600;
font-size: 0.85rem;
color: var(--text);
margin-bottom: 0.6rem;
}
.variant-selector {
display: flex;
gap: 1rem;
margin-bottom: 0.5rem;
}
.variant-option {
flex: 1;
border: 2px solid var(--border);
border-radius: 12px;
padding: 0.8rem;
cursor: pointer;
transition: border-color 0.2s, box-shadow 0.2s;
text-align: center;
background: var(--white);
}
.variant-option:hover {
border-color: var(--gold);
}
.variant-option.selected {
border-color: var(--gold);
box-shadow: 0 0 0 2px rgba(193, 154, 84, 0.25);
}
.variant-name {
display: block;
font-weight: 700;
font-size: 0.9rem;
color: var(--text);
margin-top: 0.5rem;
}
.variant-desc {
display: block;
font-size: 0.72rem;
color: var(--text-light);
margin-top: 0.15rem;
}
.variant-thumb {
width: 100%;
height: 90px;
border-radius: 6px;
overflow: hidden;
position: relative;
background: #f7fafc;
border: 1px solid #e2e8f0;
}
.variant-thumb-clasico .vt-hero {
width: 100%;
height: 55%;
background: linear-gradient(180deg, #718096 0%, #2d3748 100%);
position: relative;
}
.variant-thumb-clasico .vt-badge {
position: absolute;
top: 6px;
left: 6px;
width: 20px;
height: 7px;
background: #e53e3e;
border-radius: 2px;
}
.variant-thumb-clasico .vt-price-overlay {
position: absolute;
bottom: 5px;
left: 6px;
width: 45%;
height: 5px;
background: rgba(255,255,255,0.8);
border-radius: 2px;
}
.variant-thumb-clasico .vt-statsbar {
width: 100%;
height: 12%;
background: #1a365d;
}
.variant-thumb-clasico .vt-lines {
padding: 6px;
}
.variant-thumb-clasico .vt-line {
height: 4px;
background: #e2e8f0;
border-radius: 2px;
margin-bottom: 3px;
}
.variant-thumb-clasico .vt-line.short {
width: 60%;
}
.variant-thumb-moderno .vt-header-bar {
width: 100%;
height: 14%;
background: #1a365d;
}
.variant-thumb-moderno .vt-photo {
width: 82%;
height: 35%;
margin: 4px auto 0;
background: #cbd5e0;
border-radius: 3px;
}
.variant-thumb-moderno .vt-center-price {
width: 40%;
height: 5px;
margin: 5px auto 0;
background: #1a365d;
border-radius: 2px;
}
.variant-thumb-moderno .vt-cards {
display: flex;
gap: 3px;
justify-content: center;
margin-top: 5px;
padding: 0 8px;
}
.variant-thumb-moderno .vt-card {
flex: 1;
height: 14px;
background: #edf2f7;
border-radius: 2px;
border-top: 1.5px solid #e53e3e;
}
@media (max-width: 600px) {
.variant-selector {
flex-direction: column;
}
}
.color-pickers-row {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
margin-bottom: 1.5rem;
}
.color-picker-group {
flex: 1;
min-width: 160px;
}
.color-picker-group label {
display: block;
font-weight: 600;
font-size: 0.85rem;
color: var(--text);
margin-bottom: 0.4rem;
}
.color-picker-wrapper {
display: flex;
align-items: center;
gap: 0.5rem;
}
.color-picker-wrapper input[type="color"] {
width: 48px;
height: 40px;
border: 2px solid var(--border);
border-radius: 8px;
cursor: pointer;
padding: 2px;
background: var(--surface);
}
.color-hex-input {
width: 90px;
padding: 0.5rem 0.6rem;
border: 1px solid var(--border);
border-radius: 8px;
font-family: monospace;
font-size: 0.85rem;
color: var(--text);
background: var(--bg);
}
.color-hint {
display: block;
font-size: 0.75rem;
color: var(--text-lighter);
margin-top: 0.3rem;
}
.preview-label {
font-size: 0.8rem;
font-weight: 600;
color: var(--text-light);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 0.75rem;
}
.preview-pdf {
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow-md);
max-width: 400px;
}
.preview-pdf-hero {
background: linear-gradient(to top, rgba(0,0,0,0.7), transparent), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="120"><rect fill="%23667" width="400" height="120"/></svg>');
background-size: cover;
padding: 1rem;
position: relative;
min-height: 100px;
display: flex;
flex-direction: column;
justify-content: flex-end;
}
.preview-pdf-badge {
position: absolute;
top: 8px;
left: 8px;
color: #fff;
font-size: 0.65rem;
font-weight: 700;
padding: 2px 8px;
border-radius: 2px;
letter-spacing: 1px;
}
.preview-pdf-price {
color: #fff;
font-size: 1.1rem;
font-weight: 700;
font-family: var(--font-display);
}
.preview-pdf-location {
color: rgba(255,255,255,0.8);
font-size: 0.7rem;
}
.preview-pdf-stats {
display: flex;
gap: 0;
color: #fff;
font-size: 0.7rem;
font-weight: 600;
padding: 0.5rem 0;
text-align: center;
}
.preview-pdf-stats span {
flex: 1;
}
.preview-pdf-title {
font-weight: 700;
font-size: 0.8rem;
padding: 0.6rem 1rem 0.2rem;
}
.preview-pdf-text {
font-size: 0.65rem;
color: var(--text-light);
padding: 0 1rem 0.8rem;
}
.preview-phone-wrapper {
display: flex;
justify-content: center;
}
.preview-phone {
width: 180px;
height: 320px;
border-radius: 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 16px;
position: relative;
box-shadow: var(--shadow-lg);
border: 3px solid rgba(255,255,255,0.1);
}
.preview-phone-badge {
color: #fff;
font-size: 0.65rem;
font-weight: 700;
padding: 4px 16px;
border-radius: 3px;
letter-spacing: 2px;
}
.preview-phone-line {
width: 80px;
height: 2px;
}
.preview-phone-type {
font-size: 0.75rem;
font-family: Georgia, serif;
letter-spacing: 3px;
}
.preview-phone-price {
font-size: 1.1rem;
font-weight: 700;
font-family: Georgia, serif;
}
.preview-phone-cta {
color: #fff;
font-size: 0.7rem;
font-weight: 700;
padding: 6px 20px;
border-radius: 20px;
margin-top: 8px;
}
.music-field {
margin-bottom: 0.5rem;
}
.music-field label {
display: block;
font-weight: 600;
font-size: 0.85rem;
color: var(--text);
margin-bottom: 0.4rem;
}
.music-field input[type="text"] {
width: 100%;
padding: 0.65rem 0.9rem;
border: 1px solid var(--border);
border-radius: var(--radius);
font-family: var(--font-body);
font-size: 0.9rem;
color: var(--text);
background: var(--bg);
transition: border-color 0.2s;
}
.music-field input[type="text"]:focus {
outline: none;
border-color: var(--accent);
box-shadow: 0 0 0 3px var(--accent-glow);
}
.music-presets {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
margin-top: 0.75rem;
}
.presets-label {
font-size: 0.8rem;
font-weight: 600;
color: var(--text-light);
}
.btn-preset {
padding: 0.35rem 0.75rem;
border: 1px solid var(--border);
border-radius: 20px;
background: var(--bg);
color: var(--text);
font-size: 0.75rem;
font-family: var(--font-body);
cursor: pointer;
transition: all 0.2s;
}
.btn-preset:hover {
background: var(--accent-glow);
border-color: var(--accent);
color: var(--primary);
}
.file-uploads-row {
display: flex;
gap: 2rem;
}
.file-upload-group {
flex: 1;
}
.file-upload-group > label {
display: block;
font-weight: 600;
font-size: 0.9rem;
color: var(--text);
margin-bottom: 0.5rem;
}
.file-upload-area {
border: 2px dashed var(--border);
border-radius: var(--radius);
background: var(--bg);
padding: 1.2rem;
display: flex;
align-items: center;
justify-content: center;
min-height: 100px;
cursor: pointer;
transition: border-color 0.2s, background 0.2s;
}
.file-upload-area:hover {
border-color: var(--accent);
background: var(--accent-glow);
}
.file-upload-placeholder {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.4rem;
color: var(--text-light);
font-size: 0.85rem;
}
.file-upload-icon {
font-size: 1.5rem;
}
.file-preview {
max-width: 120px;
max-height: 80px;
border-radius: var(--radius);
border: 1px solid var(--border);
object-fit: contain;
}
.file-preview-round {
border-radius: 50%;
max-width: 80px;
max-height: 80px;
object-fit: cover;
aspect-ratio: 1;
}
.qr-toggle-row {
margin-bottom: 1rem;
}
.qr-toggle-label {
display: flex;
align-items: center;
gap: 0.6rem;
font-weight: 500;
font-size: 0.95rem;
color: var(--text);
cursor: pointer;
}
.qr-toggle-label input[type="checkbox"] {
width: 18px;
height: 18px;
accent-color: var(--accent);
cursor: pointer;
}
.qr-url-field {
margin-top: 0.5rem;
}
.qr-url-field label {
display: block;
font-weight: 600;
font-size: 0.85rem;
color: var(--text);
margin-bottom: 0.3rem;
}
.qr-url-field input[type="url"] {
width: 100%;
padding: 0.6rem 0.8rem;
border: 1px solid var(--border);
border-radius: var(--radius);
font-size: 0.9rem;
font-family: var(--font-body);
background: var(--surface);
color: var(--text);
transition: border-color 0.2s, opacity 0.2s;
box-sizing: border-box;
}
.qr-url-field input[type="url"]:focus {
border-color: var(--accent);
outline: none;
}
.qr-url-field input[type="url"]:disabled {
opacity: 0.5;
background: var(--bg);
cursor: not-allowed;
}
.template-actions {
display: flex;
justify-content: center;
gap: 1rem;
margin: 2rem 0;
}
.btn-template-save {
padding: 0.8rem 2.5rem;
background: var(--accent);
color: var(--primary);
border: none;
border-radius: var(--radius);
font-weight: 700;
font-size: 1rem;
font-family: var(--font-body);
cursor: pointer;
box-shadow: var(--shadow-gold);
transition: all 0.2s;
}
.btn-template-save:hover {
background: var(--accent-hover);
transform: translateY(-1px);
}
.btn-template-reset {
padding: 0.8rem 2rem;
background: transparent;
color: var(--text-light);
border: 1px solid var(--border);
border-radius: var(--radius);
font-weight: 500;
font-size: 0.9rem;
font-family: var(--font-body);
text-decoration: none;
cursor: pointer;
transition: all 0.2s;
}
.btn-template-reset:hover {
border-color: var(--error);
color: var(--error);
}
.toast-success {
background: var(--success);
color: #fff;
padding: 0.8rem 1.5rem;
border-radius: var(--radius);
text-align: center;
font-weight: 600;
font-size: 0.9rem;
margin-bottom: 1.5rem;
transition: opacity 0.4s;
}
.toast-success.fade-out {
opacity: 0;
}
.history-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.25rem;
}
.history-card {
background: var(--surface);
border-radius: var(--radius-lg);
box-shadow: var(--shadow);
border: 1px solid var(--border-light);
overflow: hidden;
transition: box-shadow 0.2s, transform 0.2s;
}
.history-card:hover {
box-shadow: var(--shadow-md);
transform: translateY(-2px);
}
.history-card-header {
background: var(--primary);
color: var(--text-on-dark);
padding: 0.75rem 1.25rem;
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.5rem;
}
.history-card-type {
font-family: var(--font-display);
font-size: 0.95rem;
font-weight: 600;
}
.history-card-op {
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
background: var(--accent);
color: var(--primary);
padding: 2px 10px;
border-radius: 4px;
}
.history-card-body {
padding: 1rem 1.25rem;
}
.history-card-location {
display: flex;
align-items: center;
gap: 0.4rem;
font-size: 0.85rem;
color: var(--text-light);
margin-bottom: 0.5rem;
}
.history-card-location svg {
color: var(--accent);
flex-shrink: 0;
}
.history-card-price {
font-family: var(--font-display);
font-size: 1.2rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 0.4rem;
}
.history-card-date {
display: flex;
align-items: center;
gap: 0.35rem;
font-size: 0.75rem;
color: var(--text-lighter);
}
.history-card-status {
display: flex;
gap: 0.5rem;
padding: 0 1.25rem;
flex-wrap: wrap;
}
.status-badge {
font-size: 0.68rem;
font-weight: 600;
padding: 3px 10px;
border-radius: 20px;
letter-spacing: 0.02em;
}
.status-ready {
background: rgba(201, 168, 76, 0.15);
color: var(--accent-hover);
}
.status-processing {
background: rgba(107, 107, 107, 0.1);
color: var(--text-light);
}
.status-error {
background: rgba(192, 57, 43, 0.1);
color: var(--error);
}
.history-card-actions {
display: flex;
gap: 0.5rem;
padding: 1rem 1.25rem;
border-top: 1px solid var(--border-light);
margin-top: 0.75rem;
}
.btn-history-dl {
display: inline-flex;
align-items: center;
gap: 0.35rem;
padding: 0.45rem 1rem;
font-size: 0.78rem;
font-weight: 600;
font-family: var(--font-body);
color: var(--primary);
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
border-radius: 50px;
text-decoration: none;
transition: all 0.2s;
box-shadow: var(--shadow-sm);
}
.btn-history-dl:hover {
transform: translateY(-1px);
box-shadow: var(--shadow-gold);
}
.history-empty {
text-align: center;
padding: 4rem 2rem;
background: var(--surface);
border-radius: var(--radius-lg);
box-shadow: var(--shadow);
border: 1px solid var(--border-light);
}
.history-empty-icon {
color: var(--accent);
margin-bottom: 1rem;
opacity: 0.6;
}
.history-empty h3 {
font-family: var(--font-display);
font-size: 1.2rem;
color: var(--primary);
margin-bottom: 0.5rem;
}
.history-empty p {
color: var(--text-light);
font-size: 0.9rem;
margin-bottom: 1.5rem;
}
.btn-history-new {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.7rem 2rem;
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
color: var(--primary);
font-weight: 700;
font-size: 0.9rem;
border-radius: 50px;
text-decoration: none;
transition: all 0.2s;
box-shadow: var(--shadow-gold);
}
.btn-history-new:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}
.vo-toggle-group {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.75rem;
margin-top: 0.5rem;
}
.vo-toggle-group-3 {
grid-template-columns: 1fr 1fr 1fr;
}
.vo-toggle-btn {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.3rem;
padding: 1rem 0.75rem;
border: 2px solid var(--border-light);
border-radius: var(--radius);
background: var(--card);
cursor: pointer;
transition: all 0.2s;
text-align: center;
}
.vo-toggle-btn:hover {
border-color: var(--accent);
background: #fdfaf3;
}
.vo-toggle-btn.active {
border-color: var(--accent);
background: linear-gradient(135deg, #fdfaf3, #fef9ec);
box-shadow: 0 0 0 1px var(--accent);
}
.vo-toggle-btn input[type="radio"] {
display: none;
}
.vo-toggle-icon {
font-size: 1.5rem;
line-height: 1;
}
.vo-toggle-label {
font-weight: 600;
font-size: 0.9rem;
color: var(--primary);
}
.vo-toggle-desc {
font-size: 0.75rem;
color: var(--text-muted);
}
.vo-section-divider {
height: 1px;
background: var(--border-light);
margin: 1.5rem 0;
}
.vo-switch-label {
display: flex;
align-items: center;
justify-content: space-between;
font-weight: 600;
font-size: 0.95rem;
color: var(--primary);
cursor: pointer;
}
.vo-switch {
position: relative;
display: inline-block;
width: 52px;
height: 28px;
flex-shrink: 0;
}
.vo-switch input {
opacity: 0;
width: 0;
height: 0;
}
.vo-switch-slider {
position: absolute;
cursor: pointer;
inset: 0;
background: #ddd;
border-radius: 28px;
transition: 0.3s;
}
.vo-switch-slider::before {
content: "";
position: absolute;
height: 22px;
width: 22px;
left: 3px;
bottom: 3px;
background: white;
border-radius: 50%;
transition: 0.3s;
box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.vo-switch input:checked + .vo-switch-slider {
background: var(--accent);
}
.vo-switch input:checked + .vo-switch-slider::before {
transform: translateX(24px);
}
.vo-options {
animation: fadeSlideIn 0.3s ease;
}
@keyframes fadeSlideIn {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
.script-review-card {
max-width: 700px;
margin: 2rem auto;
background: var(--card);
border-radius: var(--radius-lg);
border: 1px solid var(--border-light);
padding: 2rem;
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.script-review-header {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1.5rem;
}
.script-review-icon {
width: 48px;
height: 48px;
background: linear-gradient(135deg, var(--accent), #e8c547);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
flex-shrink: 0;
}
.script-review-title {
font-family: 'Playfair Display', serif;
font-size: 1.4rem;
color: var(--primary);
margin: 0;
}
.script-review-subtitle {
font-size: 0.88rem;
color: var(--text-muted);
margin: 0.25rem 0 0;
}
.script-review-meta {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
margin-bottom: 1.5rem;
}
.script-meta-chip {
display: inline-flex;
align-items: center;
gap: 0.3rem;
padding: 0.35rem 0.8rem;
background: #fdfaf3;
border: 1px solid var(--accent);
border-radius: 50px;
font-size: 0.8rem;
font-weight: 600;
color: var(--primary);
}
.script-textarea-wrapper {
margin-bottom: 1.5rem;
}
.script-textarea-wrapper label {
display: block;
font-weight: 600;
font-size: 0.9rem;
color: var(--primary);
margin-bottom: 0.5rem;
}
.script-textarea {
width: 100%;
min-height: 200px;
padding: 1rem;
border: 2px solid var(--border-light);
border-radius: var(--radius);
font-family: 'Source Sans 3', sans-serif;
font-size: 0.95rem;
line-height: 1.7;
color: var(--text);
resize: vertical;
transition: border-color 0.2s;
box-sizing: border-box;
}
.script-textarea:focus {
outline: none;
border-color: var(--accent);
}
.script-word-count {
text-align: right;
font-size: 0.78rem;
color: var(--text-muted);
margin-top: 0.5rem;
}
.script-review-actions {
display: flex;
justify-content: center;
}
.photo-guidance {
margin-bottom: 1.25rem;
}
.photo-guidance-reel,
.photo-guidance-tour {
display: flex;
align-items: flex-start;
gap: 0.75rem;
padding: 1rem 1.25rem;
border-radius: var(--radius);
font-size: 0.88rem;
line-height: 1.5;
color: var(--text);
animation: fadeSlideIn 0.3s ease;
}
.photo-guidance-reel {
background: #f8f9fa;
border: 1px solid var(--border-light);
}
.photo-guidance-tour {
background: linear-gradient(135deg, #fdfaf3, #fef9ec);
border: 1px solid var(--accent);
}
.photo-guidance-icon {
font-size: 1.5rem;
line-height: 1;
flex-shrink: 0;
margin-top: 0.1rem;
}
.photo-guidance-hint {
display: block;
margin-top: 0.4rem;
font-size: 0.8rem;
color: var(--text-muted);
font-style: italic;
}
.photo-count-warning {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.6rem 1rem;
margin-top: 0.75rem;
background: #fff3cd;
border: 1px solid #ffc107;
border-radius: var(--radius);
font-size: 0.82rem;
color: #856404;
animation: fadeSlideIn 0.3s ease;
}
.photo-count-warning svg {
flex-shrink: 0;
color: #856404;
}
@media (max-width: 768px) {
.history-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
.color-pickers-row { flex-direction: column; gap: 1rem; }
.file-uploads-row { flex-direction: column; gap: 1rem; }
.template-actions { flex-direction: column; }
.btn-template-save, .btn-template-reset { width: 100%; text-align: center; }
.preview-phone { width: 150px; height: 270px; }
.header-nav { gap: 0.3rem; }
.header-nav-link { font-size: 0.75rem; padding: 0.3rem 0.6rem; }
.vo-toggle-group-3 { grid-template-columns: 1fr; }
.vo-toggle-group { grid-template-columns: 1fr; }
.script-review-card { margin: 1rem; padding: 1.25rem; }
.script-review-header { flex-direction: column; }
}
.loading-overlay {
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(135deg, #1a120b 0%, #2c1e12 30%, #3d2a17 60%, #1a120b 100%);
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
animation: loadingFadeIn 0.4s ease;
}
.loading-overlay::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: radial-gradient(ellipse at 50% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
pointer-events: none;
}
@keyframes loadingFadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.loading-content {
text-align: center;
max-width: 420px;
padding: 2rem;
position: relative;
z-index: 1;
}
.loading-logo {
font-family: 'Playfair Display', serif;
font-size: 2.4rem;
font-weight: 700;
color: #f5f0e8;
margin-bottom: 2.5rem;
letter-spacing: -0.5px;
}
.loading-logo span {
color: #c9a84c;
}
.loading-animation {
position: relative;
width: 130px;
height: 130px;
margin: 0 auto 2rem;
display: flex;
align-items: center;
justify-content: center;
}
.loading-house {
position: relative;
z-index: 2;
animation: loadingFloat 2.5s ease-in-out infinite;
}
@keyframes loadingFloat {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.loading-pulse-ring {
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: 100px;
height: 100px;
border: 2px solid rgba(201, 168, 76, 0.35);
border-radius: 50%;
animation: loadingPulse 2.2s ease-out infinite;
}
.loading-pulse-ring::after {
content: '';
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
border: 1px solid rgba(201, 168, 76, 0.15);
border-radius: 50%;
animation: loadingPulse 2.2s ease-out infinite 0.4s;
}
@keyframes loadingPulse {
0% { width: 80px; height: 80px; opacity: 1; }
100% { width: 150px; height: 150px; opacity: 0; }
}
.loading-status {
font-family: 'Source Sans 3', sans-serif;
font-size: 1.1rem;
font-weight: 600;
color: #f5f0e8;
margin-bottom: 2rem;
min-height: 1.5em;
transition: opacity 0.3s ease;
}
.loading-steps {
display: flex;
flex-direction: column;
gap: 0.75rem;
text-align: left;
margin-bottom: 1.5rem;
}
.loading-step {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.7rem 1rem;
border-radius: 12px;
background: rgba(201, 168, 76, 0.03);
border: 1px solid rgba(201, 168, 76, 0.08);
opacity: 0.35;
transition: all 0.4s ease;
}
.loading-step.active {
opacity: 1;
background: rgba(201, 168, 76, 0.1);
border-color: rgba(201, 168, 76, 0.35);
box-shadow: 0 0 20px rgba(201, 168, 76, 0.08);
}
.loading-step.done {
opacity: 0.7;
background: rgba(201, 168, 76, 0.06);
border-color: rgba(201, 168, 76, 0.15);
}
.loading-step-icon {
font-size: 1.2rem;
width: 28px;
text-align: center;
flex-shrink: 0;
}
.loading-step-text {
font-family: 'Source Sans 3', sans-serif;
font-size: 0.88rem;
color: rgba(245, 240, 232, 0.85);
flex: 1;
}
.loading-step-check {
font-size: 0.9rem;
color: #c9a84c;
opacity: 0;
transform: scale(0);
transition: all 0.3s ease;
}
.loading-step.done .loading-step-check {
opacity: 1;
transform: scale(1);
}
.loading-step.active .loading-step-icon {
animation: loadingBounce 0.6s ease infinite alternate;
}
@keyframes loadingBounce {
from { transform: scale(1); }
to { transform: scale(1.15); }
}
.loading-hint {
font-family: 'Source Sans 3', sans-serif;
font-size: 0.78rem;
color: rgba(201, 168, 76, 0.4);
margin-top: 0.5rem;
}
.wizard-immersive {
background: #0a0a0a;
color: #f5f5f7;
min-height: 100vh;
}
.wizard-immersive::before {
content: '';
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.04) 0%, transparent 70%);
pointer-events: none;
z-index: 0;
}
.wizard-immersive .header {
background: rgba(10,10,10,0.85);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255,255,255,0.06);
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
}
.wizard-immersive .header-nav-link {
color: rgba(255,255,255,0.6);
}
.wizard-immersive .header-nav-link:hover {
color: #f5f5f7;
background: rgba(255,255,255,0.08);
}
.wizard-immersive .container {
max-width: 100%;
padding: 0;
margin: 0;
}
.wizard-topbar {
position: fixed;
top: 58px;
left: 0; right: 0;
z-index: 99;
padding: 0.6rem 2rem;
background: rgba(10,10,10,0.7);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(255,255,255,0.04);
}
.wizard-topbar-inner {
max-width: 680px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 1rem;
}
.wizard-topbar-step {
font-size: 0.75rem;
color: var(--accent);
font-weight: 600;
letter-spacing: 0.05em;
white-space: nowrap;
font-family: 'Source Sans 3', sans-serif;
}
.wizard-topbar-title {
font-size: 0.8rem;
color: rgba(255,255,255,0.35);
font-weight: 500;
font-family: 'Source Sans 3', sans-serif;
}
.wizard-topbar-progress {
flex: 1;
height: 2px;
background: rgba(255,255,255,0.08);
border-radius: 2px;
overflow: hidden;
}
.wizard-topbar-fill {
height: 100%;
background: var(--accent);
border-radius: 2px;
transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
width: 0%;
}
.wizard-immersive .wizard-step {
display: none;
min-height: 100vh;
padding: 120px 1.5rem 80px;
}
.wizard-immersive .wizard-step.active {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
animation: wizardStepIn 0.5s cubic-bezier(0.16,1,0.3,1);
}
@keyframes wizardStepIn {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.wizard-immersive .form-section {
background: transparent;
border: none;
box-shadow: none;
border-radius: 0;
padding: 0;
max-width: 680px;
width: 100%;
margin: 0 auto;
}
.wizard-immersive .form-section::before {
display: none;
}
.wizard-immersive .form-section h2 {
font-size: 2.4rem;
color: #f5f5f7;
border-bottom: none;
padding-bottom: 0;
margin-bottom: 0;
text-align: center;
justify-content: center;
letter-spacing: -0.02em;
}
.step-hero {
text-align: center;
margin-bottom: 2.5rem;
}
.step-number {
font-family: 'Source Sans 3', sans-serif;
font-size: 0.8rem;
color: var(--accent);
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 0.75rem;
font-weight: 600;
}
.step-hero h2 {
font-family: 'Playfair Display', serif;
font-size: 2.6rem;
font-weight: 700;
color: #f5f5f7;
letter-spacing: -0.02em;
line-height: 1.15;
margin: 0 0 0.5rem;
border: none;
padding: 0;
}
.step-subtitle {
font-family: 'Source Sans 3', sans-serif;
font-size: 1.05rem;
color: rgba(255,255,255,0.4);
font-weight: 400;
margin: 0;
}
.wizard-immersive .form-group label {
font-size: 0.82rem;
font-weight: 500;
color: rgba(255,255,255,0.55);
text-transform: uppercase;
letter-spacing: 0.06em;
}
.wizard-immersive .form-group input,
.wizard-immersive .form-group select,
.wizard-immersive .form-group textarea {
padding: 0.95rem 1.1rem;
border: 1.5px solid rgba(255,255,255,0.1);
border-radius: 14px;
font-size: 1rem;
color: #f5f5f7;
background: rgba(255,255,255,0.05);
transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.wizard-immersive .form-group input:focus,
.wizard-immersive .form-group select:focus,
.wizard-immersive .form-group textarea:focus {
border-color: var(--accent);
background: rgba(255,255,255,0.07);
box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
outline: none;
}
.wizard-immersive .form-group input::placeholder,
.wizard-immersive .form-group textarea::placeholder {
color: rgba(255,255,255,0.22);
}
.wizard-immersive .form-group select option {
background: #1a1a1a;
color: #f5f5f7;
}
.wizard-immersive .form-grid {
gap: 1.4rem;
}
.wizard-immersive .price-input-wrapper {
border-color: rgba(255,255,255,0.1);
background: rgba(255,255,255,0.05);
border-radius: 14px;
}
.wizard-immersive .price-input-wrapper input {
border: none;
background: transparent;
}
.wizard-immersive .currency-badge {
background: rgba(201,168,76,0.15);
color: var(--accent);
border-color: rgba(255,255,255,0.08);
}
.wizard-immersive .amenities-grid {
grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
gap: 0.65rem;
}
.wizard-immersive .amenity-item {
border: 1.5px solid rgba(255,255,255,0.08);
border-radius: 50px;
padding: 0.6rem 1.1rem;
background: rgba(255,255,255,0.03);
color: rgba(255,255,255,0.6);
font-size: 0.85rem;
justify-content: center;
text-align: center;
transition: all 0.2s;
}
.wizard-immersive .amenity-item:hover {
background: rgba(201,168,76,0.06);
border-color: rgba(201,168,76,0.35);
color: rgba(255,255,255,0.8);
}
.wizard-immersive .amenity-item:has(input:checked) {
background: rgba(201,168,76,0.12);
border-color: var(--accent);
color: var(--accent);
font-weight: 500;
}
.wizard-immersive .amenity-check {
display: none;
}
.wizard-immersive .vo-toggle-btn {
border: 1.5px solid rgba(255,255,255,0.08);
background: rgba(255,255,255,0.03);
border-radius: 16px;
color: rgba(255,255,255,0.6);
}
.wizard-immersive .vo-toggle-btn:hover {
border-color: rgba(201,168,76,0.35);
background: rgba(201,168,76,0.05);
}
.wizard-immersive .vo-toggle-btn.active {
border-color: var(--accent);
background: rgba(201,168,76,0.08);
box-shadow: 0 0 0 1px var(--accent), 0 4px 20px rgba(201,168,76,0.12);
color: #f5f5f7;
}
.wizard-immersive .vo-toggle-label { color: inherit; }
.wizard-immersive .vo-toggle-desc { color: rgba(255,255,255,0.35); }
.wizard-immersive .vo-switch-label { color: rgba(255,255,255,0.8); }
.wizard-immersive .vo-section-divider { background: rgba(255,255,255,0.06); }
.wizard-immersive .vo-options { border-color: rgba(255,255,255,0.06); }
.wizard-immersive .photo-upload-area {
border: 2px dashed rgba(255,255,255,0.12);
background: rgba(255,255,255,0.02);
border-radius: 20px;
}
.wizard-immersive .photo-upload-area:hover {
border-color: var(--accent);
background: rgba(201,168,76,0.04);
}
.wizard-immersive .photo-upload-text { color: rgba(255,255,255,0.45); }
.wizard-immersive .photo-upload-text strong { color: rgba(255,255,255,0.7); }
.wizard-immersive .photo-upload-icon svg { stroke: rgba(255,255,255,0.25); }
.wizard-immersive .photo-section-subtitle { color: rgba(255,255,255,0.35); }
.wizard-immersive .cover-badge { background: var(--accent); color: #0a0a0a; }
.wizard-immersive .photo-guidance-reel,
.wizard-immersive .photo-guidance-tour {
background: rgba(255,255,255,0.03);
border-color: rgba(255,255,255,0.06);
color: rgba(255,255,255,0.6);
}
.wizard-immersive .photo-guidance-reel strong,
.wizard-immersive .photo-guidance-tour strong { color: rgba(255,255,255,0.85); }
.wizard-immersive .photo-count-warning {
background: rgba(239,68,68,0.08);
border-color: rgba(239,68,68,0.2);
color: #fca5a5;
}
.additional-formats-section {
margin-top: 1.5rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(255,255,255,0.08);
}
.wizard-immersive .photo-preview-item {
border-color: rgba(255,255,255,0.1);
background: rgba(255,255,255,0.05);
}
.wizard-immersive .photo-preview-item .rotate-btn,
.wizard-immersive .photo-preview-item .remove-btn {
background: rgba(0,0,0,0.7);
color: #f5f5f7;
}
.wizard-immersive .wizard-nav {
border-top: none;
margin-top: 2.5rem;
padding-top: 0;
justify-content: center;
gap: 1rem;
max-width: 680px;
width: 100%;
margin-left: auto;
margin-right: auto;
}
.wizard-immersive .wizard-nav.end-only {
justify-content: center;
}
.wizard-immersive .btn-wizard-next {
background: var(--accent);
color: #0a0a0a;
border: none;
padding: 0.95rem 2.8rem;
font-size: 0.95rem;
font-weight: 600;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
box-shadow: 0 4px 20px rgba(201,168,76,0.25);
letter-spacing: 0.02em;
}
.wizard-immersive .btn-wizard-next:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.wizard-immersive .btn-wizard-back {
background: transparent;
color: rgba(255,255,255,0.45);
border: 1.5px solid rgba(255,255,255,0.12);
padding: 0.95rem 2rem;
font-size: 0.9rem;
border-radius: 50px;
transition: all 0.2s;
}
.wizard-immersive .btn-wizard-back:hover {
color: #f5f5f7;
border-color: rgba(255,255,255,0.25);
}
.wizard-immersive .btn-submit {
background: linear-gradient(135deg, var(--accent), #d4b85a);
color: #0a0a0a;
font-size: 1rem;
padding: 1rem 3rem;
border-radius: 50px;
box-shadow: 0 4px 25px rgba(201,168,76,0.3);
border: none;
}
.wizard-immersive .btn-submit:hover {
transform: translateY(-2px);
box-shadow: 0 8px 35px rgba(201,168,76,0.4);
}
.wizard-immersive .form-group input.input-error,
.wizard-immersive .form-group select.input-error {
border-color: #ef4444;
box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}
.wizard-immersive .error-box {
background: rgba(239,68,68,0.1);
border-color: rgba(239,68,68,0.3);
color: #fca5a5;
max-width: 680px;
margin: 100px auto 0;
}
.wizard-immersive .submit-hint { color: rgba(255,255,255,0.3); }
.wizard-immersive .footer { color: rgba(255,255,255,0.15); background: transparent; border-top: 1px solid rgba(255,255,255,0.04); }
.wizard-immersive .required { color: var(--accent); }
.wizard-immersive .form-group .required { color: var(--accent); }
@media (max-width: 768px) {
.wizard-immersive .wizard-step { padding: 100px 0 60px; }
.wizard-immersive .form-section { padding: 0 1.25rem; }
.step-hero h2 { font-size: 1.9rem; }
.wizard-immersive .form-grid { grid-template-columns: 1fr; }
.wizard-immersive .amenities-grid { grid-template-columns: 1fr 1fr; }
.wizard-immersive .wizard-nav { flex-direction: column; gap: 0.75rem; padding: 0 1.25rem; }
.wizard-immersive .btn-wizard-next,
.wizard-immersive .btn-wizard-back,
.wizard-immersive .btn-submit { width: 100%; text-align: center; justify-content: center; }
.wizard-immersive .photo-sections { grid-template-columns: 1fr; }
.wizard-topbar { padding: 0.5rem 1rem; }
}
.loading-spinner-ring {
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: 110px;
height: 110px;
border-radius: 50%;
border: 2.5px solid transparent;
border-top-color: rgba(201, 168, 76, 0.8);
border-right-color: rgba(201, 168, 76, 0.3);
animation: loadingSpinnerRotate 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.loading-spinner-ring::before {
content: '';
position: absolute;
inset: 4px;
border-radius: 50%;
border: 2px solid transparent;
border-top-color: rgba(201, 168, 76, 0.4);
border-left-color: rgba(201, 168, 76, 0.15);
animation: loadingSpinnerRotate 1.8s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
}
@keyframes loadingSpinnerRotate {
0% { transform: translate(-50%, -50%) rotate(0deg); }
100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.loading-overlay {
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
.loading-dots {
display: flex;
gap: 6px;
justify-content: center;
margin-top: 0.75rem;
}
.loading-dots span {
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(201, 168, 76, 0.6);
animation: loadingDotPulse 1.4s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes loadingDotPulse {
0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
40% { transform: scale(1); opacity: 1; }
}
.loading-step {
transform: translateX(-12px);
opacity: 0;
transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.loading-step.visible {
transform: translateX(0);
opacity: 0.35;
}
.loading-step.active {
transform: translateX(0);
opacity: 1;
background: rgba(201, 168, 76, 0.1);
border-color: rgba(201, 168, 76, 0.35);
box-shadow: 0 0 20px rgba(201, 168, 76, 0.08);
}
.loading-step.done {
transform: translateX(0);
opacity: 0.7;
background: rgba(201, 168, 76, 0.06);
border-color: rgba(201, 168, 76, 0.15);
}
@media (max-width: 768px) {
html, body {
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
}
.header-inner {
padding: 0.65rem 0.75rem;
gap: 0.5rem;
}
.header-logo h1 {
font-size: 1.15rem;
}
.header-logo img {
height: 26px;
}
.header-nav {
gap: 0.25rem;
flex-wrap: wrap;
justify-content: flex-end;
}
.header-nav-link {
font-size: 0.72rem;
padding: 0.3rem 0.55rem;
border-radius: 6px;
}
.hero-banner {
padding: 1.5rem 1rem;
}
.hero-banner h2 {
font-size: 1.25rem;
}
.hero-banner p {
font-size: 0.82rem;
}
.container {
padding: 0 0.75rem;
margin-top: -1rem;
}
.form-section {
padding: 1.1rem;
border-radius: var(--radius);
}
.form-section h2 {
font-size: 1rem;
gap: 0.4rem;
margin-bottom: 1rem;
}
.section-icon {
width: 28px;
height: 28px;
font-size: 0.85rem;
}
.form-grid {
grid-template-columns: 1fr;
gap: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
padding: 0.75rem 0.85rem;
font-size: 16px;
min-height: 44px;
}
.amenities-grid {
grid-template-columns: 1fr 1fr;
}
.amenity-item {
min-height: 44px;
padding: 0.55rem 0.6rem;
font-size: 0.78rem;
}
.photo-sections {
grid-template-columns: 1fr;
}
.wizard-progress {
padding: 0.85rem;
border-radius: var(--radius);
}
.wizard-steps-nav {
gap: 0.25rem;
}
.wizard-step-label {
font-size: 0.58rem;
max-width: 60px;
word-wrap: break-word;
}
.wizard-step-circle {
width: 28px;
height: 28px;
font-size: 0.7rem;
}
.wizard-nav {
flex-direction: column;
gap: 0.65rem;
}
.btn-wizard-back,
.btn-wizard-next {
width: 100%;
text-align: center;
min-height: 44px;
display: flex;
align-items: center;
justify-content: center;
}
.results-hero {
padding: 1.75rem 0.75rem 1.5rem;
}
.results-hero-title {
font-size: 1.25rem;
}
.results-hero-subtitle {
font-size: 0.82rem;
}
.results-hero-chips {
gap: 0.3rem;
}
.hero-chip {
font-size: 0.65rem;
padding: 0.2rem 0.55rem;
}
.results-container {
padding: 0 0.75rem 1.5rem;
}
.media-grid {
grid-template-columns: 1fr 1fr;
gap: 0.75rem;
}
.media-card-preview {
min-height: 200px;
padding: 0.85rem;
}
.phone-frame--post {
max-width: 140px;
}
.phone-frame--story {
max-width: 110px;
}
.pdf-card {
flex-direction: column;
text-align: center;
gap: 0.85rem;
padding: 1.1rem;
}
.pdf-card-icon {
width: 50px;
height: 50px;
}
.btn-download-main {
padding: 0.6rem 1.5rem;
font-size: 0.82rem;
width: 100%;
justify-content: center;
}
.copy-card-header {
padding: 0.55rem 0.75rem;
flex-wrap: wrap;
gap: 0.4rem;
}
.copy-card-body {
padding: 0.7rem 0.75rem;
font-size: 0.8rem;
max-height: 160px;
}
.carousel-card-header {
padding: 0.75rem 1rem;
flex-wrap: wrap;
}
.carousel-slide-item {
width: 160px;
}
.section-header {
gap: 0.6rem;
margin-bottom: 1rem;
}
.section-icon {
width: 34px;
height: 34px;
font-size: 1rem;
}
.section-title {
font-size: 1rem;
}
.section-desc {
font-size: 0.78rem;
}
.results-bottom-actions {
margin-top: 1.5rem;
padding-top: 1rem;
}
.btn-new-listing {
width: 100%;
justify-content: center;
min-height: 44px;
}
.history-grid {
grid-template-columns: 1fr;
}
.template-editor-header h2 {
font-size: 1.35rem;
}
.template-editor-header p {
font-size: 0.85rem;
}
.variant-selector {
flex-direction: column;
}
.color-pickers-row {
flex-direction: column;
gap: 1rem;
}
.file-uploads-row {
flex-direction: column;
gap: 1rem;
}
.template-actions {
flex-direction: column;
}
.btn-template-save,
.btn-template-reset {
width: 100%;
text-align: center;
min-height: 44px;
}
.vo-toggle-group {
grid-template-columns: 1fr;
}
.vo-toggle-group-3 {
grid-template-columns: 1fr;
}
.vo-toggle-btn {
min-height: 44px;
}
.script-review-card {
margin: 1rem 0.5rem;
padding: 1.1rem;
}
.script-review-header {
flex-direction: column;
}
.loading-content {
padding: 1.5rem 1rem;
max-width: 100%;
}
.loading-logo {
font-size: 1.8rem;
margin-bottom: 1.5rem;
}
.loading-animation {
width: 100px;
height: 100px;
margin-bottom: 1.5rem;
}
.loading-house svg {
width: 60px;
height: 60px;
}
.loading-status {
font-size: 0.95rem;
}
.loading-step {
padding: 0.55rem 0.75rem;
}
.loading-step-text {
font-size: 0.8rem;
}
.table-responsive {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
table {
min-width: 600px;
}
.btn-submit {
padding: 0.85rem 2.5rem;
font-size: 0.95rem;
min-height: 48px;
width: 100%;
max-width: 400px;
}
.footer {
padding: 1.5rem 0.75rem;
}
.btn-whatsapp {
min-height: 44px;
display: inline-flex;
align-items: center;
}
}
@media (max-width: 480px) {
.header-inner {
padding: 0.5rem 0.6rem;
}
.header-logo h1 {
font-size: 1rem;
}
.header-logo img {
height: 22px;
}
.header-logo {
gap: 0.45rem;
}
.header-nav-link {
font-size: 0.65rem;
padding: 0.25rem 0.4rem;
border-width: 0;
background: rgba(255,255,255,0.06);
}
.hero-banner {
padding: 1.2rem 0.75rem;
}
.hero-banner h2 {
font-size: 1.1rem;
}
.container {
padding: 0 0.5rem;
}
.form-section {
padding: 0.85rem;
margin-bottom: 0.85rem;
}
.form-section h2 {
font-size: 0.92rem;
margin-bottom: 0.85rem;
padding-bottom: 0.6rem;
}
.amenities-grid {
grid-template-columns: 1fr;
}
.media-grid {
grid-template-columns: 1fr;
}
.media-card-preview {
min-height: 220px;
}
.carousel-card-header {
flex-direction: column;
align-items: flex-start;
gap: 0.5rem;
}
.carousel-slide-item {
width: 140px;
}
.copy-card-label {
font-size: 0.75rem;
}
.btn-copy {
font-size: 0.65rem;
padding: 0.25rem 0.65rem;
}
.wizard-step-label {
font-size: 0.5rem;
max-width: 50px;
}
.wizard-progress {
padding: 0.7rem 0.5rem;
}
.results-hero {
padding: 1.25rem 0.6rem 1rem;
}
.results-hero-title {
font-size: 1.1rem;
}
.results-hero-badge {
width: 42px;
height: 42px;
}
.loading-logo {
font-size: 1.5rem;
margin-bottom: 1.25rem;
}
.loading-animation {
width: 80px;
height: 80px;
margin-bottom: 1.25rem;
}
.loading-house svg {
width: 48px;
height: 48px;
}
.loading-spinner-ring {
width: 85px;
height: 85px;
}
.loading-status {
font-size: 0.85rem;
}
.loading-step {
padding: 0.45rem 0.6rem;
gap: 0.5rem;
}
.loading-step-icon {
font-size: 1rem;
width: 24px;
}
.loading-step-text {
font-size: 0.75rem;
}
.loading-hint {
font-size: 0.7rem;
}
.history-card-body {
padding: 0.75rem 1rem;
}
.history-card-actions {
flex-wrap: wrap;
}
.pdf-card {
padding: 0.85rem;
}
.pdf-card-info h4 {
font-size: 0.85rem;
}
.pdf-card-info p {
font-size: 0.75rem;
}
.section-header {
gap: 0.5rem;
}
.section-title {
font-size: 0.92rem;
}
.step-hero h2 {
font-size: 1.5rem;
}
.step-subtitle {
font-size: 0.88rem;
}
.vo-toggle-btn {
padding: 0.75rem 0.5rem;
}
.vo-toggle-icon {
font-size: 1.2rem;
}
.vo-toggle-label {
font-size: 0.82rem;
}
}