/* =========================================================
   DORREGO TURISMO - CSS LIMPIO
   Archivo: assets/css/dorrego.css
========================================================= */

:root {
    --dorrego-verde-principal: #3D5F1C;
    --dorrego-verde-profundo: #2B4216;
    --dorrego-verde-claro: #7EA63A;

    --dorrego-arena: #A08D6F;
    --dorrego-arena-claro: #D8CBB8;

    --dorrego-verde-salvia: #C6CCA0;

    --dorrego-fondo: #F3EFE3;
    --dorrego-fondo-claro: #FBFAF4;
    --dorrego-blanco: #FFFFFF;

    --dorrego-dorado-suave: #E8D8A8;
    --dorrego-celeste-suave: #9EC7D6;

    --dorrego-gris-oscuro: #333333;
    --dorrego-texto: #263024;
    --dorrego-texto-suave: #667066;

    --dorrego-borde: rgba(51, 51, 51, 0.12);
    --dorrego-sombra: rgba(51, 51, 51, 0.12);
}

/* =========================================================
   RESET / BASE
========================================================= */

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    min-height: 100%;
    background: var(--dorrego-fondo);
    overflow-x: hidden;
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

body,
.dorrego-home,
.dorrego-home * {
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.site-header,
#masthead,
.main-header-bar,
.ast-primary-header-bar,
.ast-mobile-header-wrap,
.ast-desktop-header-content,
.main-navigation,
.ast-builder-menu,
.site-footer,
#colophon {
    display: none !important;
}

.dorrego-home {
    min-height: 100vh;
    background: var(--dorrego-fondo);
    color: var(--dorrego-texto);
    overflow: hidden;
}

.dorrego-home * {
    box-sizing: border-box;
}

.dorrego-home a {
    color: inherit;
    text-decoration: none !important;
}

.dorrego-wrap {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   HERO / SLIDER
========================================================= */

.dorrego-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background: var(--dorrego-gris-oscuro);
}

.dorrego-hero__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.dorrego-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 900ms ease, transform 5000ms ease;
}

.dorrego-hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.dorrego-hero__slide img,
.dorrego-hero__slide video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.dorrego-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(43, 66, 22, 0.82) 0%,
            rgba(43, 66, 22, 0.56) 44%,
            rgba(43, 66, 22, 0.12) 82%
        ),
        linear-gradient(
            to bottom,
            rgba(51, 51, 51, 0.08),
            rgba(51, 51, 51, 0.28)
        );
    pointer-events: none;
}

.dorrego-hero__inner {
    position: relative;
    z-index: 3;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 96px 0 120px;
}

.dorrego-hero__content {
    max-width: 740px;
}

.dorrego-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    margin-bottom: 22px;
    background: var(--dorrego-dorado-suave);
    color: var(--dorrego-gris-oscuro);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.dorrego-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(3.6rem, 7.4vw, 6.8rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.075em;
    text-shadow: 0 5px 28px rgba(0, 0, 0, 0.28);
}

.dorrego-hero p {
    max-width: 620px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
    line-height: 1.65;
    font-weight: 500;
}

.dorrego-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.dorrego-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    transition: 0.2s ease;
}

.dorrego-btn:hover {
    transform: translateY(-2px);
}

.dorrego-btn--primary {
    background: var(--dorrego-verde-principal);
    color: var(--dorrego-fondo-claro) !important;
    border-color: var(--dorrego-verde-principal);
}

.dorrego-btn--primary:hover {
    background: var(--dorrego-verde-claro);
    border-color: var(--dorrego-verde-claro);
    color: var(--dorrego-gris-oscuro) !important;
}

.dorrego-btn--ghost {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(8px);
}

.dorrego-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff !important;
}

