/* ===================================================
   IRIS HORIZON - ESTILOS DA PÁGINA DE PROJETOS (projetos.css)
   =================================================== */

.page-projetos {
    background: 
        radial-gradient(ellipse 90% 60% at 50% -10%, rgba(0, 255, 136, 0.09) 0%, transparent 70%),
        radial-gradient(ellipse 70% 45% at 85% 25%, rgba(0, 255, 136, 0.07) 0%, transparent 65%),
        radial-gradient(ellipse 75% 50% at 15% 65%, rgba(0, 255, 136, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 90% 50% at 50% 100%, rgba(0, 255, 136, 0.06) 0%, transparent 70%),
        #020403;
    min-height: 100vh;
    color: var(--text-main);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.projetos-main {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* --- 1. Projects Hero Section --- */
.projects-hero {
    padding-top: 150px;
    padding-bottom: 50px;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.projects-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--neon-green);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
}

.projects-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

.projects-hero-title .neon-accent {
    color: var(--neon-green);
    text-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}

.projects-hero-subtitle {
    max-width: 760px;
    margin: 0 auto 40px;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: #b0b8b3;
    line-height: 1.7;
}

/* Project Stats Row */
.projects-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 950px;
    margin: 0 auto 50px;
}

.stat-card {
    background: rgba(6, 17, 11, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.18);
    border-radius: var(--radius-md);
    padding: 20px 15px;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 136, 0.45);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.15);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--neon-green);
    line-height: 1.2;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
}

.stat-label {
    font-size: 0.85rem;
    color: #92a097;
    margin-top: 6px;
    font-weight: 500;
}

/* Filter Tabs */
.projects-filter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.filter-tab {
    background: rgba(6, 17, 11, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: #cad9d0;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-tab:hover {
    color: var(--neon-green);
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: var(--neon-green);
    color: #030504;
    border-color: var(--neon-green);
    font-weight: 700;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.45);
}

/* --- 2. Featured Projects Grid & Cards --- */
.projects-grid-section {
    padding: 30px 0 80px;
}

.projects-cards-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.project-featured-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, rgba(6, 18, 12, 0.8) 0%, rgba(2, 6, 4, 0.9) 100%);
    border: 1px solid rgba(0, 255, 136, 0.22);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), inset 0 0 25px rgba(0, 255, 136, 0.03);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.project-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    opacity: 0.5;
}

.project-featured-card:hover {
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 25px 60px rgba(0, 255, 136, 0.16), inset 0 0 30px rgba(0, 255, 136, 0.06);
    transform: translateY(-4px);
}

/* Reverse Layout for alternating flow */
.project-featured-card.reverse-layout {
    grid-template-columns: 0.9fr 1.1fr;
}

.project-featured-card.reverse-layout .project-visual-col {
    order: 2;
}

.project-featured-card.reverse-layout .project-info-col {
    order: 1;
}

/* Mockup Frame & Image */
.project-visual-col {
    position: relative;
}

.project-mockup-frame {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(3, 10, 6, 0.85);
    border: 1px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 255, 136, 0.1);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.project-featured-card:hover .project-mockup-frame {
    border-color: var(--neon-green);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 255, 136, 0.25);
}

.project-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.project-mockup-frame:hover .project-img {
    transform: scale(1.02);
}

.btn-expand-view {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(3, 8, 5, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.6);
    color: var(--neon-green);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.project-mockup-frame:hover .btn-expand-view {
    opacity: 1;
    transform: translateY(0);
}

.btn-expand-view:hover {
    background: var(--neon-green);
    color: #030504;
    box-shadow: 0 0 15px var(--neon-green);
}

/* Info Column */
.project-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--neon-green);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.project-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.project-desc {
    color: #a5b3aa;
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 22px;
}

/* Metric Chips */
.project-metrics-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.metric-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    font-size: 0.82rem;
    color: #cad9d0;
}

.metric-chip strong {
    color: #ffffff;
}

/* Tech Tags */
.project-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    padding: 4px 12px;
    font-size: 0.78rem;
    color: #8fa095;
    font-weight: 500;
}

/* Actions */
.project-card-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-project-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--neon-green);
    color: #020403;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    transition: var(--transition-smooth);
}

.btn-project-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.7);
    color: #000000;
}

.btn-project-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #e0ece5;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-project-secondary:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.08);
}

/* --- 3. Overview Banner Section (Matrix Banner) --- */
.projects-overview-banner-section {
    padding: 40px 0 80px;
}

.overview-banner-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, rgba(8, 24, 15, 0.9) 0%, rgba(2, 5, 3, 0.95) 100%);
    border: 1px solid rgba(0, 255, 136, 0.35);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 255, 136, 0.15);
    position: relative;
    overflow: hidden;
}

.overview-banner-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(0, 255, 136, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.neon-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: var(--neon-green);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.overview-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 18px;
}

.overview-banner-desc {
    color: #b0beba;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.overview-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #e2ede7;
}

.banner-showcase-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    transition: var(--transition-smooth);
}

.banner-showcase-img:hover {
    transform: scale(1.02);
}

/* --- 4. Process Section --- */
.process-section {
    padding: 60px 0 90px;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.step-card {
    background: rgba(6, 17, 11, 0.7);
    border: 1px solid rgba(0, 255, 136, 0.18);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition-smooth);
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.14);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--neon-green);
    margin-bottom: 16px;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.88rem;
    color: #9db0a5;
    line-height: 1.6;
}

