/* ============================================
   FLEXAGENDA - styles.css
   Design baseado no layout FlexAgenda
   ============================================ */

/* === RESET & VARIABLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #5C7C6B;
    --primary-dark: #4A6558;
    --primary-light: #E8F0EC;
    --accent: #C9A87C;
    --accent-light: #F5EDE3;
    --bg: #F5F3F0;
    --card-bg: #FFFFFF;
    --text: #2D2D2D;
    --text-light: #7A7A7A;
    --border: #E8E5E1;
    --danger: #D4574E;
    --success: #5C7C6B;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.10);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* === BASE === */
body {
    font-family: var(--font-family);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: 440px;
    background: var(--bg);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* === TOP BAR === */
.topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
}

.topbar.has-border {
    border-bottom-color: var(--border);
}

.topbar-back {
    position: absolute;
    left: 16px;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text);
    padding: 4px 8px;
    display: none;
    line-height: 1;
}

.topbar-back.visible {
    display: block;
}

.topbar-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
}

/* === HERO / LOGIN SECTION === */
.hero-section {
    text-align: center;
    padding: 10px 30px 30px;
}

.hero-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    display: block;
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--accent), #D4B896);
}

.hero-logo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--accent), #D4B896);
    color: white;
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

/* === FORMS === */
.form-group {
    margin-bottom: 14px;
    padding: 0 24px;
}

.form-input {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-family);
    background: var(--card-bg);
    color: var(--text);
    transition: border-color 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-input::placeholder {
    color: #B0ADA9;
}

/* Phone input with flag */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0 18px;
    box-shadow: var(--shadow-sm);
}

.phone-flag {
    font-size: 1.2rem;
    margin-right: 8px;
    flex-shrink: 0;
}

.phone-prefix {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-right: 10px;
    flex-shrink: 0;
    font-weight: 500;
}

.phone-input-wrapper .form-input {
    border: none;
    box-shadow: none;
    padding: 16px 0;
}

.phone-input-wrapper .form-input:focus {
    border: none;
}

/* === BUTTONS === */
.btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary);
    color: white;
    margin: 20px 24px 0;
    width: calc(100% - 48px);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    margin: 20px 24px 0;
    width: calc(100% - 48px);
}

.btn-outline:hover {
    background: var(--card-bg);
}

.btn-group {
    display: flex;
    gap: 12px;
    padding: 24px 24px 0;
}

.btn-group .btn {
    flex: 1;
    margin: 0;
    width: auto;
    letter-spacing: 0;
    text-transform: none;
}

/* === TERMS TEXT === */
.terms-text {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    padding: 14px 30px 0;
    line-height: 1.5;
}

.terms-text a {
    color: var(--text);
    text-decoration: underline;
}

/* === CONTENT AREA === */
.content {
    padding: 0;
    min-height: 400px;
}

/* === STEPS === */
.step {
    display: none;
    animation: fadeSlideIn 0.3s ease;
}

.step.active {
    display: block;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === STEP HEADER (used in most steps) === */
.step-header {
    padding: 8px 24px 20px;
    text-align: center;
}

.step-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.step-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === MENU CHOICE CARDS (Step 2 - Choose path) === */
.choice-list {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.choice-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.choice-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.choice-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.choice-card-icon img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.choice-card-info {
    flex: 1;
}

.choice-card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.choice-card-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* === SERVICE CARDS (with image) === */
.service-list {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.service-card-img {
    width: 100px;
    height: 90px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--accent-light);
}

.service-card-img-placeholder {
    width: 100px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--accent-light);
    flex-shrink: 0;
}

.service-card-info {
    flex: 1;
    padding: 14px 14px 14px 0;
}

.service-card-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 3px;
}

.service-card-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* === PROFESSIONAL CARDS (with photo) === */
.prof-list {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prof-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}

.prof-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.prof-card-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--accent-light);
}

.prof-card-img-placeholder {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    flex-shrink: 0;
    color: var(--primary);
}

.prof-card-info {
    flex: 1;
    padding: 14px 14px 14px 0;
}

.prof-card-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 3px;
}

.prof-card-desc {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* === SUB-SERVICE / ITEM LIST === */
.item-list {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.item-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.item-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: var(--primary-light);
    flex-shrink: 0;
}

.item-card-info {
    flex: 1;
}

.item-card-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.item-card-meta {
    font-size: 0.8rem;
    color: var(--text-light);
}

.item-card-price {
    font-size: 0.82rem;
    color: var(--primary-dark);
    margin-top: 2px;
}

/* === SUMMARY STRIP (shown at top of date/time steps) === */
.summary-strip {
    margin: 0 24px 20px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}

.summary-strip-service {
    padding: 14px 18px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.summary-strip-service-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: var(--card-bg);
    flex-shrink: 0;
}

.summary-strip-service-info .summary-strip-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.summary-strip-service-info .summary-strip-detail {
    font-size: 0.78rem;
    color: var(--text-light);
}

.summary-strip-prof {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
}

.summary-strip-prof-img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--accent-light);
}