.dorrego-slide-caption {
    width: fit-content;
    max-width: 360px;
    margin-top: 34px;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.dorrego-slide-caption small {
    display: block;
    margin-bottom: 6px;
    color: var(--dorrego-dorado-suave);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dorrego-slide-caption strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.35;
    font-weight: 700;
}

.dorrego-slider-controls {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dorrego-slider-dot {
    width: 34px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: 0.2s ease;
}

.dorrego-slider-dot.is-active {
    width: 56px;
    background: var(--dorrego-dorado-suave);
}

.dorrego-slider-arrows {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.dorrego-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: 96px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    font-size: 4rem;
    line-height: 1;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
    pointer-events: auto;
    transition: 0.18s ease;
}

.dorrego-slider-arrow:hover {
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.dorrego-slider-arrow[data-slider-prev] {
    left: 18px;
}

.dorrego-slider-arrow[data-slider-next] {
    right: 18px;
}

/* =========================================================
   BLOQUE PRINCIPAL / SECCIONES
========================================================= */

.dorrego-access-redesign {
    position: relative;
    z-index: 8;
    margin-top: -60px;
    padding: 0 0 86px;
    background: var(--dorrego-fondo);
}

.dorrego-access-redesign__head {
    max-width: 780px;
    margin: 0 0 36px;
    padding-top: 34px;
}

.dorrego-access-redesign__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    margin-bottom: 18px;
    background: rgba(126, 166, 58, 0.14);
    color: var(--dorrego-verde-principal);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dorrego-access-redesign__head h2 {
    margin: 0;
    color: var(--dorrego-verde-profundo);
    font-size: clamp(2.3rem, 5vw, 4.1rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.dorrego-access-redesign__head p {
    max-width: 690px;
    margin: 18px 0 0;
    color: var(--dorrego-texto-suave);
    font-size: 1.02rem;
    line-height: 1.7;
}

.dorrego-access-redesign__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.dorrego-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 445px;
    border-radius: 26px;
    overflow: hidden;
    text-decoration: none !important;
    background: var(--dorrego-fondo-claro);
    box-shadow: 0 22px 50px var(--dorrego-sombra);
    border: 1px solid rgba(51, 51, 51, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dorrego-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(51, 51, 51, 0.16);
}

.dorrego-feature-card__media {
    height: 190px;
    overflow: hidden;
    position: relative;
}

.dorrego-feature-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.dorrego-feature-card:hover .dorrego-feature-card__media img {
    transform: scale(1.04);
}

.dorrego-feature-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
    border-top: 7px solid transparent;
}

.dorrego-feature-card--olivo .dorrego-feature-card__body {
    border-top-color: var(--dorrego-verde-claro);
}

.dorrego-feature-card--rio .dorrego-feature-card__body {
    border-top-color: var(--dorrego-celeste-suave);
}

.dorrego-feature-card--marisol .dorrego-feature-card__body {
    border-top-color: var(--dorrego-verde-principal);
}

.dorrego-feature-card--eventos .dorrego-feature-card__body {
    border-top-color: var(--dorrego-arena);
}

.dorrego-feature-card__pill {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--dorrego-fondo);
    color: var(--dorrego-verde-profundo);
}

.dorrego-feature-card h3 {
    margin: 0;
    color: var(--dorrego-gris-oscuro);
    font-size: 1.55rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.dorrego-feature-card p {
    margin: 14px 0 0;
    color: var(--dorrego-texto-suave);
    font-size: 0.94rem;
    line-height: 1.62;
}

.dorrego-feature-card__footer {
    margin-top: auto;
    padding-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.dorrego-feature-card__link {
    color: var(--dorrego-gris-oscuro);
    font-size: 0.88rem;
    font-weight: 800;
}

.dorrego-feature-card__arrow {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--dorrego-verde-claro);
    color: var(--dorrego-gris-oscuro);
    font-size: 1rem;
    font-weight: 800;
}

/* =========================================================
   EXPERIENCIAS
========================================================= */

.dorrego-experiences {
    padding: 86px 0 92px;
    background: var(--dorrego-fondo-claro);
}

.dorrego-section-center {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.dorrego-section-center small {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--dorrego-verde-principal);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dorrego-section-center h2 {
    margin: 0;
    color: var(--dorrego-verde-profundo);
    font-size: clamp(2.2rem, 4.8vw, 3.7rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.dorrego-section-center p {
    max-width: 670px;
    margin: 18px auto 0;
    color: var(--dorrego-texto-suave);
    font-size: 1rem;
    line-height: 1.7;
}

.dorrego-experience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.dorrego-exp-card {
    min-height: 345px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: 26px;
    box-shadow: 0 22px 52px rgba(51, 51, 51, 0.10);
}

.dorrego-exp-card__number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 42px;
    background: rgba(251, 250, 244, 0.72);
    color: var(--dorrego-gris-oscuro);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.dorrego-exp-card small {
    display: block;
    margin-bottom: 10px;
    color: currentColor;
    opacity: 0.72;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dorrego-exp-card h3 {
    margin: 0;
    color: currentColor;
    font-size: 1.62rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.045em;
}

.dorrego-exp-card p {
    margin: 16px 0 0;
    color: currentColor;
    opacity: 0.82;
    font-size: 0.94rem;
    line-height: 1.6;
}

.dorrego-exp-card a {
    margin-top: auto;
    padding-top: 28px;
    color: currentColor !important;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none !important;
}

.dorrego-exp-card--olivo {
    background: var(--dorrego-dorado-suave);
    color: var(--dorrego-gris-oscuro);
}

.dorrego-exp-card--rio {
    background: var(--dorrego-verde-principal);
    color: var(--dorrego-fondo-claro);
}

.dorrego-exp-card--mar {
    background: var(--dorrego-celeste-suave);
    color: var(--dorrego-gris-oscuro);
}

.dorrego-exp-card--cultura {
    background: var(--dorrego-arena);
    color: var(--dorrego-fondo-claro);
}

/* =========================================================
   OLIVO
========================================================= */

.dorrego-olivo {
    padding: 86px 0 88px;
    background: var(--dorrego-fondo);
}

.dorrego-olivo__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.dorrego-olivo__intro small {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--dorrego-verde-principal);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dorrego-olivo__intro h2 {
    max-width: 560px;
    margin: 0;
    color: var(--dorrego-verde-profundo);
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.dorrego-olivo__intro p {
    max-width: 560px;
    margin: 22px 0 0;
    color: var(--dorrego-texto-suave);
    font-size: 1.02rem;
    line-height: 1.75;
}

.dorrego-olivo__seal {
    width: fit-content;
    margin-top: 26px;
    padding: 12px 15px;
    background: var(--dorrego-dorado-suave);
    color: var(--dorrego-gris-oscuro);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.dorrego-olivo__panel {
    background: var(--dorrego-fondo-claro);
    border: 1px solid var(--dorrego-borde);
    border-radius: 28px;
    box-shadow: 0 18px 48px rgba(51, 51, 51, 0.10);
    padding: 30px;
}

.dorrego-olivo__panel h3 {
    margin: 0;
    color: var(--dorrego-verde-profundo);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.dorrego-olivo__panel p {
    margin: 14px 0 0;
    color: var(--dorrego-texto-suave);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* =========================================================
   ACORDEÓN OLIVO / EXPERIENCIAS RURALES
========================================================= */

.dorrego-olive-panel {
    padding: 0 !important;
    overflow: hidden;
}

.dorrego-olive-panel__head {
    padding: 30px 30px 22px;
}

.dorrego-olive-panel__head small {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--dorrego-verde-principal);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dorrego-olive-panel__head h3 {
    margin: 0;
    color: var(--dorrego-verde-profundo);
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.045em;
}

.dorrego-olive-panel__head p {
    max-width: 620px;
    margin: 14px 0 0;
    color: var(--dorrego-texto-suave);
    font-size: 0.96rem;
    line-height: 1.65;
}

.dorrego-olive-accordion {
    padding: 0 18px 18px;
}

.dorrego-olive-item {
    overflow: hidden;
    border: 1px solid var(--dorrego-borde);
    border-radius: 18px;
    background: var(--dorrego-fondo);
    transition: 0.22s ease;
}

.dorrego-olive-item + .dorrego-olive-item {
    margin-top: 10px;
}

.dorrego-olive-item.is-open {
    background: var(--dorrego-fondo-claro);
    box-shadow: 0 16px 38px rgba(51, 51, 51, 0.08);
}

.dorrego-olive-trigger {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 0;
    background: transparent;
    color: var(--dorrego-gris-oscuro);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.dorrego-olive-trigger span {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
}

.dorrego-olive-trigger b {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--dorrego-verde-claro);
    color: var(--dorrego-gris-oscuro);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    transition: 0.22s ease;
}

.dorrego-olive-item.is-open .dorrego-olive-trigger b {
    transform: rotate(45deg);
    background: var(--dorrego-verde-principal);
    color: var(--dorrego-fondo-claro);
}

.dorrego-olive-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    transition: max-height 0.28s ease, padding 0.28s ease;
}

.dorrego-olive-item.is-open .dorrego-olive-content {
    max-height: 260px;
    padding: 0 18px 18px;
}

.dorrego-olive-content p {
    margin: 0;
    color: var(--dorrego-texto-suave);
    font-size: 0.92rem;
    line-height: 1.6;
}

.dorrego-olive-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.dorrego-olive-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(126, 166, 58, 0.14);
    color: var(--dorrego-verde-profundo);
    font-size: 0.72rem;
    font-weight: 800;
}

.dorrego-olive-content a {
    display: inline-flex;
    width: fit-content;
    margin-top: 16px;
    color: var(--dorrego-verde-principal) !important;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none !important;
}

.dorrego-olive-note {
    margin: 0 30px 30px;
    padding-top: 20px;
    border-top: 1px solid var(--dorrego-borde);
    color: var(--dorrego-texto-suave);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =========================================================
   QR
========================================================= */

.dorrego-qr {
    padding: 0 0 76px;
    background: var(--dorrego-fondo);
}

.dorrego-qr__box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    background: var(--dorrego-gris-oscuro);
    color: var(--dorrego-fondo-claro);
    border-radius: 28px;
    box-shadow: 0 20px 56px rgba(51, 51, 51, 0.14);
}

.dorrego-qr__box small {
    display: block;
    margin-bottom: 8px;
    color: var(--dorrego-dorado-suave);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dorrego-qr__box h2 {
    margin: 0;
    color: var(--dorrego-fondo-claro);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.dorrego-qr__box p {
    max-width: 720px;
    margin: 14px 0 0;
    color: rgba(251, 250, 244, 0.78);
    font-size: 0.98rem;
    line-height: 1.6;
}

.dorrego-qr__tag {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    background: var(--dorrego-dorado-suave);
    color: var(--dorrego-gris-oscuro);
    border-radius: 22px;
    font-size: 1.1rem;
    font-weight: 800;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .dorrego-access-redesign {
        margin-top: 0;
        padding-top: 38px;
    }

    .dorrego-access-redesign__grid,
    .dorrego-experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dorrego-olivo__grid {
        grid-template-columns: 1fr;
    }

    .dorrego-qr__box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dorrego-wrap,
    .dorrego-hero__inner {
        width: calc(100% - 28px);
    }

    .dorrego-hero {
        min-height: auto;
    }

    .dorrego-hero__inner {
        padding: 92px 0 58px;
    }

    .dorrego-hero h1 {
        font-size: clamp(3rem, 16vw, 4.2rem);
        line-height: 0.92;
    }

    .dorrego-hero p {
        font-size: 1rem;
        line-height: 1.55;
    }

    .dorrego-actions {
        flex-direction: column;
    }

    .dorrego-btn {
        width: 100%;
    }

    .dorrego-slide-caption {
        width: 100%;
        max-width: 100%;
    }

    .dorrego-slider-arrows {
        display: none;
    }

    .dorrego-slider-controls {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin-top: 24px;
    }

    .dorrego-access-redesign__grid,
    .dorrego-experience-grid {
        grid-template-columns: 1fr;
    }

    .dorrego-feature-card,
    .dorrego-exp-card {
        min-height: auto;
    }

    .dorrego-olivo__list {
        grid-template-columns: 1fr;
    }

    .dorrego-qr__box {
        padding: 26px;
    }

    .dorrego-olive-panel__head {
        padding: 24px 22px 18px;
    }

    .dorrego-olive-accordion {
        padding: 0 14px 14px;
    }

    .dorrego-olive-note {
        margin: 0 22px 24px;
    }

    .dorrego-olive-item.is-open .dorrego-olive-content {
        max-height: 360px;
    }
}