/* --- 5. Project Modals --- */
.project-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.project-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #07190f 0%, #030805 100%);
    border: 1px solid var(--neon-green);
    border-radius: var(--radius-xl);
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 255, 136, 0.3);
    animation: modalAppear 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--neon-green);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 35px;
    align-items: center;
}

.modal-media {
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-lg);
    padding: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.modal-img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.modal-category {
    color: var(--neon-green);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 8px 0 16px;
}

.modal-text {
    color: #aab8af;
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.modal-tech-list h4 {
    font-size: 0.88rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.tech-pills span {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #d6e8dd;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
}

.btn-modal-cta {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
}

/* --- Responsividade Completa e Otimizada para Mobile --- */

/* Menu Hamburger Animação para "X" na página de projetos */
.mobile-menu-toggle {
    position: relative;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle .hamburger-bar {
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .section-container {
        padding: 0 20px;
    }

    .project-featured-card {
        gap: 35px;
        padding: 32px;
    }

    .projects-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 16px 20px;
    }

    .site-header.scrolled {
        padding: 10px 14px;
    }

    .site-header.scrolled .header-container {
        padding: 6px 18px;
    }

    .logo-img {
        height: 38px;
        max-width: 160px;
    }

    .main-nav {
        display: none;
    }

    .header-actions .btn-whatsapp {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        justify-content: space-around;
        width: 32px;
        height: 22px;
    }

    /* Mobile Drawer */
    .mobile-nav-drawer {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: rgba(3, 10, 6, 0.97);
        backdrop-filter: blur(28px) saturate(190%);
        -webkit-backdrop-filter: blur(28px) saturate(190%);
        padding: 100px 28px 40px;
        z-index: 999;
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.85);
        border-left: 1px solid rgba(0, 255, 136, 0.28);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-nav-drawer.active {
        right: 0;
    }

    .mobile-nav-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 26px;
        margin-bottom: auto;
    }

    .mobile-nav-link {
        color: #ffffff;
        font-size: 1.35rem;
        font-weight: 600;
        text-decoration: none;
        text-transform: lowercase;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: var(--transition-fast);
        padding: 6px 0;
    }

    .mobile-nav-link.active,
    .mobile-nav-link:hover {
        color: var(--neon-green);
        padding-left: 10px;
        text-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    }

    .btn-mobile-cta {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 1rem;
        font-weight: 700;
        margin-top: 20px;
    }

    /* Hero */
    .projects-hero {
        padding-top: 125px;
        padding-bottom: 35px;
    }

    .projects-hero-title {
        font-size: clamp(2rem, 7.5vw, 2.7rem);
        line-height: 1.15;
    }

    .projects-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    /* Filter Tabs Scrollable */
    .projects-filter-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 4px 10px 14px;
        gap: 8px;
        scrollbar-width: none;
    }

    .projects-filter-wrapper::-webkit-scrollbar {
        display: none;
    }

    .filter-tab {
        flex-shrink: 0;
        padding: 9px 18px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* Cards */
    .projects-grid-section {
        padding: 20px 0 60px;
    }

    .projects-cards-list {
        gap: 40px;
    }

    .project-featured-card,
    .project-featured-card.reverse-layout {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 26px 20px;
        border-radius: 18px;
    }

    .project-featured-card.reverse-layout .project-visual-col {
        order: 1;
    }

    .project-featured-card.reverse-layout .project-info-col {
        order: 2;
    }

    .project-title {
        font-size: 1.45rem;
    }

    .project-desc {
        font-size: 0.92rem;
    }

    .project-card-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-project-cta,
    .btn-project-secondary {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        font-size: 0.92rem;
    }

    /* Overview Banner */
    .overview-banner-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px 22px;
        border-radius: 18px;
    }

    .overview-banner-title {
        font-size: 1.45rem;
    }

    .overview-banner-text .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    /* Steps */
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .step-card {
        padding: 26px 22px;
    }

    /* CTA Section */
    .cta-box {
        padding: 45px 22px;
    }

    .cta-title {
        font-size: 1.55rem;
    }

    .btn-cta-large {
        width: 100%;
        justify-content: center;
    }

    /* Modals */
    .modal-content {
        padding: 30px 20px 24px;
        width: 92%;
        max-height: 88vh;
        border-radius: 18px;
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .modal-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 12px 14px;
    }

    .site-header.scrolled {
        padding: 8px 10px;
    }

    .site-header.scrolled .header-container {
        padding: 5px 14px;
    }

    .logo-img {
        height: 32px;
        max-width: 135px;
    }

    .projects-hero {
        padding-top: 105px;
        padding-bottom: 25px;
    }

    .projects-hero-title {
        font-size: 1.85rem;
        line-height: 1.18;
    }

    .projects-hero-subtitle {
        font-size: 0.92rem;
    }

    .project-featured-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .project-title {
        font-size: 1.3rem;
    }

    .project-desc {
        font-size: 0.88rem;
    }

    .overview-banner-card {
        padding: 26px 16px;
    }

    .overview-banner-title {
        font-size: 1.3rem;
    }

    .step-card {
        padding: 20px 16px;
    }

    .step-num {
        font-size: 1.6rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .modal-content {
        padding: 24px 16px 20px;
        width: 95%;
    }

    .modal-title {
        font-size: 1.25rem;
    }
}