.summary-strip-prof-img-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: var(--accent-light);
    color: var(--primary);
}

.summary-strip-prof-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.summary-strip-datetime {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-top: 1px solid var(--border);
}

.summary-strip-datetime-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: var(--primary-light);
    flex-shrink: 0;
}

.summary-strip-datetime-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* === DATE SELECTION === */
.date-section-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0 24px 6px;
}

.date-section-subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0 24px 18px;
}

.date-list {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.date-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.date-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.date-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.date-card.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.date-card.disabled:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--border);
}

.date-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    flex-shrink: 0;
}

.date-card-icon img {
    width: 24px;
    height: 24px;
}

.date-card-text {
    flex: 1;
}

.date-card-main {
    font-weight: 700;
    font-size: 0.95rem;
}

.date-card-sub {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* === TIME SELECTION === */
.time-section-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0 24px 6px;
}

.time-section-subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0 24px 18px;
}

.time-list {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.time-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.time-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.time-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.time-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    flex-shrink: 0;
}

.time-card-text {
    font-weight: 600;
    font-size: 1rem;
}

/* === CONFIRMATION STEP === */
.confirm-section {
    padding: 0 24px;
}

.confirm-whatsapp-title {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 20px 0 6px;
}

.confirm-whatsapp-subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 14px;
}

.confirm-phone-display {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 4px;
}

.confirm-phone-flag {
    font-size: 1.2rem;
}

.confirm-phone-prefix {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.confirm-phone-number {
    font-size: 0.95rem;
    font-weight: 500;
}

/* === SUCCESS STEP === */
.success-section {
    text-align: center;
    padding: 30px 24px;
}

.success-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 20px 0 8px;
}

.success-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.5;
}

/* === MENU GRID === */
.menu-section {
    padding: 0 24px;
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.user-welcome-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.user-welcome-info {
    flex: 1;
    min-width: 0;
}

.user-welcome-name {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-welcome-phone {
    font-size: 0.8rem;
    color: var(--text-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.menu-card {
    padding: 24px 14px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.menu-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.menu-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.menu-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-logout {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border);
    margin-top: 20px;
    font-size: 0.85rem;
    letter-spacing: 0;
    text-transform: none;
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: var(--font-family);
    transition: all 0.2s ease;
}

.btn-logout:hover {
    border-color: var(--danger);
    color: var(--danger);
}

/* === APPOINTMENTS LIST === */
.appointments-section {
    padding: 0 24px;
}

.appointments-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.appointment-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.appointment-date {
    text-align: center;
    min-width: 54px;
}

.appointment-date-day {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.appointment-date-month {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 500;
}

.appointment-info {
    flex: 1;
}

.appointment-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.appointment-time {
    font-size: 0.8rem;
    color: var(--text-light);
}

.appointment-actions {
    display: flex;
    gap: 8px;
}

.btn-small {
    padding: 8px 14px;
    font-size: 0.8rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-cancel-small {
    background: var(--danger);
    color: white;
}

.btn-cancel-small:hover {
    opacity: 0.9;
}

/* === SUPPORT / TEXTAREA === */
.support-section {
    padding: 0 24px;
}

.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-family);
    resize: vertical;
    min-height: 120px;
    background: var(--card-bg);
    box-shadow: var(--shadow-sm);
    color: var(--text);
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* === LOADING === */
.loading-overlay {
    display: none;
    text-align: center;
    padding: 50px 20px;
}

.loading-overlay.active {
    display: block;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === MESSAGES === */
.message-toast {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin: 0 24px 16px;
    display: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.message-toast.active {
    display: block;
}

.message-success {
    background: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid var(--primary);
}

.message-error {
    background: #FDE8E8;
    color: var(--danger);
    border: 1px solid var(--danger);
}

/* === EMPTY STATE === */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 14px;
}

/* === MAP SECTION === */
.map-section {
    padding: 30px 24px 0;
}

.map-section-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 220px;
    border: none;
    display: block;
}

/* === FOOTER === */
.footer {
    text-align: center;
    padding: 30px 24px 24px;
    color: var(--text-light);
    font-size: 0.75rem;
}

.footer-brand {
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.footer-brand strong {
    color: var(--text);
}

.footer-legal {
    margin-top: 10px;
    line-height: 1.5;
}

/* === PROGRESS BAR === */
.progress-bar {
    display: none;
    padding: 0 24px 12px;
    gap: 6px;
}

.progress-bar.visible {
    display: flex;
}

.progress-step {
    flex: 1;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: var(--primary);
}

.progress-step.completed {
    background: var(--primary-dark);
}

/* === RESPONSIVE === */
@media (min-width: 480px) {
    body {
        padding: 0;
    }
    
    .container {
        box-shadow: var(--shadow-lg);
        min-height: 100vh;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 1.15rem;
    }
}

/* === UTILITY === */
.hidden {
    display: none !important;
}

.mt-16 {
    margin-top: 16px;
}

.mb-20 {
    margin-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}