:root {
    --green-950: #062f2c;
    --green-900: #083d39;
    --green-800: #0c514a;
    --green-700: #14685c;
    --green-100: #e8f3ef;
    --green-50: #f3f8f6;
    --gold: #efb526;
    --gold-dark: #d99a08;
    --ink: #102b2a;
    --muted: #60706f;
    --line: #dce5e2;
    --ivory: #fbfcfa;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(9, 52, 48, 0.12);
  }
  
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
  }
  button, input, textarea, select { font: inherit; }
  button, a { -webkit-tap-highlight-color: transparent; }
  a { color: inherit; text-decoration: none; }
  button { cursor: pointer; }
  .page-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
  
  .site-header {
    position: sticky; top: 0; z-index: 50;
    min-height: 82px; padding: 12px max(24px, calc((100vw - 1180px) / 2));
    display: flex; align-items: center; gap: 28px;
    background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(11,66,61,.1);
    backdrop-filter: blur(18px);
  }
  .brand { display: flex; align-items: center; gap: 11px; min-width: 310px; }
  .brand-logo {
    width: 52px; height: 52px; flex: 0 0 auto; padding: 3px;
    object-fit: contain; border-radius: 50%; background: white;
  }
  .brand-mark {
    width: 50px; height: 50px; flex: 0 0 auto; border-radius: 50%;
    display: grid; place-items: center; color: var(--green-900); font-weight: 900; font-size: 13px;
    border: 2px solid var(--green-700); box-shadow: inset 0 0 0 5px #fff, inset 0 0 0 7px var(--gold);
    background: var(--green-100);
  }
  .brand strong, .brand small { display: block; }
  .brand strong { font-size: 14px; letter-spacing: -.02em; }
  .brand small { margin-top: 3px; color: var(--muted); font-size: 12px; }
  .main-nav { flex: 1; display: flex; align-items: center; justify-content: center; gap: 26px; }
  .main-nav a { position: relative; display: flex; align-items: center; gap: 7px; padding: 12px 2px; color: #314a48; font-size: 14px; font-weight: 650; }
  .main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--gold); transition: right .2s; }
  .main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
  .header-actions { display: flex; gap: 10px; }
  .menu-button, .icon-button { border: 0; background: transparent; color: var(--ink); display: none; align-items: center; justify-content: center; }
  
  .button {
    min-height: 44px; padding: 0 18px; border-radius: 9px; border: 1px solid transparent;
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-weight: 750; font-size: 14px; transition: transform .2s, box-shadow .2s, background .2s;
  }
  .button:hover { transform: translateY(-1px); }
  .button-gold { background: linear-gradient(135deg, #f6c54a, var(--gold)); color: #17312f; box-shadow: 0 9px 22px rgba(218,157,10,.25); }
  .button-gold:hover { box-shadow: 0 12px 28px rgba(218,157,10,.34); }
  .button-ghost { color: var(--green-900); background: rgb(255, 255, 255); border-color: #91a6a2; }
  .button-outline-light { color: rgb(255, 255, 255); border-color: gold; background: rgba(7,54,50,.25); }
  .button-large { min-height: 54px; padding-inline: 24px; font-size: 15px; }
  .button-small { min-height: 36px; padding-inline: 12px; font-size: 12px; }
  
  .hero {
    position: relative;
    overflow: hidden;
    min-height: 590px;
    color: white;

    background:
    linear-gradient(
        90deg,
        rgba(3, 45, 42, 0.90) 0%,
        rgba(5, 58, 53, 0.74) 45%,
        rgba(8, 59, 54, 0.24) 75%,
        rgba(8, 59, 54, 0.05) 100%
    ),
    url("../../images/parque-municipal.jpeg")
    center 60% / cover no-repeat;
}
  .hero::after { content: ""; position: absolute; inset: 0; opacity: .2; background-image: radial-gradient(circle at 75% 20%, rgba(255,255,255,.35) 0 1px, transparent 1.5px); background-size: 26px 26px; mask-image: linear-gradient(90deg, transparent 30%, black); }
  .hero-content { position: relative; z-index: 1; min-height: 590px; display: grid; grid-template-columns: 1.05fr .8fr; gap: 85px; align-items: center; padding: 65px 0; }
  .eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 12px; color: #f4c650; font-size: 14px; font-weight: 800; }
  .eyebrow span { display: block; width: 28px; height: 2px; background: var(--gold); }
  .hero h1 { margin: 0; max-width: 620px; font-size: clamp(48px, 5.4vw, 76px); line-height: 1.04; letter-spacing: -.055em; }
  .hero h1::after { content: ""; display: block; width: 100%; max-width: 490px; height: 2px; margin-top: 22px; background: linear-gradient(90deg, var(--gold), transparent); }
  .hero-lead { max-width: 570px; margin: 24px 0 30px; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; color: rgba(255,255,255,.88); }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .steps-card { color: var(--ink); padding: 26px; border-radius: 20px; background: rgba(255,255,255,.96); box-shadow: 0 30px 70px rgba(0,24,22,.3); backdrop-filter: blur(16px); }
  .steps-title { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
  .steps-title h2 { margin: 2px 0 0; font-size: 22px; letter-spacing: -.025em; }
  .steps-title small { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .1em; font-weight: 800; font-size: 10px; }
  .round-icon, .soft-icon { display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; }
  .round-icon { width: 50px; height: 50px; background: var(--green-900); color: white; }
  .steps-card ol { list-style: none; margin: 0; padding: 0; }
  .steps-card li { display: grid; grid-template-columns: 26px 40px 1fr; gap: 9px; align-items: center; padding: 14px 0; border-top: 1px dashed #cbd8d5; }
  .steps-card li > span { width: 23px; height: 23px; border-radius: 50%; display: grid; place-items: center; background: var(--green-900); color: white; font-size: 11px; font-weight: 800; }
  .steps-card li > svg { width: 36px; height: 36px; padding: 8px; color: white; background: var(--green-800); border-radius: 50%; }
  .steps-card li strong, .steps-card li small { display: block; }
  .steps-card li strong { font-size: 13px; }
  .steps-card li small { margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.4; }
  .steps-note { display: flex; gap: 10px; padding: 12px; margin-top: 5px; border-radius: 10px; background: var(--green-100); color: var(--green-900); font-size: 11px; line-height: 1.4; }
  .steps-note strong { display: block; }
  
  .section { padding: 92px 0; }
  .features-section { background: white; }
  .section-heading { margin-bottom: 38px; }
  .section-heading.centered { text-align: center; }
  .section-heading h2, .about-copy h2, .guide-copy h2 { margin: 9px 0 8px; font-size: clamp(31px, 3.4vw, 44px); line-height: 1.12; letter-spacing: -.04em; }
  .section-heading p, .about-copy p, .guide-copy > p { color: var(--muted); line-height: 1.7; }
  .section-heading p { margin: 0; }
  .gold-rule { display: block; width: 38px; height: 3px; margin: 0 auto; border-radius: 4px; background: var(--gold); }
  .gold-rule.left { margin-left: 0; }
  .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .feature-card { position: relative; min-height: 164px; display: flex; gap: 17px; align-items: flex-start; padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: 0 12px 30px rgba(11,57,52,.07); }
  .soft-icon { width: 54px; height: 54px; color: var(--green-800); background: var(--green-100); }
  .soft-icon svg { width: 25px; }
  .feature-card h3 { margin: 3px 0 8px; font-size: 17px; }
  .feature-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
  .card-arrow { position: absolute; right: 18px; bottom: 18px; color: var(--green-700); }
  
  .about-section { background: #f4f8f6; border-block: 1px solid #e0e9e6; }
  .about-grid { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 540px; }
  .about-copy { padding: 76px 72px 76px 0; align-self: center; }
  .section-kicker { margin: 12px 0 0 !important; color: var(--gold-dark) !important; text-transform: uppercase; letter-spacing: .12em; font-weight: 850; font-size: 11px; }
  .about-copy p { font-size: 15px; }
  .text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: var(--green-800); font-weight: 800; }
  .local-visual { position: relative; overflow: hidden; min-height: 540px; }
  .local-visual > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.04); }
  .visual-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(5,55,51,.56), rgba(5,55,51,.05) 70%); }
  .device-preview { position: absolute; width: min(76%, 460px); left: 8%; bottom: 13%; border: 7px solid #173b38; border-radius: 14px; background: white; box-shadow: 0 28px 55px rgba(2,28,26,.38); }
  .device-top { height: 23px; display: flex; align-items: center; gap: 5px; padding-left: 10px; background: #173b38; }
  .device-top span { width: 6px; height: 6px; border-radius: 50%; background: #bcd0cc; }
  .device-body { display: grid; grid-template-columns: 58px 1fr; min-height: 170px; }
  .preview-sidebar { display: flex; flex-direction: column; gap: 12px; padding: 19px 13px; background: var(--green-900); }
  .preview-sidebar span { height: 7px; border-radius: 6px; background: rgba(255,255,255,.6); }
  .preview-main { padding: 18px; font-size: 10px; color: var(--ink); }
  .preview-main strong { display: block; margin-bottom: 12px; font-size: 13px; }
  .preview-main div { display: flex; justify-content: space-between; gap: 8px; padding: 8px 0; border-top: 1px solid var(--line); }
  .preview-main small { padding: 3px 5px; color: var(--green-900); background: var(--green-100); border-radius: 5px; }
  .location-badge { position: absolute; right: 5%; top: 7%; display: flex; align-items: center; gap: 8px; padding: 10px 13px; border-radius: 9px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); color: var(--green-900); font-weight: 800; font-size: 12px; }
  
  .guide-section { background: white; }
  .guide-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 80px; align-items: center; }
  .video-card { position: relative; overflow: hidden; width: 100%; aspect-ratio: 1.18; padding: 0; border: 0; border-radius: 18px; background: var(--green-900); box-shadow: var(--shadow); }
  .video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
  .video-card:hover img { transform: scale(1.04); }
  .video-shade { position: absolute; inset: 0; background: linear-gradient(rgba(4,45,42,.35), rgba(4,45,42,.7)); }
  .play-button { position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%); width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; color: var(--green-900); background: white; box-shadow: 0 0 0 10px rgba(255,255,255,.15); }
  .video-label { position: absolute; left: 0; right: 0; bottom: 20%; color: white; font-size: 16px; font-weight: 800; }
  .media-note { margin: 14px 0 0; color: var(--muted); font-size: 12px; }
  .media-note strong { color: var(--ink); }
  .notice { margin: 10px 0 0; padding: 10px 12px; border-radius: 8px; color: var(--green-900); background: var(--green-100); font-size: 12px; }
  .guide-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 13px; color: #334a48; font-size: 14px; }
  .guide-list li { display: flex; align-items: center; gap: 11px; }
  .guide-list span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--green-900); color: white; font-size: 11px; font-weight: 800; }
  .guide-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  
  .category-section { background: var(--green-50); }
  .category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
  .category-card { min-height: 150px; padding: 22px 12px; border: 1px solid var(--line); border-radius: 14px; background: white; color: var(--green-900); box-shadow: 0 8px 22px rgba(9,57,52,.06); transition: transform .2s, border-color .2s, box-shadow .2s; }
  .category-card:hover { transform: translateY(-5px); border-color: #92b3ac; box-shadow: var(--shadow); }
  .category-card svg { width: 37px; height: 37px; stroke-width: 1.6; }
  .category-card span { display: block; margin-top: 16px; font-size: 13px; font-weight: 800; }
  .faq-section { background: white; }
  .faq-shell { max-width: 920px; }
  .faq-list { border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
  .faq-list details { background: white; border-bottom: 1px solid var(--line); }
  .faq-list details:last-child { border-bottom: 0; }
  .faq-list summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 24px; font-size: 14px; font-weight: 800; cursor: pointer; }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary svg { width: 18px; transition: transform .2s; }
  .faq-list details[open] summary svg { transform: rotate(180deg); }
  .faq-list details p { margin: 0; padding: 0 24px 23px; color: var(--muted); font-size: 14px; line-height: 1.7; }
  
  .final-cta { color: white; background: radial-gradient(circle at 85% 20%, rgba(50,139,121,.6), transparent 28%), var(--green-950); }
  .cta-inner { min-height: 220px; display: grid; grid-template-columns: 72px 1fr auto; gap: 25px; align-items: center; }
  .cta-icon { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 50%; color: var(--gold); background: rgba(255,255,255,.08); }
  .cta-icon svg { width: 34px; height: 34px; }
  .cta-inner h2 { margin: 0 0 8px; font-size: clamp(27px, 3vw, 40px); letter-spacing: -.035em; }
  .cta-inner p { max-width: 620px; margin: 0; color: rgba(255,255,255,.72); line-height: 1.6; }
  .site-footer { padding-top: 56px; color: rgba(255,255,255,.78); background: #042825; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .75fr; gap: 80px; padding-bottom: 46px; }
  .footer-brand { display: flex; align-items: center; gap: 12px; color: white; }
  .footer-brand .brand-logo { background: rgba(255,255,255,.95); }
  .footer-brand strong, .footer-brand small { display: block; }
  .footer-brand small { margin-top: 4px; color: rgba(255,255,255,.58); }
  .site-footer p { color: rgba(255,255,255,.58); }
  .site-footer h3 { margin: 0 0 14px; color: white; font-size: 14px; }
  .site-footer a { display: block; width: fit-content; margin: 10px 0; color: rgba(255,255,255,.63); font-size: 13px; }
  .site-footer a:hover { color: var(--gold); }
  .footer-bottom { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: 12px; }
  
  .modal-backdrop { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; background: rgba(2,25,23,.72); backdrop-filter: blur(8px); }
  .report-modal { width: min(880px, 100%); max-height: calc(100vh - 48px); overflow-y: auto; padding: 28px; border-radius: 20px; background: white; box-shadow: 0 30px 90px rgba(0,20,18,.38); }
  .modal-header { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .modal-header h2 { margin: 4px 0 0; font-size: 28px; }
  .icon-button { display: grid; width: 42px; height: 42px; border-radius: 50%; background: var(--green-50); }
  .report-form { padding-top: 22px; }
  .report-form label { display: grid; gap: 7px; color: var(--ink); font-size: 12px; font-weight: 800; }
  .report-form input, .report-form textarea, .report-form select { width: 100%; border: 1px solid #cbd8d5; border-radius: 9px; padding: 12px 13px; color: var(--ink); background: white; outline: none; font-size: 13px; font-weight: 500; }
  .report-form input:focus, .report-form textarea:focus, .report-form select:focus { border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(20,104,92,.12); }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .report-form > label { margin-bottom: 16px; }
  .upload-box { width: 100%; display: flex; align-items: center; gap: 12px; margin-bottom: 22px; padding: 15px; border: 1px dashed #99afa9; border-radius: 10px; color: var(--green-800); background: var(--green-50); text-align: left; }
  .upload-box > span { flex: 1; }
  .upload-box strong, .upload-box small { display: block; }
  .upload-box small { margin-top: 3px; color: var(--muted); font-size: 11px; }
  .location-fieldset { margin: 0; padding: 20px; border: 1px solid var(--line); border-radius: 13px; }
  .location-fieldset legend { padding: 0 8px; font-size: 15px; font-weight: 850; }
  .location-fieldset > p { margin: 0 0 14px; color: var(--muted); font-size: 12px; }
  .location-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .location-option { min-height: 72px; display: flex; align-items: center; gap: 11px; padding: 12px; border: 1px solid #cbd8d5; border-radius: 10px; color: var(--ink); background: white; text-align: left; }
  .location-option.active { border-color: var(--green-700); background: var(--green-50); box-shadow: inset 0 0 0 1px var(--green-700); }
  .location-option > svg:first-child { color: var(--green-700); }
  .location-option > i:first-child { width: 24px; color: var(--green-700); font-size: 20px; text-align: center; }
  .location-option span { flex: 1; }
  .location-option strong, .location-option small { display: block; }
  .location-option strong { font-size: 13px; }
  .location-option small { margin-top: 3px; color: var(--muted); font-size: 11px; }
  .location-option > svg:last-child { width: 18px; }
  .location-option .selection-check { color: var(--green-700); }
  .map-panel, .address-panel { margin-top: 16px; }
  .map-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 8px; }
  .map-toolbar small { color: var(--muted); }
  .demo-map { position: relative; overflow: hidden; height: 220px; border-radius: 10px; background-color: #e5eee9; background-image: linear-gradient(30deg, rgba(89,137,125,.16) 12%, transparent 12.5%, transparent 87%, rgba(89,137,125,.16) 87.5%), linear-gradient(150deg, rgba(89,137,125,.13) 12%, transparent 12.5%, transparent 87%, rgba(89,137,125,.13) 87.5%); background-size: 50px 88px; cursor: crosshair; }
  .road { position: absolute; display: block; height: 17px; background: white; border: 1px solid #d0dad6; box-shadow: 0 0 0 3px rgba(255,255,255,.35); }
  .road-one { width: 130%; left: -12%; top: 48%; transform: rotate(-8deg); }
  .road-two { width: 105%; left: 4%; top: 23%; transform: rotate(26deg); }
  .road-three { width: 90%; left: 30%; top: 74%; transform: rotate(-33deg); }
  .map-park { position: absolute; left: 11%; bottom: 14%; padding: 11px 22px; border-radius: 8px; color: #2d705b; background: #bde1c7; font-size: 11px; font-weight: 800; }
  .map-place { position: absolute; right: 7%; top: 9%; color: #536e68; font-size: 10px; font-weight: 800; }
  .map-pin { position: absolute; width: 34px; height: 34px; color: #dba00c; transform: translate(-50%,-100%); filter: drop-shadow(0 4px 4px rgba(0,0,0,.25)); }
  .geo-message { display: flex; align-items: flex-start; gap: 7px; margin: 9px 0 0; color: var(--green-700); font-size: 11px; }
  .address-panel .field-row { margin-bottom: 13px; }
  .checkbox-label { display: flex !important; grid-template-columns: auto 1fr; align-items: center; margin-top: 14px; color: var(--muted) !important; font-weight: 600 !important; }
  .checkbox-label input { width: auto; }
  .modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }
  .success-state { min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
  .success-state > span { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green-700); }
  .success-state h3 { max-width: 480px; margin: 20px 0 8px; font-size: 24px; }
  .success-state p { max-width: 520px; margin: 0 0 22px; color: var(--muted); line-height: 1.6; }
  
  @media (max-width: 1080px) {
    .site-header { gap: 16px; }
    .brand { min-width: 255px; }
    .main-nav { gap: 13px; }
    .main-nav a { font-size: 12px; }
    .header-actions .button { padding-inline: 12px; }
    .header-actions .button svg { display: none; }
    .hero-content { gap: 45px; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
  }
  
  @media (max-width: 860px) {
    .page-shell { width: min(100% - 32px, 680px); }
    .site-header { min-height: 72px; padding-inline: 16px; }
    .brand { min-width: 0; flex: 1; }
    .brand-mark { width: 44px; height: 44px; }
    .header-actions { display: none; }
    .menu-button { display: flex; width: 42px; height: 42px; }
    .main-nav { position: absolute; display: none; left: 16px; right: 16px; top: 66px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: white; box-shadow: var(--shadow); }
    .main-nav.is-open { display: grid; }
    .main-nav a { padding: 13px; font-size: 14px; border-radius: 8px; }
    .main-nav a:hover { background: var(--green-50); }
    .hero, .hero-content { min-height: auto; }
    .hero-content { grid-template-columns: 1fr; padding: 72px 0 60px; }
    .hero h1 { font-size: clamp(44px, 11vw, 64px); }
    .steps-card { max-width: 600px; }
    .section { padding: 70px 0; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 135px; }
    .about-grid { width: 100%; grid-template-columns: 1fr; }
    .about-copy { width: min(100% - 32px, 680px); margin: 0 auto; padding: 70px 0 48px; }
    .local-visual { min-height: 470px; }
    .guide-grid { grid-template-columns: 1fr; gap: 55px; }
    .video-card { aspect-ratio: 1.6; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-grid > div:first-child { grid-column: 1/-1; }
    .cta-inner { grid-template-columns: 58px 1fr; padding: 45px 0; }
    .cta-inner .button { grid-column: 2; width: fit-content; }
  }
  
  @media (max-width: 560px) {
    .brand span:last-child strong { font-size: 11px; }
    .brand span:last-child small { font-size: 10px; }
    .hero-content { padding-top: 56px; gap: 35px; }
    .hero h1 { font-size: 43px; }
    .hero-lead { font-size: 17px; }
    .hero-actions, .guide-actions { display: grid; }
    .hero-actions .button, .guide-actions .button { width: 100%; }
    .steps-card { padding: 20px 17px; border-radius: 16px; }
    .steps-card li { grid-template-columns: 23px 34px 1fr; }
    .steps-card li > svg { width: 32px; height: 32px; }
    .section-heading h2, .about-copy h2, .guide-copy h2 { font-size: 32px; }
    .local-visual { min-height: 390px; }
    .device-preview { width: 84%; left: 5%; bottom: 11%; }
    .location-badge { top: 5%; right: 4%; }
    .video-card { aspect-ratio: 1.2; }
    .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .category-card { min-height: 130px; }
    .faq-list summary { padding: 18px; }
    .faq-list details p { padding: 0 18px 20px; }
    .cta-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .cta-inner .button { grid-column: 1; width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-grid > div:first-child { grid-column: auto; }
    .report-modal { padding: 20px 16px; border-radius: 14px; }
    .modal-backdrop { padding: 10px; }
    .field-row, .location-options { grid-template-columns: 1fr; }
    .map-toolbar { align-items: flex-start; flex-direction: column; }
    .modal-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .modal-actions .button { padding-inline: 12px; }
  }
  
  @media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; }
  }
  
  /* Adaptación para los iconos Font Awesome del proyecto HTML */
  .round-icon i, .soft-icon i, .cta-icon i { font-size: 24px; }
  .steps-card li > i {
    width: 36px; height: 36px; display: grid; place-items: center;
    color: white; background: var(--green-800); border-radius: 50%;
  }
  .steps-note > i, .location-badge > i { font-size: 19px; }
  .feature-card > .soft-icon i { color: var(--green-800); }
  .card-arrow { position: absolute; right: 18px; bottom: 18px; color: var(--green-700); }
  .category-card i { display: block; font-size: 36px; font-weight: 400; }
  .cta-icon i { color: var(--gold); }
  .play-button i { margin-left: 4px; font-size: 24px; }
  .map-pin { position: absolute; z-index: 3; font-size: 34px; color: #dba00c; transform: translate(-50%,-100%); filter: drop-shadow(0 4px 4px rgba(0,0,0,.25)); }
  .button { cursor: pointer; }
  .button i { font-size: 17px; }
  .main-nav a i { width: 18px; text-align: center; }
  .faq-list summary i { transition: transform .2s; }
  .faq-list details[open] summary i { transform: rotate(180deg); }
  .close-modal { display: grid; }
  .hidden { display: none !important; }
  
  @media (max-width: 560px) {
    .steps-card li > i { width: 32px; height: 32px; }
  }
  
  /* Ajustes para que el encabezado se vea como el segundo diseño */
@media (min-width: 861px) {

    .hero {
        min-height: 510px;
        background-position: center 60%;
    }

    .hero-content {
        min-height: 510px;
        grid-template-columns: minmax(0, 1fr) 365px;
        gap: 75px;
        align-items: start;
        padding: 48px 0 40px;
    }

    .eyebrow {
        margin-bottom: 18px;
        font-size: 13px;
    }

    .hero h1 {
        max-width: 480px;
        font-size: 54px;
        line-height: 1.05;
        letter-spacing: -0.045em;
    }

    .hero h1::after {
        max-width: 430px;
        margin-top: 17px;
    }

    .hero-lead {
        max-width: 440px;
        margin: 19px 0 25px;
        font-size: 17px;
        line-height: 1.5;
    }

    .button-large {
        min-height: 46px;
        padding: 0 20px;
        font-size: 13px;
    }

    .steps-card {
        width: 365px;
        padding: 18px;
        border-radius: 14px;
        justify-self: end;
    }

    .steps-title {
        margin-bottom: 7px;
    }

    /* Oculta “Proceso sencillo” */
    .steps-title small {
        display: none;
    }

    .steps-title h2 {
        font-size: 20px;
    }

    .steps-title h2::after {
        content: "";
        display: block;
        width: 32px;
        height: 2px;
        margin-top: 8px;
        background: var(--gold);
    }

    .round-icon {
        width: 44px;
        height: 44px;
    }

    .steps-card li {
        grid-template-columns: 22px 34px 1fr;
        padding: 11px 0;
    }

    .steps-card li > i {
        width: 32px;
        height: 32px;
    }

    .steps-card li strong {
        font-size: 12px;
    }

    .steps-card li small {
        font-size: 10px;
    }

    .steps-note {
        padding: 10px;
        font-size: 10px;
    }
}

/* ========================================
   TARJETA: REPORTA EN 3 PASOS
======================================== */

.steps-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    width: 100%;
    max-width: 370px;
    padding: 18px;

    color: #102b2a;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(8, 61, 57, 0.08);
    border-radius: 15px;

    box-shadow:
        0 22px 55px rgba(0, 35, 32, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(12px);
}

/* Líneas curvas decorativas del fondo */
.steps-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(
            ellipse at 115% 5%,
            transparent 0 55px,
            rgba(8, 61, 57, 0.06) 56px 57px,
            transparent 58px 78px,
            rgba(8, 61, 57, 0.045) 79px 80px,
            transparent 81px 104px,
            rgba(8, 61, 57, 0.035) 105px 106px,
            transparent 107px
        ),
        radial-gradient(
            ellipse at -12% 85%,
            transparent 0 48px,
            rgba(8, 61, 57, 0.05) 49px 50px,
            transparent 51px 72px,
            rgba(8, 61, 57, 0.04) 73px 74px,
            transparent 75px 98px,
            rgba(8, 61, 57, 0.03) 99px 100px,
            transparent 101px
        ),
        repeating-linear-gradient(
            125deg,
            transparent 0 62px,
            rgba(8, 61, 57, 0.018) 63px 64px,
            transparent 65px 112px
        );
}

/* Encabezado */
.steps-title {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 8px;
}

.steps-main-icon {
    flex: 0 0 auto;
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    color: white;
    background: #083d39;
    border-radius: 50%;
}

.steps-main-icon i {
    font-size: 19px;
}

.steps-title h2 {
    margin: 0;
    color: #102b2a;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.steps-gold-line {
    display: block;
    width: 31px;
    height: 2px;
    margin-top: 8px;

    background: #efb526;
    border-radius: 10px;
}

/* Lista de pasos */
.steps-list {
    position: relative;
    z-index: 1;

    margin: 0;
    padding: 0;
    list-style: none;
}

.steps-list li {
    position: relative;

    display: grid;
    grid-template-columns: 22px 38px minmax(0, 1fr);
    align-items: center;
    gap: 9px;

    padding: 12px 0;
    border-top: 1px dashed #c7d4d1;
}

/* Números */
.step-number {
    width: 21px;
    height: 21px;

    display: grid;
    place-items: center;

    color: white;
    background: #083d39;
    border-radius: 50%;

    font-size: 10px;
    font-weight: 800;
}

/* Círculos de los iconos */
.step-icon {
    position: relative;
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    color: white;
    background: #0c514a;
    border-radius: 50%;

    box-shadow: 0 4px 10px rgba(8, 61, 57, 0.18);
}

.step-icon i {
    position: relative;
    z-index: 2;
    font-size: 15px;
}

/* Línea vertical que une los iconos */
.steps-list li:not(:last-child) .step-icon::after {
    content: "";
    position: absolute;
    z-index: 0;

    top: 37px;
    left: 50%;
    height: 25px;

    border-left: 1px dashed rgba(8, 61, 57, 0.38);
    transform: translateX(-50%);
}

/* Textos */
.step-content strong,
.step-content small {
    display: block;
}

.step-content strong {
    margin-bottom: 3px;
    color: #173331;
    font-size: 12px;
    font-weight: 800;
}

.step-content small {
    color: #647370;
    font-size: 10px;
    line-height: 1.4;
}

/* Mensaje inferior */
.steps-note {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 5px;
    padding: 11px;

    color: #164a44;
    background: rgba(226, 241, 235, 0.88);
    border-radius: 9px;

    font-size: 10px;
    line-height: 1.35;
}

.steps-note > i {
    flex: 0 0 auto;
    color: #24806f;
    font-size: 20px;
}

.steps-note strong {
    display: block;
    color: #164a44;
}

/* Adaptación para teléfonos */
@media (max-width: 560px) {
    .steps-card {
        max-width: 100%;
        padding: 17px 15px;
    }

    .steps-title h2 {
        font-size: 19px;
    }

    .steps-list li {
        grid-template-columns: 21px 35px minmax(0, 1fr);
        gap: 8px;
    }

    .step-icon {
        width: 35px;
        height: 35px;
    }

    .steps-list li:not(:last-child) .step-icon::after {
        top: 35px;
    }
}/* CORRECCIONES FINALES DE LA TARJETA */

/* Quita la segunda línea amarilla creada por el CSS anterior */
.steps-title h2::after {
    content: none !important;
    display: none !important;
}

/* Mantiene pequeño únicamente el número */
.steps-card li > .step-number {
    width: 21px !important;
    height: 21px !important;
    padding: 0 !important;

    display: grid !important;
    place-items: center !important;

    color: white !important;
    background: #083d39 !important;
    border-radius: 50% !important;

    font-size: 10px !important;
    font-weight: 800 !important;
}

/* Hace más grandes los iconos, como en el diseño original */
.steps-card li > .step-icon {
    position: relative !important;

    width: 37px !important;
    height: 37px !important;
    padding: 0 !important;

    display: grid !important;
    place-items: center !important;

    color: white !important;
    background: #0c514a !important;
    border-radius: 50% !important;

    box-shadow: 0 4px 10px rgba(8, 61, 57, 0.18);
}

/* Tamaño de los símbolos internos */
.steps-card li > .step-icon i {
    font-size: 15px !important;
}

/* Línea vertical entre los círculos */
.steps-list li:not(:last-child) .step-icon::after {
    content: "";
    position: absolute;

    top: 37px;
    left: 50%;
    width: 1px;
    height: 25px;

    background: rgba(8, 61, 57, 0.30);
    transform: translateX(-50%);
}

/* Hace más suaves las líneas decorativas del fondo */
.steps-card::before {
    opacity: 0.38;
}


/* Mensaje para iniciar sesión antes de reportar */

.report-access-note {
    max-width: 520px;
    margin: 16px 0 0;

    display: flex;
    align-items: flex-start;
    gap: 8px;

    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.5;
}

.report-access-note > i {
    margin-top: 3px;
    color: #efb526;
    font-size: 12px;
}

.report-access-note a {
    margin-left: 4px;
    color: #f6c54a;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.report-access-note a:hover {
    color: white;
}

/* Adaptación para teléfonos */
@media (max-width: 560px) {
    .report-access-note {
        font-size: 12px;
    }
}

/* Nota de acceso organizada en dos líneas */

.report-access-note {
    max-width: 520px;
    margin-top: 16px;
  
    display: flex;
    align-items: flex-start;
    gap: 9px;
  
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.45;
  }
  
  .report-access-note > i {
    margin-top: 3px;
    color: #efb526;
    font-size: 12px;
  }
  
  .report-access-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
  
  .report-access-text a {
    display: inline-block;
    margin: 0;
    color: #f6c54a;
    font-weight: 800;
    white-space: nowrap;
  
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  
  /* Las categorías ahora son informativas */
  .category-card {
    cursor: default;
  }
  
  /* Corrige los iconos sólidos que no están apareciendo */
  .category-card i.fas {
    font-weight: 900;
  }
  
  .category-card i.far {
    font-weight: 400;
  }

  /* =====================================
   TARJETAS DE CATEGORÍAS MEJORADAS
===================================== */

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }
  
  /* Tarjetas */
  .category-card {
    position: relative;
    overflow: hidden;
  
    min-height: 170px;
    padding: 22px 12px;
  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
  
    text-align: center;
    cursor: default;
  
    background:
      linear-gradient(
        145deg,
        #ffffff 0%,
        #f4f8f6 100%
      );
  
    border: 1px solid #d5e1de;
    border-radius: 16px;
  
    box-shadow: 0 10px 25px rgba(8, 61, 57, 0.08);
  
    transition:
      transform 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
  }
  
  /* Pequeña línea dorada superior */
  .category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
  
    width: 44px;
    height: 4px;
  
    background: #efb526;
    border-radius: 0 0 8px 8px;
  
    transform: translateX(-50%);
  }
  
  /* Decoración suave de la esquina */
  .category-card::after {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
  
    width: 90px;
    height: 90px;
  
    background: rgba(12, 81, 74, 0.05);
    border-radius: 50%;
  }
  
  /* Círculo de los iconos */
  .category-card i {
    position: relative;
    z-index: 1;
  
    width: 58px;
    height: 58px;
  
    display: grid;
    place-items: center;
  
    color: #0c514a;
    background: #e8f3ef;
  
    border: 1px solid rgba(12, 81, 74, 0.12);
    border-radius: 50%;
  
    font-size: 27px;
  
    box-shadow: 0 7px 16px rgba(8, 61, 57, 0.10);
  
    transition:
      color 0.25s ease,
      background 0.25s ease,
      transform 0.25s ease;
  }
  
  /* Corrige los iconos de Font Awesome */
  .category-card i.fas {
    font-weight: 900;
  }
  
  .category-card i.far {
    font-weight: 400;
  }
  
  /* Nombre de la categoría */
  .category-card span {
    position: relative;
    z-index: 1;
  
    display: block;
    color: #123330;
  
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
  }
  
  /* Movimiento suave al pasar el cursor */
  .category-card:hover {
    transform: translateY(-5px);
  
    border-color: rgba(239, 181, 38, 0.65);
  
    box-shadow:
      0 18px 32px rgba(8, 61, 57, 0.13);
  }
  
  .category-card:hover i {
    color: white;
    background: #0c514a;
    transform: scale(1.06);
  }
  
  /* Tabletas */
  @media (max-width: 1050px) {
    .category-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Teléfonos */
  @media (max-width: 600px) {
    .category-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
  
    .category-card {
      min-height: 145px;
      padding: 18px 8px;
    }
  
    .category-card i {
      width: 50px;
      height: 50px;
      font-size: 23px;
    }
  
    .category-card span {
      font-size: 12px;
    }
  }
  
  /* Teléfonos muy pequeños */
  @media (max-width: 360px) {
    .category-grid {
      grid-template-columns: 1fr;
    }
  }

  /* SEPARACIÓN SIMPLE Y ELEGANTE */

/* Elimina los diseños anteriores */
.features-section {
    margin-top: 0;
    padding-top: 92px;
    border-radius: 0;
    box-shadow: none;
  }
  
  .features-section::before,
  .features-section::after {
    display: none !important;
    content: none !important;
  }
  
  /* Línea dorada debajo de la portada */
  .hero {
    border-bottom: 4px solid #efb526;
  
    box-shadow:
      0 10px 25px rgba(8, 61, 57, 0.13);
  }

  /* =====================================
   OPCIÓN ACTUAL DEL MENÚ SIN JAVASCRIPT
===================================== */

/* Estado normal */
.main-nav a {
    color: #314a48;
    font-weight: 650;
  }
  
  .main-nav a::after {
    right: 100% !important;
  }
  
  /* Inicio activo al abrir la página */
  .main-nav a[href="#inicio"] {
    color: #083d39;
    font-weight: 800;
  }
  
  .main-nav a[href="#inicio"]::after {
    right: 0 !important;
  }
  
  /* Desactiva Inicio al entrar en otra sección */
  body:has(#guia:target) .main-nav a[href="#inicio"],
  body:has(#preguntas:target) .main-nav a[href="#inicio"] {
    color: #314a48;
    font-weight: 650;
  }
  
  body:has(#guia:target) .main-nav a[href="#inicio"]::after,
  body:has(#preguntas:target) .main-nav a[href="#inicio"]::after {
    right: 100% !important;
  }
  
  /* Cómo funciona activo */
  body:has(#guia:target) .main-nav a[href="#guia"] {
    color: #083d39;
    font-weight: 800;
  }
  
  body:has(#guia:target) .main-nav a[href="#guia"]::after {
    right: 0 !important;
  }
  
  /* Ayuda activo */
  body:has(#preguntas:target) .main-nav a[href="#preguntas"] {
    color: #083d39;
    font-weight: 800;
  }
  
  body:has(#preguntas:target) .main-nav a[href="#preguntas"]::after {
    right: 0 !important;
  }
  
  /* Iconos de las opciones marcadas */
  .main-nav a[href="#inicio"] i,
  body:has(#guia:target) .main-nav a[href="#guia"] i,
  body:has(#preguntas:target) .main-nav a[href="#preguntas"] i {
    color: #0c514a;
  }
  
  /* Evita que el encabezado cubra la sección */
  html {
    scroll-padding-top: 105px;
  }


  /* =====================================
   SECCIÓN CONOCE EL SISTEMA
===================================== */

.system-section {
    padding: 90px 24px;
    background: #f4f8f6;
  }
  
  .system-panel {
    width: min(1180px, 100%);
    min-height: 485px;
    margin: 0 auto;
  
    display: grid;
    grid-template-columns: 42% 58%;
  
    overflow: hidden;
  
    background: white;
    border: 1px solid #dce5e2;
    border-radius: 18px;
  
    box-shadow: 0 20px 50px rgba(8, 61, 57, 0.12);
  }
  
  /* Parte izquierda */
  
  .system-copy {
    position: relative;
    z-index: 2;
  
    padding: 62px 55px;
  
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  
  .system-copy h2 {
    margin: 10px 0 20px;
  
    color: #102b2a;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.04em;
  }
  
  .system-copy p {
    margin: 0 0 19px;
  
    color: #60706f;
    font-size: 15px;
    line-height: 1.75;
  }
  
  .system-copy .button {
    margin-top: 8px;
  }
  
  /* Parte derecha */
  
  .system-visual {
    position: relative;
    overflow: hidden;
  
    min-height: 485px;
  
    background: #dcece7;
  }
  
  .system-church {
    position: absolute;
    inset: 0;
  
    width: 100%;
    height: 100%;
  
    object-fit: cover;
    object-position: center;
  
    filter:
      brightness(1.08)
      saturate(0.82);
  }
  
  /* Suaviza la fotografía para que no compita con los dispositivos */
  
  .system-image-overlay {
    position: absolute;
    inset: 0;
  
    background:
      linear-gradient(
        90deg,
        rgba(235, 246, 242, 0.44),
        rgba(218, 238, 232, 0.15)
      ),
      linear-gradient(
        0deg,
        rgba(8, 61, 57, 0.08),
        transparent 50%
      );
  }
  
  /* Computadora */
  
  .laptop-mockup {
    position: absolute;
    z-index: 3;
  
    left: 6%;
    bottom: 10%;
  
    width: 70%;
  }
  
  .laptop-frame {
    position: relative;
  
    padding: 10px;
  
    background: linear-gradient(
      145deg,
      #263b39,
      #0c2422
    );
  
    border-radius: 13px 13px 5px 5px;
  
    box-shadow: 0 22px 35px rgba(0, 30, 27, 0.32);
  }
  
  .laptop-camera {
    position: absolute;
    top: 4px;
    left: 50%;
  
    width: 4px;
    height: 4px;
  
    background: #72908b;
    border-radius: 50%;
  
    transform: translateX(-50%);
  }
  
  .laptop-screen {
    min-height: 180px;
    padding: 14px;
  
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 10px;
  
    background: #f8faf9;
    border-radius: 7px;
  }
  
  .laptop-base {
    width: 114%;
    height: 13px;
    margin-left: -7%;
  
    background: linear-gradient(
      to bottom,
      #d7dddc,
      #8f9b99
    );
  
    border-radius: 2px 2px 13px 13px;
  
    clip-path: polygon(
      5% 0,
      95% 0,
      100% 70%,
      55% 100%,
      45% 100%,
      0 70%
    );
  }
  
  /* Lista de reportes dentro de la computadora */
  
  .mini-report-list {
    padding: 11px;
  
    background: white;
    border: 1px solid #e1e8e6;
    border-radius: 7px;
  }
  
  .mini-report-list > strong {
    display: block;
    margin-bottom: 11px;
  
    color: #183432;
    font-size: 10px;
  }
  
  .mini-report {
    display: grid;
    grid-template-columns: 17px 1fr auto;
    align-items: center;
    gap: 5px;
  
    padding: 8px 0;
  
    border-top: 1px solid #edf1f0;
  
    color: #445b58;
    font-size: 7px;
  }
  
  .mini-report i {
    color: #238170;
    text-align: center;
  }
  
  .mini-report small {
    padding: 3px 4px;
  
    color: #24695d;
    background: #e5f2ed;
  
    border-radius: 8px;
    font-size: 5px;
  }
  
  /* Mapa simulado */
  
  .mini-map {
    position: relative;
    overflow: hidden;
  
    background:
      linear-gradient(35deg, transparent 46%, white 47% 53%, transparent 54%),
      linear-gradient(125deg, transparent 44%, white 45% 52%, transparent 53%),
      #dce8e3;
  
    border-radius: 7px;
  }
  
  .mini-road {
    position: absolute;
    display: block;
  
    background: rgba(255, 255, 255, 0.88);
  }
  
  .road-a {
    top: 48%;
    left: -10%;
    width: 120%;
    height: 8px;
  
    transform: rotate(-18deg);
  }
  
  .road-b {
    top: -10%;
    left: 48%;
    width: 8px;
    height: 120%;
  
    transform: rotate(15deg);
  }
  
  .mini-pin {
    position: absolute;
    z-index: 2;
  
    font-size: 17px;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.18));
  }
  
  .pin-green {
    top: 19%;
    right: 24%;
    color: #26846f;
  }
  
  .pin-gold {
    top: 48%;
    left: 33%;
    color: #e6a70d;
  }
  
  .pin-blue {
    right: 22%;
    bottom: 14%;
    color: #3487ae;
  }
  
  /* Teléfono */
  
  .phone-mockup {
    position: absolute;
    z-index: 5;
  
    right: 5%;
    bottom: 7%;
  
    width: 122px;
    min-height: 245px;
    padding: 10px 8px;
  
    background: #102321;
  
    border: 3px solid #071412;
    border-radius: 24px;
  
    box-shadow: 0 20px 35px rgba(0, 25, 23, 0.38);
  }
  
  .phone-notch {
    position: absolute;
    top: 5px;
    left: 50%;
  
    width: 42px;
    height: 9px;
  
    background: #071412;
    border-radius: 0 0 8px 8px;
  
    transform: translateX(-50%);
  }
  
  .phone-content {
    height: 100%;
    min-height: 220px;
    padding: 17px 9px 10px;
  
    background: #f8faf9;
    border-radius: 16px;
  
    color: #173331;
  }
  
  .phone-content strong {
    display: block;
    margin-bottom: 13px;
  
    text-align: center;
    font-size: 9px;
  }
  
  .phone-content label {
    display: block;
    margin: 7px 0 3px;
  
    color: #60706f;
    font-size: 6px;
  }
  
  .phone-field {
    display: block;
    height: 16px;
  
    background: white;
    border: 1px solid #d6e0dd;
    border-radius: 3px;
  }
  
  .phone-field-large {
    height: 32px;
  }
  
  .phone-button {
    min-height: 22px;
    margin-top: 11px;
  
    display: grid;
    place-items: center;
  
    color: white;
    background: #0c514a;
  
    border-radius: 4px;
    font-size: 6px;
    font-weight: 800;
  }
  
  /* Adaptación para tabletas */
  
  @media (max-width: 900px) {
    .system-panel {
      grid-template-columns: 1fr;
    }
  
    .system-copy {
      padding: 48px 40px;
    }
  
    .system-visual {
      min-height: 470px;
    }
  }
  
  /* Adaptación para teléfonos */
  
  @media (max-width: 560px) {
    .system-section {
      padding: 60px 16px;
    }
  
    .system-panel {
      border-radius: 15px;
    }
  
    .system-copy {
      padding: 38px 25px;
    }
  
    .system-copy h2 {
      font-size: 34px;
    }
  
    .system-visual {
      min-height: 380px;
    }
  
    .laptop-mockup {
      left: 3%;
      bottom: 12%;
      width: 79%;
    }
  
    .laptop-screen {
      min-height: 145px;
      padding: 8px;
    }
  
    .phone-mockup {
      right: 3%;
      width: 97px;
      min-height: 205px;
    }
  
    .phone-content {
      min-height: 180px;
    }
  }

  /* =====================================
   LAPTOP MÁS REALISTA
===================================== */

.laptop-mockup {
    position: absolute;
    z-index: 3;
  
    left: 7%;
    bottom: 9%;
  
    width: 67%;
  
    filter: drop-shadow(
      0 22px 18px rgba(0, 28, 25, 0.30)
    );
  }
  
  /* Marco de la pantalla */
  .laptop-frame {
    position: relative;
  
    padding: 12px 12px 15px;
  
    background: linear-gradient(
      145deg,
      #29413e 0%,
      #102725 55%,
      #071816 100%
    );
  
    border: 1px solid #455d59;
    border-radius: 15px 15px 6px 6px;
  
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      inset 0 -2px 0 rgba(0, 0, 0, 0.30);
  }
  
  /* Cámara */
  .laptop-camera {
    top: 5px;
  
    width: 5px;
    height: 5px;
  
    background: #6e918b;
  
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25);
  }
  
  /* Pequeño logotipo debajo de la pantalla */
  .laptop-frame::after {
    content: "";
    position: absolute;
  
    left: 50%;
    bottom: 5px;
  
    width: 24px;
    height: 3px;
  
    background: rgba(255, 255, 255, 0.20);
    border-radius: 10px;
  
    transform: translateX(-50%);
  }
  
  /* Pantalla */
  .laptop-screen {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  
    padding: 12px;
  
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10px;
  
    overflow: hidden;
  
    background: #f8faf9;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 7px;
  }
  
  /* Bisagra */
  .laptop-mockup::before {
    content: "";
    position: absolute;
    z-index: 5;
  
    left: 50%;
    bottom: 12px;
  
    width: 34%;
    height: 7px;
  
    background: #071816;
    border-radius: 0 0 7px 7px;
  
    transform: translateX(-50%);
  }
  
  /* Base metálica */
  .laptop-base {
    position: relative;
  
    width: 116%;
    height: 21px;
  
    margin-top: -1px;
    margin-left: -8%;
  
    background: linear-gradient(
      to bottom,
      #e2e7e6 0%,
      #b4bfbd 42%,
      #778683 100%
    );
  
    border-radius: 2px 2px 15px 15px;
  
    clip-path: polygon(
      4% 0,
      96% 0,
      100% 68%,
      93% 100%,
      7% 100%,
      0 68%
    );
  
    box-shadow:
      inset 0 1px 0 white,
      0 6px 8px rgba(0, 28, 25, 0.22);
  }
  
  /* Hendidura central de la base */
  .laptop-base::after {
    content: "";
    position: absolute;
  
    top: 3px;
    left: 50%;
  
    width: 42px;
    height: 5px;
  
    background: rgba(92, 109, 105, 0.40);
    border-radius: 0 0 8px 8px;
  
    transform: translateX(-50%);
  }
  
  /* Ajusta el contenido interior */
  .mini-report-list {
    padding: 10px;
  }
  
  .mini-report {
    padding: 7px 0;
  }
  
  .mini-map {
    min-width: 0;
  }
  
  /* Tabletas */
  @media (max-width: 900px) {
    .laptop-mockup {
      left: 6%;
      width: 69%;
    }
  }
  
  /* Teléfonos */
  @media (max-width: 560px) {
    .laptop-mockup {
      left: 3%;
      bottom: 13%;
      width: 76%;
    }
  
    .laptop-frame {
      padding: 8px 8px 11px;
      border-radius: 11px 11px 4px 4px;
    }
  
    .laptop-screen {
      padding: 7px;
      gap: 6px;
    }
  
    .laptop-base {
      height: 15px;
    }
  
    .laptop-frame::after {
      bottom: 3px;
    }
  }

  /* =====================================
   CATEGORÍAS CON ICONOS LINEALES
===================================== */

.category-section {
    background: #fbfcfa !important;
  }
  
  .category-grid {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
  
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 13px;
  }
  
  .category-card {
    position: relative;
    overflow: hidden;
  
    min-height: 155px;
    padding: 22px 10px;
  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  
    color: #0b4944;
    text-align: center;
    cursor: default;
  
    background: #ffffff !important;
    border: 1px solid #e2e9e7 !important;
    border-radius: 9px !important;
  
    box-shadow:
      0 6px 18px rgba(9, 57, 52, 0.08) !important;
  
    transition:
      transform 0.22s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease;
  }
  
  /* Elimina los adornos anteriores */
  .category-card::before,
  .category-card::after {
    display: none !important;
    content: none !important;
  }
  
  /* Contenedor del icono */
  .category-line-icon {
    width: 58px;
    height: 58px;
  
    display: grid;
    place-items: center;
  
    color: #0b514b;
    background: transparent;
  }
  
  /* Icono lineal */
  .category-line-icon svg {
    width: 54px !important;
    height: 54px !important;
  
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8 !important;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  /* Nombre */
  .category-card strong {
    max-width: 120px;
  
    color: #113d39;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 800;
  }
  
  /* Efecto muy suave */
  .category-card:hover {
    transform: translateY(-3px);
  
    border-color: rgba(11, 81, 75, 0.28) !important;
  
    box-shadow:
      0 10px 24px rgba(9, 57, 52, 0.11) !important;
  }
  
  .category-card:hover .category-line-icon {
    color: #d99a08;
  }
  
  /* Tabletas */
  @media (max-width: 1050px) {
    .category-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Teléfonos */
  @media (max-width: 600px) {
    .category-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 11px;
    }
  
    .category-card {
      min-height: 145px;
      padding: 18px 8px;
    }
  
    .category-line-icon {
      width: 50px;
      height: 50px;
    }
  
    .category-line-icon svg {
      width: 47px !important;
      height: 47px !important;
    }
  
    .category-card strong {
      font-size: 12px;
    }
  }

  /* Diferencia entre categorías y preguntas frecuentes */

.category-section {
    background: linear-gradient(
      180deg,
      #edf5f2 0%,
      #f3f8f6 100%
    ) !important;
  
    border-top: 1px solid #dce8e4;
    border-bottom: 1px solid #dce8e4;
  }
  
  .faq-section {
    background: #ffffff !important;
  }

/* =====================================
   ICONO DE COMUNIDAD CON CORAZÓN
===================================== */

.community-icon {
    position: relative;
  
    width: 94px !important;
    height: 94px !important;
    flex: 0 0 94px;
  
    display: grid !important;
    place-items: center;
  
    background: linear-gradient(
      145deg,
      #0f7467,
      #07564e
    ) !important;
  
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50% !important;
  
    box-shadow:
      0 12px 25px rgba(0, 25, 23, 0.25);
  }
  
  /* Personas dibujadas en línea */
  .community-icon svg {
    width: 59px;
    height: 59px;
  
    fill: none;
    stroke: white;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  /* Corazón amarillo */
  .community-heart {
    position: absolute;
  
    right: -3px;
    bottom: 7px;
  
    display: grid;
    place-items: center;
  
    filter: drop-shadow(
      0 4px 5px rgba(0, 0, 0, 0.22)
    );
  }
  
  .community-heart i {
    color: #f4bd36 !important;
    font-size: 32px !important;
  }
  
  /* Franja amarilla inferior */
  .final-cta {
    position: relative;
  
    border-bottom: 1px solid #efb526;
  
    box-shadow:
      0 7px 18px rgba(8, 61, 57, 0.14);
  }
  
  /* Adaptación para teléfonos */
  @media (max-width: 600px) {
    .community-icon {
      width: 80px !important;
      height: 80px !important;
      flex-basis: 80px;
    }
  
    .community-icon svg {
      width: 50px;
      height: 50px;
    }
  
    .community-heart i {
      font-size: 27px !important;
    }
  }

  /* Botón y tiempo aproximado del reporte */

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .report-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
  }
  
  .report-time i {
    color: #efb526;
    font-size: 13px;
  }
  
  @media (max-width: 600px) {
    .cta-action {
      width: 100%;
    }
  
    .cta-action .button {
      width: 100%;
    }
  
    .report-time {
      font-size: 11px;
    }
  }

  /* =====================================
   PIE DE PÁGINA
===================================== */

.site-footer {
    position: relative;
    overflow: hidden;
  
    padding: 52px 0 0;
  
    color: rgba(255, 255, 255, 0.78);
  
    background:
      radial-gradient(
        circle at 15% 20%,
        rgba(24, 112, 98, 0.24),
        transparent 27%
      ),
      radial-gradient(
        circle at 86% 75%,
        rgba(13, 100, 86, 0.20),
        transparent 30%
      ),
      linear-gradient(
        120deg,
        #032f2c 0%,
        #043b36 55%,
        #032a27 100%
      );
  }
  
  .site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.55fr 1.25fr;
    gap: 85px;
  
    padding-bottom: 45px;
  }
  
  /* Identidad */
  
  .site-footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
  
    color: white;
  }
  
  .footer-logo {
    width: 64px;
    height: 64px;
    padding: 4px;
  
    object-fit: contain;
  
    background: white;
    border: 2px solid rgba(239, 181, 38, 0.65);
    border-radius: 50%;
  }
  
  .site-footer .footer-brand strong,
  .site-footer .footer-brand small {
    display: block;
  }
  
  .site-footer .footer-brand strong {
    font-size: 14px;
  }
  
  .site-footer .footer-brand small {
    margin-top: 5px;
  
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
  }
  
  .site-footer .footer-message {
    margin: 22px 0 17px;
  
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
  }
  
  /* Redes sociales */
  
  .social-links {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .site-footer .social-links a {
    width: 34px;
    height: 34px;
    margin: 0;
  
    display: grid;
    place-items: center;
  
    color: white;
    background: rgba(255, 255, 255, 0.12);
  
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
  
    font-size: 14px;
  
    transition:
      color 0.2s,
      background 0.2s,
      transform 0.2s;
  }
  
  .site-footer .social-links a:hover {
    color: #083d39;
    background: #efb526;
    transform: translateY(-2px);
  }
  
  /* Títulos */
  
  .site-footer h3 {
    margin: 5px 0 18px;
  
    color: white;
    font-size: 14px;
    font-weight: 800;
  }
  
  /* Enlaces rápidos */
  
  .site-footer .footer-links a {
    display: block;
    width: fit-content;
    margin: 11px 0;
  
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
  
    transition:
      color 0.2s,
      transform 0.2s;
  }
  
  .site-footer .footer-links a:hover {
    color: #efb526;
    transform: translateX(3px);
  }
  
  /* Contacto */
  
  .footer-contact {
    min-width: 0;
  }
  
  .site-footer .contact-item {
    width: 100%;
    margin: 0 0 15px;
  
    display: flex;
    align-items: flex-start;
    gap: 11px;
  
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.65;
  }
  
  .site-footer .contact-item i {
    width: 17px;
    margin-top: 4px;
  
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
  }
  
  .site-footer a.contact-item:hover {
    color: #efb526;
  }
  
  /* Parte inferior */
  
  .site-footer .footer-bottom {
    padding: 20px 0;
  
    color: rgba(255, 255, 255, 0.48);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  
    font-size: 11px;
    text-align: center;
  }
  
  /* Tabletas */
  
  @media (max-width: 900px) {
    .site-footer .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 42px;
    }
  
    .site-footer .footer-about {
      grid-column: 1 / -1;
    }
  }
  
  /* Teléfonos */
  
  @media (max-width: 560px) {
    .site-footer {
      padding-top: 42px;
    }
  
    .site-footer .footer-grid {
      grid-template-columns: 1fr;
      gap: 35px;
    }
  
    .site-footer .footer-about {
      grid-column: auto;
    }
  
    .footer-logo {
      width: 56px;
      height: 56px;
    }
  
    .site-footer .footer-bottom {
      line-height: 1.6;
    }
  }

  /* Iconos de enlaces externos */

.site-footer .footer-links a {
    display: flex;
    align-items: center;
    gap: 7px;
  }
  
  .site-footer .footer-links a i {
    font-size: 9px;
    opacity: 0.65;
  }
  
  /* Evita que el correo se salga en teléfonos */
  
  .site-footer .contact-item span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  
  /* Facebook un poco más visible */
  
  .site-footer .social-links a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  /* Aclaración sobre lo que puede reportarse */

.category-scope-note {
    width: min(880px, 100%);
    margin: 28px auto 0;
    padding: 16px 18px;
  
    display: flex;
    align-items: flex-start;
    gap: 11px;
  
    color: #34514e;
    background: rgba(255, 255, 255, 0.86);
  
    border: 1px solid #dce7e3;
    border-left: 4px solid #efb526;
    border-radius: 9px;
  
    font-size: 12px;
    line-height: 1.6;
  }
  
  .category-scope-note i {
    margin-top: 4px;
  
    color: #0c514a;
    font-size: 16px;
  }
  
  .category-scope-note p {
    margin: 0;
  }
  
  .category-scope-note strong {
    color: #123d39;
  }

  /* Descripciones de las categorías */

.category-card {
    min-height: 205px;
    padding: 22px 13px;
    gap: 8px;
  }
  
  .category-card strong {
    margin-top: 5px;
  }
  
  .category-description {
    display: block;
    max-width: 145px;
    margin: 0;
  
    color: #667875;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
  }
  
  /* Teléfonos */
  
  @media (max-width: 600px) {
    .category-card {
      min-height: 190px;
    }
  
    .category-description {
      max-width: 135px;
      font-size: 9.5px;
    }
  }

  /* Alineación uniforme de las tarjetas */

.category-card strong {
    min-height: 45px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    line-height: 1.25;
    text-align: center;
  }
  
  .category-description {
    min-height: 45px;
  
    display: flex;
    align-items: flex-start;
    justify-content: center;
  
    font-size: 10.5px;
  }

  /* =====================================
   CORRECCIÓN DEL MENÚ EN TELÉFONOS
===================================== */

@media (max-width: 860px) {
  .site-header {
    overflow: visible !important;
  }

  .main-nav {
    position: absolute !important;
    z-index: 1000;

    top: 100% !important;
    left: 16px !important;
    right: 16px !important;

    padding: 12px;

    background: #ffffff;
    border: 1px solid #dce5e2;
    border-top: 4px solid #0c514a;
    border-radius: 0 0 14px 14px;

    box-shadow:
      0 18px 35px rgba(8, 61, 57, 0.20);
  }

  .main-nav.is-open {
    display: grid !important;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 13px;

    color: #173331;
    border-radius: 8px;
  }

  .main-nav a:hover,
  .main-nav a:active {
    background: #e8f3ef;
  }
}

/* =====================================
   LAPTOP Y TELÉFONO EN PANTALLAS PEQUEÑAS
===================================== */

@media (max-width: 560px) {
  .system-visual {
    min-height: 340px !important;
  }

  /* Laptop más pequeña */
  .laptop-mockup {
    display: block !important;
    left: 3% !important;
    bottom: 13% !important;
    width: 70% !important;
    transform: none !important;
  }

  .laptop-frame {
    padding: 6px 6px 9px;
    border-radius: 9px 9px 4px 4px;
  }

  .laptop-screen {
    min-height: 115px !important;
    padding: 6px !important;
    gap: 5px !important;
  }

  .laptop-base {
    height: 12px;
  }

  /* Teléfono más pequeño */
  .phone-mockup {
    display: block !important;
    right: 3% !important;
    bottom: 9% !important;
    width: 76px !important;
    min-height: 160px !important;
    padding: 6px 5px !important;
    border-width: 2px;
    border-radius: 18px;
    transform: none !important;
  }

  .phone-notch {
    top: 4px;
    width: 27px;
    height: 6px;
  }

  .phone-content {
    min-height: 143px !important;
    padding: 13px 5px 6px !important;
    border-radius: 12px;
  }

  .phone-content strong {
    margin-bottom: 6px;
    font-size: 7px;
  }

  .phone-content label {
    margin: 4px 0 2px;
    font-size: 5px;
  }

  .phone-field {
    height: 10px;
  }

  .phone-field-large {
    height: 19px;
  }

  .phone-button {
    min-height: 16px;
    margin-top: 6px;
    font-size: 5px;
  }

  .system-church {
    object-position: center;
  }
}

/* Menú desplegable para teléfonos */

@media (max-width: 860px) {
  .menu-button {
    position: relative;
    z-index: 1101;
    display: flex !important;
    pointer-events: auto;
  }

  .main-nav {
    display: none !important;
    z-index: 1100;
  }

  .main-nav.is-open {
    display: grid !important;
  }
}

@media (min-width: 601px) and (max-width: 860px) {
  .cta-inner {
    grid-template-columns: 95px minmax(0, 1fr) !important;
    column-gap: 28px;
    row-gap: 20px;
    padding: 42px 0;
  }

  .community-icon,
  .cta-icon {
    justify-self: start;
  }

  .cta-inner h2 {
    margin-left: 0;
  }

  .cta-action {
    grid-column: 2 !important;
    width: auto;
    justify-self: start;
    align-items: flex-start;
  }

  .cta-action .button {
    width: auto !important;
    min-width: 225px;
    white-space: nowrap;
  }

  .report-time {
    width: 100%;
    white-space: nowrap;
  }
}

/* =====================================
   OPCIONES DE CUENTA EN MENÚ MÓVIL
===================================== */

/* Ocultas en computadora */

.mobile-account-link {
  display: none !important;
}


/* Menú del teléfono */

@media (max-width: 860px) {
  .main-nav {
    gap: 7px !important;

    max-height: calc(100vh - 105px);
    overflow-y: auto;
  }

  /* Iniciar sesión y Crear cuenta como enlaces normales */

  .main-nav .mobile-account-link,
  .main-nav .mobile-login-link,
  .main-nav .mobile-register-link {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;

    width: 100%;
    min-height: auto;
    margin: 0 !important;
    padding: 14px 13px !important;

    color: #173331 !important;
    background: transparent !important;

    border: 0 !important;
    border-radius: 8px;

    box-shadow: none !important;

    font-size: 14px;
    font-weight: 750;
    text-align: left;
  }

  /* Oculta la línea amarilla de estas dos opciones */

  .main-nav .mobile-account-link::after,
  .main-nav .mobile-login-link::after,
  .main-nav .mobile-register-link::after {
    display: none !important;
    content: none !important;
  }

  /* Efecto al tocar la opción */

  .main-nav .mobile-account-link:hover,
  .main-nav .mobile-account-link:active,
  .main-nav .mobile-login-link:hover,
  .main-nav .mobile-login-link:active,
  .main-nav .mobile-register-link:hover,
  .main-nav .mobile-register-link:active {
    color: #083d39 !important;
    background: #e8f3ef !important;
  }
}

/* =====================================
   OPCIÓN DE CUENTA ACTUAL EN TELÉFONOS
===================================== */

@media (max-width: 860px) {
  .main-nav .mobile-account-link.active {
    position: relative;

    color: #083d39 !important;
    background: transparent !important;

    font-weight: 800;
  }

  .main-nav .mobile-account-link.active::after {
    content: "" !important;

    position: absolute;

    display: block !important;

    left: 50% !important;
    right: auto !important;
    bottom: 2px;

    width: min(265px, 70%);
    height: 2px;

    background: #efb526;

    border-radius: 999px;

    transform: translateX(-50%);
  }
}


@media (min-width: 1001px) {
  .site-header
  .main-nav a {
    white-space: nowrap;
  }
}

@media (min-width: 861px) {
  .site-header
  .header-actions .button {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* =========================================
   IDENTIDAD UNIFORME DEL ENCABEZADO
========================================= */

.site-header .brand strong {
  display: block;

  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.site-header .brand small {
  display: block;

  margin-top: 3px;

  color: var(--muted);

  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

/* =========================================
   CATEGORÍAS DINÁMICAS DEL INICIO
========================================= */

.category-grid {
  grid-template-columns:
    repeat(
      auto-fit,
      minmax(145px, 1fr)
    );
}

.category-line-icon i {
  display: grid;
  place-items: center;

  width: 54px;
  height: 54px;

  color: #0c514a;

  font-size: 35px;
  line-height: 1;
}

.category-loading,
.category-empty {
  grid-column: 1 / -1;

  min-height: 150px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 24px;

  color: #60706f;
  background: #ffffff;

  border: 1px solid #dce5e2;
  border-radius: 14px;

  text-align: center;
}

.category-loading i,
.category-empty i {
  color: #0c514a;
  font-size: 20px;
}

.category-empty.is-error i {
  color: #b42318;
}

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .category-line-icon i {
    width: 47px;
    height: 47px;
    font-size: 29px;
  }
}

@media (max-width: 360px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   CORRECCIÓN DE ICONOS DE CATEGORÍAS
========================================= */

.category-line-icon i.fa-solid,
.category-line-icon i.fas {
  font-family: "Font Awesome 6 Free" !important;
  font-style: normal !important;
  font-weight: 900 !important;
}

.category-line-icon i.fa-regular,
.category-line-icon i.far {
  font-family: "Font Awesome 6 Free" !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

.category-line-icon i {
  display: grid;
  place-items: center;

  width: 54px;
  height: 54px;

  color: #0c514a;

  font-size: 35px;
  line-height: 1;
}

/* =========================================
   ALINEACIÓN UNIFORME DE CATEGORÍAS
========================================= */

.category-section .category-card {
  display: grid !important;

  grid-template-rows:
    64px
    48px
    1fr;

  justify-items: center;
  align-items: start;

  gap: 12px;

  min-height: 245px !important;
  padding: 28px 14px 22px !important;

  text-align: center;
}


/* Contenedor uniforme para todos los iconos */

.category-section
.category-card
.category-line-icon {
  width: 58px !important;
  height: 58px !important;

  display: grid !important;
  place-items: center !important;

  margin: 0 !important;
  padding: 0 !important;

  align-self: start;
}


/* Tamaño uniforme del símbolo */

.category-section
.category-card
.category-line-icon i {
  width: 58px !important;
  height: 58px !important;

  display: grid !important;
  place-items: center !important;

  margin: 0 !important;
  padding: 0 !important;

  font-size: 31px !important;
  line-height: 1 !important;
}


/* Todos los títulos ocupan el mismo espacio */

.category-section
.category-card
strong {
  width: 100%;
  min-height: 48px;

  display: flex !important;
  align-items: center;
  justify-content: center;

  margin: 0 !important;

  font-size: 13px;
  line-height: 1.25;
  text-align: center;
}


/* Todas las descripciones comienzan a la misma altura */

.category-section
.category-card
.category-description {
  width: 100%;

  display: block;

  margin: 0 !important;
  padding: 0 !important;

  color: #667875;

  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 600px) {
  .category-section .category-card {
    grid-template-rows:
      56px
      45px
      1fr;

    gap: 10px;

    min-height: 225px !important;
    padding: 20px 10px !important;
  }

  .category-section
  .category-card
  .category-line-icon,
  .category-section
  .category-card
  .category-line-icon i {
    width: 50px !important;
    height: 50px !important;
  }

  .category-section
  .category-card
  .category-line-icon i {
    font-size: 27px !important;
  }

  .category-section
  .category-card
  strong {
    min-height: 45px;
    font-size: 12px;
  }

  .category-section
  .category-card
  .category-description {
    font-size: 9.5px;
  }
}

/* =========================================
   DISTRIBUCIÓN DINÁMICA DE CATEGORÍAS
========================================= */

.category-section .category-grid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;

  gap: 14px;

  width: 100%;
  max-width: 1040px;

  margin: 0 auto;
}

.category-section
.category-grid
.category-card {
  flex: 0 1 160px;

  width: 160px;
  max-width: 160px;
}


/* Teléfonos */

@media (max-width: 600px) {
  .category-section .category-grid {
    gap: 11px;
  }

  .category-section
  .category-grid
  .category-card {
    flex:
      0 1
      calc(50% - 6px);

    width:
      calc(50% - 6px);

    max-width: none;
  }
}


/* Teléfonos muy pequeños */

@media (max-width: 360px) {
  .category-section
  .category-grid
  .category-card {
    flex: 0 1 100%;

    width: 100%;
    max-width: 260px;
  }
}