/* ===================================================
   ETSD — Landing Page · Style Sheet
   =================================================== */

:root {
    --gold:        #BA8A36;
    --gold-dim:    rgba(186, 138, 54, 0.18);
    --gold-border: rgba(186, 138, 54, 0.35);
    --navy:        #252834;   /* azul marinho escuro da paleta */
    --navy2:       #2e3245;
    --black:       #000000;   /* preto puro da paleta */
    --white:       #FFFFFF;   /* branco puro da paleta */
    --muted:       #8a8d9b;
    --light-text:  #cbd0e1;
}

/* Brand palette background classes — sections alternate using these */
.bg-navy  { background: var(--navy);  color: var(--white); }
.bg-black { background: var(--black); color: var(--white); }
.bg-white { background: var(--white); color: var(--navy);  }

/* --- reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

/* --- shared layout --- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
section, .section-beige, .section-navy,
.section-white, .section-cta, .section-dark { padding: 6rem 0; }
.text-center { text-align: center; }

/* ===================================================
   TYPOGRAPHY — Section Titles
   =================================================== */
.sec-title {
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.15;
}
.sec-title.dark  { color: var(--navy); }
.sec-title.light { color: var(--white); }
.sec-title.left  { text-align: left; }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.6rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}
.btn-primary {
    background: linear-gradient(135deg, #d4a956, var(--gold), #9c732d);
    background-size: 200%;
    color: #fff;
    box-shadow: 0 10px 28px rgba(186, 138, 54, 0.4);
}
.btn-primary:hover {
    background-position: right;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 38px rgba(186, 138, 54, 0.55);
}
.btn-block { width: 100%; }
.btn-lg    { padding: 1.2rem 3.2rem; font-size: 1rem; }

.btn-pulse { animation: bpulse 2.5s infinite; }
@keyframes bpulse {
    0%  { box-shadow: 0 0 0 0   rgba(186,138,54,.7); }
    70% { box-shadow: 0 0 0 18px rgba(186,138,54,0); }
    100%{ box-shadow: 0 0 0 0   rgba(186,138,54,0); }
}

/* ===================================================
   BADGE / PILL
   =================================================== */
.badge {
    display: inline-block;
    background: var(--gold-dim);
    color: var(--gold);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    padding: 0.4rem 1.1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 0.38rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
}
.pill i { color: var(--gold); font-size: 0.85rem; }

/* ===================================================
   HEADER
   =================================================== */
.site-header {
    position: absolute;
    top: 0; left: 0; width: 100%;
    padding: 0.8rem 0;
    z-index: 200;
    background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-header .container {
    display: flex;
    justify-content: center;
}

.site-logo {
    height: 85px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: transform 0.3s ease;
}
.site-logo:hover { transform: scale(1.04); }

/* ===================================================
   HERO
   =================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at 65% 45%, #303548 0%, #1a1d28 60%, #111420 100%);
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 3rem;
}

/* subtle dot texture */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 0;
}

/* floating particles (CSS-only) */
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.par {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: rise linear infinite;
}
.par1 { width: 5px;  height: 5px;  left: 8%;  bottom: 0; animation-duration: 14s; animation-delay: 0s; }
.par2 { width: 8px;  height: 8px;  left: 28%; bottom: 0; animation-duration: 19s; animation-delay: 5s; }
.par3 { width: 4px;  height: 4px;  left: 58%; bottom: 0; animation-duration: 13s; animation-delay: 8s; }
.par4 { width: 7px;  height: 7px;  left: 80%; bottom: 0; animation-duration: 22s; animation-delay: 2s; }
@keyframes rise {
    0%  { transform: translateY(0);     opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.15; }
    100%{ transform: translateY(-100vh); opacity: 0; }
}

/* --- Hero two-column grid --- */
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;   /* foto alinhada verticalmente com o texto */
}

/* --- Hero text column --- */
.hero-text {
    padding-bottom: 3.5rem;
}

.hero-eyebrow {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin: 1rem 0 0.5rem;
}

