* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-cream: #f4f1ed;
    --color-beige: #a98f78;
    --color-brown: #8c6850;
    --color-green: #545845;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: #333;
    background-color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    background-color: rgba(244, 241, 237, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(169, 143, 120, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    width: 250px;
    height: auto;
}


nav a {
    margin-left: 32px;
    text-decoration: none;
    color: var(--color-brown);
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    font-weight: 300;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--color-beige);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    background: #3a3a3a;
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
}

.hero-content {
    padding-right: 60px;
}

.hero-label {
    display: inline-block;
    padding: 8px 24px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-cream);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 500;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 72px;
    line-height: 1.1;
    color: var(--color-cream);
    font-weight: 400;
    margin-bottom: 14px;
}

.hero h2 {
    font-family: var(--font-display);
    font-size: 42px;
    line-height: 1.3;
    color: var(--color-cream);
    font-weight: 300;
    margin-bottom: 32px;
}

.hero p {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-cream);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    object-fit: cover;
    object-position: center right;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-overlay {    
    background: rgba(244, 241, 237, 0.95);
    padding: 20px 30px 25px;
    max-width: 450px;
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.hero-overlay h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-brown);
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 400;
}

.hero-overlay p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 48px;
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--color-beige);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 104, 80, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-cream);
    border: 2px solid var(--color-cream);
}

.btn-secondary:hover {
    border-color: var(--color-brown);
    background-color: var(--color-brown);
    color: white;
    transform: translateY(-2px);
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--color-brown);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.section-title h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--color-beige);
    margin-bottom: 48px;
    font-weight: 300;
}

/* Problem Section */
.problem {
    background-color: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.problem-image {
    height: 805px;
    overflow: hidden;
    position: relative;
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-content {
    padding-right: 40px;
}

.problem-list {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.problem-item {
    padding: 28px;
    background-color: var(--color-cream);
    border-left: 4px solid var(--color-beige);
    transition: all 0.3s;
}

.problem-item:hover {
    transform: translateX(8px);
    border-left-color: var(--color-brown);
}

.problem-item h4 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-brown);
    margin-bottom: 8px;
}

.problem-quote {
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    color: var(--color-cream);
    margin-top: 28px;
    padding: 32px;
    background-color: rgba(169, 143, 120, 0.7);
    border-left: 4px solid var(--color-beige);
}

/* Differential Section */
.differential {
    background: linear-gradient(135deg, var(--color-green) 0%, #3d3f33 100%);
    color: white;
    position: relative;
}

.differential .section-title h2 {
    color: var(--color-cream);
}

.differential::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('/static/img/bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    mix-blend-mode: overlay;
}

.differential .container {
    position: relative;
    z-index: 1;
}

.differential .section-title,
.differential .section-subtitle {
    color: white;
}

.differential-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.differential-card {
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.differential-card:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
}

.differential-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-beige);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    border-radius: 50%;
}

.differential-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.differential-card h4 {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--color-cream);
}

.differential-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Priority Section */
.priority {
    background: linear-gradient(to bottom, var(--color-cream) 0%, white 100%);
}

.priority-items {
    display: grid;
    gap: 20px;
    margin-top: 60px;
}

.priority-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px;
    background: white;
    border: 1px solid rgba(169, 143, 120, 0.2);
    transition: all 0.3s;
}

.priority-item:hover {
    box-shadow: 0 12px 40px rgba(140, 104, 80, 0.15);
    transform: translateY(-4px);
}

.priority-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-beige) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border-radius: 50%;
}

.priority-content h3 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--color-brown);
    margin-bottom: 12px;
}

.priority-content h4 {
    font-size: 20px;
    color: var(--color-beige);
    margin-bottom: 20px;
    font-weight: 500;
}

.priority-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* Philosophy Section */
.philosophy {
    background: url('/static/img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 241, 237, 0.97) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.philosophy .container {
    position: relative;
    z-index: 1;
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy blockquote {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1.5;
    color: var(--color-brown);
    margin: 60px 0;
    font-style: italic;
    font-weight: 300;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.philosophy-point {
    padding: 32px;
    background: white;
    border-top: 4px solid var(--color-beige);
}

.philosophy-point h4 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-brown);
    margin-bottom: 12px;
}

/* Procedures Section */
.procedures {
    background-color: white;
}

.procedures-intro {
    max-width: 800px;
    margin-bottom: 60px;
}

.procedure-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.procedure-item {
    padding: 0;
    border: 2px solid var(--color-beige);
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.procedure-item:hover {
    background-color: var(--color-cream);
    transform: translateY(-12px);
    border-color: var(--color-brown);
}

.procedure-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.procedure-header h4 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-brown);
}

