/* ========================================
   AJUSTES ESPECÍFICOS — HÉRNIA DE DISCO
   Toda a estrutura vem de
   treatment-base.css.
   Use este arquivo só para exceções
   pontuais desta página específica.
   ======================================== */

   /* ========================================
   COMPLEMENTO ESPECÍFICO — HÉRNIA DE DISCO
   Inserir no final de hernia-de-disco.css
   ======================================== */

/* ========================================
   AJUSTE DA FAIXA DE CONFIANÇA
   Textos mais curtos, leitura mais rápida
   ======================================== */

.treatment-trust-grid .trust-item strong {
    font-size: 0.9rem;
    line-height: 1.35;
}

.treatment-trust-grid .trust-item small {
    max-width: 190px;
    font-size: 0.74rem;
    line-height: 1.55;
}


/* ========================================
   BLOCO EDUCATIVO — ALÉM DO EXAME
   ======================================== */

.hernia-insight-section {
    position: relative;
    overflow: hidden;
    padding-top: 96px;
    padding-bottom: 104px;
}

.hernia-insight-section::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(200, 155, 109, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.hernia-insight-panel {
    position: relative;
    z-index: 2;
    overflow: hidden;

    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.82fr);
    align-items: center;
    gap: clamp(42px, 6vw, 82px);

    padding: clamp(34px, 5vw, 58px);

    border: 1px solid rgba(7, 95, 85, 0.12);
    border-radius: 34px;

    background:
        radial-gradient(
            circle at 94% 12%,
            rgba(200, 155, 109, 0.14),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f8f4ee 100%
        );

    box-shadow:
        0 30px 80px rgba(4, 47, 42, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.025);
}