.hero-text h1 {
    font-size: clamp(3.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.06;
    color: var(--white);
    letter-spacing: -1.5px;
}
.hero-text h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-sub {
    margin-top: 0.8rem;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    font-weight: 400;
    max-width: 420px;
}

.gold-bar {
    width: 52px; height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1.8rem 0;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.hero-note {
    margin-top: 0.9rem;
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* --- Hero photo column --- */
.hero-photo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;    /* alinha com o centro do texto */
    min-height: 500px;
}

/* outer pulsing ring */
.photo-ring {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 2px solid rgba(186,138,54,0.35);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 4s ease-in-out infinite;
    z-index: 1;
}
.photo-ring::after {
    content: '';
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    border: 1px solid rgba(186,138,54,0.15);
}
@keyframes ringPulse {
    0%,100%{ transform: translate(-50%,-50%) scale(1);    opacity: 0.55; }
    50%    { transform: translate(-50%,-50%) scale(1.045); opacity: 1;   }
}

/* filled golden circle */
.photo-circle {
    position: absolute;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #d4a752 0%, #7a5418 60%, #4a3010 100%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 20px 55px rgba(186,138,54,0.35), inset 0 -8px 25px rgba(0,0,0,0.4);
    animation: floatCirc 6s ease-in-out infinite;
}
@keyframes floatCirc {
    0%,100%{ transform: translate(-50%,-50%) translateY(0); }
    50%    { transform: translate(-50%,-50%) translateY(-14px); }
}

/* the photo — in front, bottom rounded so circle shows around sides */
.paulo-img {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    border-radius: 0 0 220px 220px;
    filter: drop-shadow(0 -5px 30px rgba(0,0,0,0.5));
    animation: floatPers 6s ease-in-out infinite;
    /* nudge photo down slightly so it sits naturally in the circle */
    margin-top: 40px;
}
@keyframes floatPers {
    0%,100%{ transform: translateY(0); }
    50%    { transform: translateY(-10px); }
}

.problem-body {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
}
.problem-body p {
    font-size: 1.18rem;
    color: #4a4a5a;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}
.problem-body blockquote {
    margin-top: 2.5rem;
    padding: 2rem 2.5rem;
    background: var(--beige2);
    border-left: 5px solid var(--gold);
    border-radius: 14px;
    font-size: 1.15rem;
    color: var(--navy);
    text-align: left;
    line-height: 1.8;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
}
.problem-body blockquote:hover { transform: translateY(-4px); }

/* ===================================================
   AUTHORITY — navy bg, white text (already set by bg-navy)
   =================================================== */

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

/* photo */
.auth-photo {
    position: relative;
}
.auth-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 50% 60%, rgba(186,138,54,0.28) 0%, transparent 68%);
    border-radius: 22px;
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
    0%,100%{ opacity: 0.5; transform: scale(1);   }
    50%    { opacity: 1;   transform: scale(1.04); }
}
.auth-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(186,138,54,0.22);
    box-shadow: 0 24px 50px rgba(0,0,0,0.5);
    display: block;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.auth-photo:hover img {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 35px 65px rgba(0,0,0,0.6), 0 0 30px rgba(186,138,54,0.2);
}
.auth-badge {
    position: absolute;
    bottom: -14px; right: -12px;
    z-index: 2;
    background: linear-gradient(135deg, var(--gold), #d4a956);
    color: #fff;
    padding: 0.65rem 1.1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 22px rgba(186,138,54,0.4);
}

/* text */
.outline-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    padding: 0.38rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.check-list { list-style: none; }
.check-list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    font-size: 1.02rem;
    color: var(--light-text);
    line-height: 1.55;
    margin-bottom: 0.9rem;
}
.check-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.check-list li em { color: #fff; font-style: italic; }

/* ===================================================
   EVENT SUMMARY — beige
   =================================================== */
.cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}
.info-card {
    background: #fff;
    border-radius: 18px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s;
    border-bottom: 4px solid transparent;
}
.info-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--gold);
    box-shadow: 0 22px 44px rgba(0,0,0,0.11);
}
.card-ico {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(186,138,54,0.13);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.3rem;
    transition: transform 0.3s ease;
}
.info-card:hover .card-ico { transform: scale(1.1); }
.info-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.4rem; }
.info-card p  { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.info-card small { display: block; margin-top: 0.3rem; color: var(--muted); font-size: 0.86rem; }

/* ===================================================
   REALIZAÇÃO — bg-navy (logos em branco/ouro)
   =================================================== */
.bg-navy .overline { color: rgba(255,255,255,0.45); }
.bg-navy .r-text   { color: var(--white); }
.bg-navy .about-p  { color: rgba(255,255,255,0.6); }
.bg-navy .r-sep    { background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent); }
.bg-navy .r-logo   { filter: brightness(0) invert(1); }
.bg-navy .r-logo-tenda { filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }
.overline {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--muted);
    margin-bottom: 2rem;
}
.realizacao-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.r-logo { height: 90px; object-fit: contain; }
.r-logo-tenda {
    height: 75px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}
.r-sep {
    display: block;
    width: 1px; height: 55px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.15), transparent);
}
.r-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.about-p {
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.98rem;
    color: #555;
    line-height: 1.8;
}


/* ===================================================
   CTA — bg-navy, layout direto, sem card
   =================================================== */