.procedure-toggle {
    font-size: 32px;
    color: var(--color-beige);
    font-weight: 300;
}

.procedure-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
    margin-top: 20px;
    padding-top: 0;
    border-top: 2px solid transparent;
}

.procedure-item.active .procedure-description {
    max-height: 500px;
    padding-top: 20px;
    border-top-color: var(--color-beige);
}

.procedure-description p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* Target Section */
.target {
    background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-beige) 100%);
    color: white;
}

.target .section-title *,
.target .section-subtitle {
    color: white;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.target-card {
    padding: 48px;
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.target-card:hover {
    background-color: rgba(255, 255, 255, 0.18);
    transform: scale(1.03);
}

.target-card::before {
    content: '✓';
    display: block;
    font-size: 40px;
    color: var(--color-cream);
    margin-bottom: 20px;
}

.target-card p {
    font-size: 20px;
    line-height: 1.6;
}

.target-footer {
    margin-top: 60px;
    padding: 48px;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.target-footer p {
    font-size: 18px;
    line-height: 1.8;
}

.target-footer p:last-child {
    font-size: 24px;
    font-weight: 600;
    margin-top: 16px;
}

/* About Section */
.about {
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--color-brown);
    margin-bottom: 0;
    font-weight: 400;
}

.about-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 32px;
}

.about-values {
    display: grid;
    gap: 32px;
    margin-top: 48px;
}

.about-value {
    padding: 32px;
    background: white;
    border-left: 4px solid var(--color-beige);
}

.about-value h4 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-brown);
    margin-bottom: 12px;
}

.about-value p {
    margin: 0;
    font-size: 16px;
}

.about-quote p {
    font-family: var(--font-display);
    font-size: 28px;
    font-style: italic;
    color: var(--color-brown);
    margin-top: 48px;
    padding: 32px;
    background: rgba(169, 143, 120, 0.1);
}

/* Consultation Section */
.consultation {
    background: linear-gradient(135deg, var(--color-green) 0%, #2d2f26 100%);
    color: white;
    text-align: center;
    position: relative;
}

.consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/img/bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.consultation .container {
    position: relative;
    z-index: 1;
}

.consultation .section-title *,
.consultation .section-subtitle {
    color: white;
}

.consultation-content {
    max-width: 800px;
    margin: 0 auto;
}

.consultation-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 48px 0;
    text-align: left;
}

.consultation-point {
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-left: 3px solid var(--color-beige);
}

.consultation-point h4 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 8px;
}

/* FAQ Section */
.faq {
    background-color: white;
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 24px;
    padding: 36px;
    border: 2px solid var(--color-beige);
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.faq-item:hover {
    background-color: var(--color-cream);
    border-color: var(--color-brown);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-brown);
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 28px;
    color: var(--color-beige);
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
    margin-top: 20px;
    padding-top: 0;
    border-top: 2px solid transparent;
}

.faq-item .faq-answer.is-open {
    max-height: 500px;
    padding-top: 20px;
    border-top-color: var(--color-beige);
}

.faq-answer p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--color-brown) 0%, #6d5440 100%);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: block;
    width: 300px;
    height: auto;
    margin-bottom: 24px;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 24px;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s;
    font-size: 15px;
}

.footer-section a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    margin: 0;
}

.social-links a:hover {
    background: white;
    color: var(--color-brown);
    transform: scale(1.1) translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 0;
    }

    .hero-img {
        opacity: 0.25;
    }

    .hero-content {
        padding-right: 0;
    }

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

    .problem-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .differential-grid,
    .target-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 52px;
    }

    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .procedure-list {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 150px;
    }

    .hero-img {
        object-position: 80% center;
    }

    nav {
        display: none;
    }

    .header-content {
        justify-content: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 36px;
    }

    .philosophy-points {
        grid-template-columns: 1fr;
    }

    .priority-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .priority-icon {
        margin: 0 auto;
    }

    .consultation-points {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

html {
    scroll-behavior: smooth;
}

#whatsapp-btn {
    display: block;
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 60px;
    z-index: 3
}