.hernia-insight-panel::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -160px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(7, 95, 85, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hernia-insight-copy,
.hernia-insight-stack {
    position: relative;
    z-index: 2;
}

.hernia-insight-copy .eyebrow,
.hernia-insight-card > span,
.hernia-card-kicker,
.hernia-local-note span {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: var(--champagne, #c89b6d);
    font-size: 0.68rem;
    line-height: 1.3;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hernia-insight-copy .eyebrow::before,
.hernia-card-kicker::before,
.hernia-local-note span::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.hernia-insight-card > span {
    margin-bottom: 10px;
    color: rgba(200, 155, 109, 0.9);
    font-size: 0.61rem;
}

.hernia-insight-copy h2 {
    max-width: 780px;
    margin: 0 0 24px;

    color: var(--green-950, #042f2a);

    font-family:
        var(--font-display, "Cormorant Garamond"),
        Georgia,
        serif;

    font-size: clamp(2.65rem, 4.5vw, 4.65rem);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -0.045em;

    text-wrap: balance;
}

.hernia-insight-copy p {
    max-width: 760px;
    margin: 0 0 18px;

    color: rgba(29, 29, 29, 0.68);
    font-size: 0.98rem;
    line-height: 1.86;
}

.hernia-insight-copy p:last-child {
    margin-bottom: 0;
}

.hernia-insight-stack {
    display: grid;
    gap: 13px;
}

.hernia-insight-card {
    position: relative;
    overflow: hidden;

    padding: 22px 24px;

    border: 1px solid rgba(7, 95, 85, 0.12);
    border-radius: 21px;

    background: rgba(255, 255, 255, 0.75);

    box-shadow:
        0 18px 44px rgba(4, 47, 42, 0.055),
        0 4px 14px rgba(0, 0, 0, 0.02);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.hernia-insight-card::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -55px;
    width: 128px;
    height: 128px;
    border: 1px solid rgba(200, 155, 109, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.hernia-insight-card:hover {
    transform: translateX(6px);
    border-color: rgba(200, 155, 109, 0.44);
    box-shadow:
        0 24px 56px rgba(4, 47, 42, 0.09),
        0 8px 20px rgba(0, 0, 0, 0.03);
}

.hernia-insight-card--featured {
    border-color: rgba(200, 155, 109, 0.38);
    background:
        radial-gradient(
            circle at 92% 14%,
            rgba(200, 155, 109, 0.18),
            transparent 32%
        ),
        var(--green-950, #042f2a);
}

.hernia-insight-card strong {
    position: relative;
    z-index: 2;
    display: block;

    margin-bottom: 8px;

    color: var(--green-950, #042f2a);

    font-family:
        var(--font-display, "Cormorant Garamond"),
        Georgia,
        serif;

    font-size: 1.48rem;
    line-height: 1.12;
    font-weight: 600;
}

.hernia-insight-card p {
    position: relative;
    z-index: 2;
    margin: 0;

    color: rgba(29, 29, 29, 0.64);
    font-size: 0.84rem;
    line-height: 1.68;
}

.hernia-insight-card--featured strong {
    color: #ffffff;
}

.hernia-insight-card--featured p {
    color: rgba(255, 255, 255, 0.68);
}


/* ========================================
   SEO LOCAL — QUANDO PROCURAR AJUDA
   ======================================== */

.hernia-local-section {
    position: relative;
    overflow: hidden;
    padding-top: 112px;
    padding-bottom: 112px;

    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(200, 155, 109, 0.11),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #fbf8f3 0%,
            #ffffff 100%
        );
}

.hernia-local-section::before {
    content: "";
    position: absolute;
    top: 120px;
    left: -170px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(7, 95, 85, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.hernia-local-header {
    max-width: 940px;
    margin-bottom: 54px;
}

.hernia-local-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.hernia-local-card {
    position: relative;
    overflow: hidden;

    min-height: 310px;
    padding: 31px 30px;

    border-radius: 27px;

    box-shadow:
        0 24px 62px rgba(4, 47, 42, 0.10),
        0 8px 20px rgba(0, 0, 0, 0.03);

    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.38s ease,
        border-color 0.3s ease;
}

.hernia-local-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(200, 155, 109, 0.9),
        transparent
    );
    opacity: 0.7;
}

.hernia-local-card::after {
    content: "";
    position: absolute;
    right: -64px;
    bottom: -72px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 1px solid rgba(200, 155, 109, 0.20);
    pointer-events: none;

    transition: transform 0.4s ease;
}

.hernia-local-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 34px 80px rgba(4, 47, 42, 0.16),
        0 10px 28px rgba(0, 0, 0, 0.045);
}

.hernia-local-card:hover::after {
    transform: scale(1.14);
}

.hernia-local-card--dark {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(
            circle at 90% 12%,
            rgba(200, 155, 109, 0.18),
            transparent 34%
        ),
        var(--green-950, #042f2a);
}

.hernia-local-card--light {
    border: 1px solid rgba(7, 95, 85, 0.12);
    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(7, 95, 85, 0.075),
            transparent 32%
        ),
        #ffffff;
}

.hernia-local-card--gold {
    border: 1px solid rgba(200, 155, 109, 0.38);
    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(200, 155, 109, 0.18),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #fffaf4 0%,
            #f5efe6 100%
        );
}

.hernia-card-kicker {
    position: relative;
    z-index: 2;
}

.hernia-local-card--dark .hernia-card-kicker {
    color: var(--champagne, #c89b6d);
}

.hernia-local-card h3 {
    position: relative;
    z-index: 2;

    max-width: 320px;
    margin: 0 0 16px;

    color: var(--green-950, #042f2a);

    font-family:
        var(--font-display, "Cormorant Garamond"),
        Georgia,
        serif;

    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    line-height: 1.03;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.hernia-local-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: rgba(29, 29, 29, 0.66);
    font-size: 0.9rem;
    line-height: 1.78;
}

.hernia-local-card--dark h3 {
    color: #ffffff;
}

.hernia-local-card--dark p {
    color: rgba(255, 255, 255, 0.72);
}

.hernia-local-note {
    position: relative;
    z-index: 2;
    overflow: hidden;

    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 38px;

    margin-top: 24px;
    padding: 32px 36px;

    border: 1px solid rgba(7, 95, 85, 0.13);
    border-radius: 26px;

    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(200, 155, 109, 0.14),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #eef6f2 0%,
            #ffffff 100%
        );

    box-shadow:
        0 22px 58px rgba(4, 47, 42, 0.08),
        0 6px 18px rgba(0, 0, 0, 0.025);
}

.hernia-local-note::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(200, 155, 109, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.hernia-local-note > div,
.hernia-local-note p {
    position: relative;
    z-index: 2;
}

.hernia-local-note strong {
    display: block;

    color: var(--green-950, #042f2a);

    font-family:
        var(--font-display, "Cormorant Garamond"),
        Georgia,
        serif;

    font-size: clamp(1.65rem, 2.7vw, 2.35rem);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.hernia-local-note p {
    margin: 0;

    color: rgba(22, 49, 44, 0.72);
    font-size: 0.92rem;
    line-height: 1.78;
}


/* ========================================
   RESPONSIVO
   ======================================== */

@media (max-width: 980px) {
    .hernia-insight-panel,
    .hernia-local-note {
        grid-template-columns: 1fr;
    }

    .hernia-local-grid {
        grid-template-columns: 1fr;
    }

    .hernia-local-card {
        min-height: auto;
    }
}

@media (max-width: 680px) {
    .hernia-insight-section,
    .hernia-local-section {
        padding-top: 74px;
        padding-bottom: 74px;
    }

    .hernia-insight-panel,
    .hernia-local-card,
    .hernia-local-note {
        padding: 24px;
        border-radius: 22px;
    }

    .hernia-insight-copy h2,
    .hernia-local-header h2 {
        font-size: clamp(2.35rem, 10vw, 3.45rem);
    }

    .hernia-insight-card {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hernia-insight-card,
    .hernia-local-card {
        transition: none;
    }

    .hernia-insight-card:hover,
    .hernia-local-card:hover {
        transform: none;
    }
}

.specialist-register {
    margin: 10px 0 26px;

    color: var(--champagne, #c89b6d);
    font-size: 0.78rem;
    line-height: 1.0;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.specialist-quote {
    position: relative;

    margin: 0 0 30px;
    padding: 23px 0 23px 28px;

    border-left: 3px solid var(--champagne, #c89b6d);

    color: var(--green-950, #042f2a);

    font-family:
        var(--font-display, "Cormorant Garamond"),
        Georgia,
        serif;

    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
    line-height: 1.28;
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.specialist-quote::before {
    content: "“";
    position: absolute;
    top: 12px;
    left: 18px;

    color: rgba(200, 155, 109, 0.16);

    font-family:
        var(--font-display, "Cormorant Garamond"),
        Georgia,
        serif;

    font-size: 6rem;
    line-height: 1;

    pointer-events: none;
}

.specialist-sales-copy .specialist-register + .specialist-quote {
    margin-top: 4px;
}

@media (max-width: 680px) {
    .specialist-register {
        margin-bottom: 22px;
    }

    .specialist-quote {
        padding-left: 22px;

        font-size: 1.55rem;
    }

    .specialist-quote::before {
        left: 12px;

        font-size: 4.6rem;
    }
}