.cta-section {
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* glow dourado sutil no fundo */
.cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(186,138,54,0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-clean {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.cta-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.8rem;
    border: 1px solid var(--gold-border);
    background: var(--gold-dim);
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
}

.cta-headline {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 0;
}

.cta-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.cta-free {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 2px;
}




/* ===================================================
   FAQ — bg-navy
   =================================================== */
.bg-navy .faq-item {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.08);
}
.bg-navy .faq-item.open { border-color: rgba(186,138,54,0.4); }
.bg-navy .faq-btn { color: var(--white); }

.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(186,138,54,0.4); }
.faq-btn {
    width: 100%; padding: 1.2rem 1.5rem;
    background: none; border: none;
    color: #fff; font-family: 'Outfit', sans-serif;
    font-size: 0.98rem; font-weight: 600;
    text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
    transition: background 0.2s;
}
.faq-btn:hover { background: rgba(255,255,255,0.06); }
.faq-btn i { color: var(--gold); transition: transform 0.35s ease; flex-shrink: 0; }
.faq-item.open .faq-btn i { transform: rotate(180deg); }
.faq-ans {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
    color: var(--light-text); font-size: 0.95rem; line-height: 1.7;
}
.faq-ans p { padding: 0 1.5rem 1.4rem; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer { background: #111420; padding: 3rem 0 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); }

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 1.5rem;
}
.footer-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-logo { height: 54px; filter: brightness(0) invert(1); opacity: 0.75; }
.footer-left p { font-size: 0.86rem; color: var(--muted); }
.footer-left p i { color: var(--gold); margin-right: 4px; }

.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 18px rgba(186,138,54,0.4); border-color: transparent; }

.footer-copy { text-align: center; }
.footer-copy p { font-size: 0.8rem; color: var(--muted); }

/* ===================================================
   MODAL
   =================================================== */
.modal {
    display: none;
    position: fixed; inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.84);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}
.modal.open { display: flex; }

.modal-box {
    background: #fff;
    color: var(--navy);
    padding: 2.8rem;
    border-radius: 22px;
    width: 90%; max-width: 460px;
    position: relative;
    animation: mIn 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
    box-shadow: 0 28px 65px rgba(0,0,0,0.45);
}
@keyframes mIn {
    from{ transform: scale(0.85) translateY(-25px); opacity: 0; }
    to  { transform: scale(1) translateY(0);         opacity: 1; }
}
.modal-close {
    position: absolute; top: 1.1rem; right: 1.4rem;
    background: none; border: none;
    font-size: 1.8rem; font-weight: 300;
    color: var(--muted); cursor: pointer; line-height: 1;
    transition: color 0.2s;
}
.modal-close:hover { color: var(--navy); }
.modal-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(186,138,54,0.15);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.modal-box h2 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.modal-sub { color: var(--muted); margin-bottom: 1.6rem; font-size: 0.92rem; }

.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; margin-bottom: 0.38rem; font-weight: 600; font-size: 0.86rem; color: #444; }
.form-group input {
    width: 100%; padding: 0.8rem 1rem;
    border: 1.5px solid #ddd; border-radius: 10px;
    font-family: 'Outfit', sans-serif; font-size: 0.97rem;
    background: #f9f7f4; color: var(--navy);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus {
    outline: none; border-color: var(--gold); background: #fff;
    box-shadow: 0 0 0 3px rgba(186,138,54,0.17);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 960px) {
    .hero { padding-top: 120px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 1rem; }
    .hero-pills { justify-content: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .gold-bar  { margin-left: auto; margin-right: auto; }
    
    .hero-photo { 
        order: -1; 
        height: 380px; /* altura menor no mobile */
        margin-bottom: 1rem;
    }
    .photo-ring  { width: 310px; height: 310px; }
    .photo-circle{ width: 270px; height: 270px; }
    .paulo-img   { max-width: 320px; border-radius: 0 0 160px 160px; }
    
    .hero-text   { padding-bottom: 2rem; }

    .authority-grid { grid-template-columns: 1fr; gap: 3rem; }
    .sec-title.left { text-align: center; }
    .auth-badge { right: 0; left: 0; margin: 0 auto; width: max-content; }
}

@media (max-width: 720px) {
    .sec-title { font-size: 2.1rem; margin-bottom: 2rem; }
    .cta-headline { font-size: 2.4rem; }
    .cta-section { padding: 4.5rem 0; }
    .hero-text h1 { font-size: 3rem; }
    
    .realizacao-logos { flex-direction: column; gap: 2rem; }
    .r-sep { display: none; } /* remove as barras verticais no mobile */
    
    .footer-row  { flex-direction: column; text-align: center; }
    .footer-left { flex-direction: column; gap: 0.8rem; }
    .footer-social { justify-content: center; margin-top: 1rem; }
}

@media (max-width: 480px) {
    .hero-photo { height: 320px; }
    .photo-ring  { width: 250px; height: 250px; }
    .photo-circle{ width: 220px; height: 220px; }
    .paulo-img   { max-width: 260px; border-radius: 0 0 130px 130px; }
    
    .hero-pills { flex-direction: column; gap: 0.5rem; align-items: stretch; }
    .pill { justify-content: center; }
    
    .faq-btn { font-size: 0.9rem; padding: 1rem; }
    
    .modal-box { padding: 2rem 1.5rem; }
}