#whatsapp-btn img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .25));
    transition: transform .3s ease-in-out
}

#whatsapp-btn:hover img {
    transform: scale(1.1)
}


/* ── Modal overlay ─────────────────────────────────────────────────── */
.proc-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.proc-modal.is-open {
    display: flex;
}

/* Backdrop semitransparente */
.proc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

/* Caixa do modal */
.proc-modal-box {
    position: relative;
    z-index: 1;
    background: #fff;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 24px 64px rgba(0,0,0,.25);
    animation: modalIn .22s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(16px) scale(.97); }
    to   { opacity: 1; transform: none; }
}

/* Botão fechar */
.proc-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 12px 12px 0 0;
    z-index: 2;
    background: rgba(255,255,255,.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: var(--color-brown, #7a5c3a);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.proc-modal-close:hover { background: var(--color-cream, #f5f0e8); }

/* Imagem do modal */
.proc-modal-img {
    clear: both;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.proc-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Corpo do modal */
.proc-modal-body {
    padding: 28px 32px 36px;
}

.proc-modal-title {
    font-family: var(--font-display, serif);
    font-size: 26px;
    color: var(--color-brown, #7a5c3a);
    margin: 0 0 16px;
    line-height: 1.25;
}

.proc-modal-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

/* FAQ interno */
.proc-modal-faq h5 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-brown, #7a5c3a);
    opacity: .65;
    margin: 0 0 12px;
}
.proc-faq-item {
    border-top: 1px solid rgba(0,0,0,.08);
}
.proc-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-align: left;
}
.proc-faq-q:hover { color: var(--color-brown, #7a5c3a); }
.proc-faq-icon {
    font-size: 20px;
    font-weight: 300;
    flex-shrink: 0;
    color: var(--color-beige, #c9a96e);
    transition: transform .2s;
}
.proc-faq-a {
    display: none;
    padding: 0 0 14px;
    font-size: 14px;
    line-height: 1.75;
    color: #555;
}
.proc-faq-a.is-open {
    display: block;
}

/* Trava scroll do body quando modal aberto */
body.modal-open { overflow: hidden; }

/* Mobile */
@media (max-width: 600px) {
    .proc-modal-body { padding: 20px; }
    .proc-modal-title { font-size: 22px; }
}

.procedure-item {
    cursor: pointer;
}

.faq-answer {
    display: none;
}
.faq-answer.is-open {
    display: block;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    padding: 0;
}

@media (max-width: 768px) {

    /* Títulos de seção */
    .section-title h2 {
        font-size: 32px;
    }
    .section-title h3 {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .section-title p {
        font-size: 18px;
    }

    /* Problema */
    .problem-item h4       { font-size: 18px; }
    .problem-quote         { font-size: 17px; }

    /* Diferencial */
    .differential-card h4  { font-size: 20px; }
    .differential-card p   { font-size: 14px; }

    /* Prioridades */
    .priority-content h3   { font-size: 22px; }
    .priority-content h4   { font-size: 16px; }
    .priority-content p    { font-size: 15px; }

    /* Filosofia */
    .philosophy blockquote { font-size: 20px; }
    .philosophy-point h4   { font-size: 18px; }

    /* Procedimentos */
    .procedure-header h4   { font-size: 18px; }

    /* Para quem é */
    .target-card p         { font-size: 16px; }
    .target-footer p       { font-size: 15px; }
    .target-footer p:last-child { font-size: 18px; }

    /* Sobre */
    .about-content h2      { font-size: 36px; }
    .about-content p       { font-size: 15px; }
    .about-value h4        { font-size: 18px; }
    .about-quote p         { font-size: 20px; }

    /* Consulta */
    .consultation-point h4 { font-size: 16px; }

    /* FAQ */
    .faq-question          { font-size: 18px; }
    .faq-answer p          { font-size: 15px; }

    /* Modal */
    .proc-modal-title      { font-size: 20px; }
}
