/* Mapeamento Individual Elementor — CSS isolado */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&display=swap');

.mie-page,
.mie-page * {
    box-sizing: border-box;
}

.mie-page {
    --bg-page: #F8F6EF;
    --bg-card: #FFFFFF;
    --text-main: #3D352E;
    --text-support: #70655A;
    --brand-sage: #A3B89F;
    --brand-sage-dark: #6F8066;
    --btn-black: #17171A;
    --overlay-dark: rgba(16, 18, 20, 0.66);
    --grid-line: rgba(163, 184, 159, 0.20);
    --font-main: 'Poppins', sans-serif;

    font-family: var(--font-main);
    background-color: var(--bg-page);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mie-page:first-child {
    padding-top: 60px;
}

.mie-footer-page {
    padding-top: 40px;
    padding-bottom: 54px;
}

/* Elementos reutilizáveis */
.mie-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-sage-dark);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mie-eyebrow .line {
    width: 30px;
    height: 3px;
    background-color: var(--brand-sage-dark);
    border-radius: 2px;
    display: inline-block;
}

.mie-eyebrow .dot {
    width: 4px;
    height: 4px;
    background: var(--text-main);
    border-radius: 50%;
    display: inline-block;
}

.mie-section-title {
    color: var(--text-main);
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0 0 48px;
    text-align: center;
    line-height: 1.2;
}

.mie-section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brand-sage-dark);
}

/* =========================================
   SEÇÃO 1: HERO BANNER
   ========================================= */
.mie-hero-banner {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--grid-line);
    max-width: 1100px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(61, 53, 46, 0.04);
}

.mie-hero-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.mie-hero-content .mie-eyebrow {
    margin-bottom: 16px;
}

.mie-hero-content h1 {
    color: var(--text-main);
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.mie-hero-content p {
    color: var(--text-support);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 16px;
    max-width: 520px;
    font-weight: 300;
}

.mie-hero-content p strong {
    font-weight: 500;
    color: var(--text-main);
}

.mie-hero-highlight {
    font-size: 1.05rem ;
    font-style: italic;
    color: var(--text-main);
    margin-top: 8px !important;
    margin-bottom: 40px !important;
    border-left: 3px solid var(--brand-sage);
    padding-left: 16px;
}

.mie-hero-highlight strong {
    font-weight: 600 ;
    font-style: normal;
}

.mie-btn-agendar {
    display: inline-flex;
    align-items: center;
    background-color: var(--btn-black);
    color: #FFFFFF;
    text-decoration: none ;
    padding: 8px 24px 8px 8px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 400;
    width: max-content;
    max-width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow .2s ease;
}

.mie-btn-agendar:hover {
    background-color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(61, 53, 46, .14);
}

.mie-btn-icon {
    background-color: var(--brand-sage);
    color: var(--btn-black);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    flex: 0 0 auto;
}

.mie-hero-image-container {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.mie-hero-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--overlay-dark), transparent);
    pointer-events: none;
    z-index: 2;
}

.mie-hero-image-container img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 400px;
    z-index: 1;
    display: block;
}

/* =========================================
   SEÇÃO 2: O QUE EXPLORAMOS
   ========================================= */
.mie-differentials-section {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.mie-diff-left {
    flex: 0 0 35%;
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mie-diff-left h2 {
    color: var(--text-main);
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.mie-diff-left h2 em {
    color: var(--brand-sage-dark);
    font-style: italic;
    font-weight: 400;
}

.mie-diff-arrow {
    width: 100%;
    height: 1px;
    background-color: var(--text-support);
    position: relative;
    margin: 20px 0;
    opacity: 0.3;
}

.mie-diff-arrow::after {
    content: '>';
    position: absolute;
    right: -4px;
    top: -10px;
    font-size: 1.2rem;
    color: var(--text-support);
}

.mie-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid var(--brand-sage-dark);
    color: var(--brand-sage-dark);
    text-decoration: none ;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: max-content;
    transition: all 0.3s ease;
    background: rgba(163, 184, 159, 0.05);
}

.mie-btn-outline:hover {
    background-color: var(--brand-sage-dark);
    color: #FFFFFF;
}

.mie-diamond-icon {
    width: 6px;
    height: 6px;
    border: 1px solid currentColor;
    transform: rotate(45deg);
}

.mie-diff-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mie-diff-card {
    background: rgba(163, 184, 159, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 8px 32px rgba(61, 53, 46, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 168px;
    gap: 16px;
}

.mie-diff-card:hover {
    transform: translateY(-4px);
    background: rgba(163, 184, 159, 0.35);
    box-shadow: 0 12px 40px rgba(61, 53, 46, 0.08);
}

.mie-diff-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.mie-diff-card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(163, 184, 159, 0.15);
}

.mie-diff-card-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--brand-sage-dark);
}

.mie-diff-card p {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* =========================================
   SEÇÃO 3: FORMATOS DE ENCONTRO
   ========================================= */
.mie-formats-section {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mie-formats-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border: 1px solid rgba(112, 101, 90, 0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.85rem;
    color: var(--text-support);
    margin-bottom: 24px;
}

.mie-formats-badge .diamond {
    width: 6px;
    height: 6px;
    border: 1px solid var(--text-support);
    transform: rotate(45deg);
}

.mie-formats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.mie-format-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(112, 101, 90, 0.15);
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(61, 53, 46, 0.02);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow .3s ease;
}

.mie-format-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(61, 53, 46, 0.05);
}

.mie-format-card-line {
    position: absolute;
    top: -1px;
    left: 32px;
    width: 40px;
    height: 3px;
    background-color: var(--brand-sage-dark);
    border-radius: 2px;
}

.mie-format-card-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(112, 101, 90, 0.2);
    border-radius: 50px;
    padding: 4px 16px 4px 4px;
    margin-bottom: 20px;
    width: max-content;
}

.mie-pill-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(163, 184, 159, 0.2);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.9rem;
}

.mie-pill-text {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
}

.mie-format-card p {
    color: var(--text-support);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* =========================================
   SEÇÃO 4: PARA QUEM É
   ========================================= */
.mie-audience-section {
    max-width: 1100px;
    width: 100%;
}

.mie-audience-box {
    background: linear-gradient(135deg, var(--brand-sage), var(--brand-sage-dark));
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    box-shadow: 0 15px 40px rgba(111, 128, 102, 0.15);
}

.mie-audience-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background-color: var(--bg-page);
    border-radius: 0 0 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px;
}

.mie-audience-notch svg {
    width: 14px;
    height: 14px;
    fill: var(--brand-sage-dark);
}

.mie-audience-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.mie-audience-title {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.3;
    margin: 0 auto 24px;
    letter-spacing: -0.01em;
    max-width: 900px;
    color: #FFFFFF;
}

.mie-audience-title em {
    font-style: italic;
    font-weight: 400;
}

.mie-audience-text {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.85;
    color: #FFFFFF;
}

/* =========================================
   SEÇÃO 5: PROPÓSITO
   ========================================= */
.mie-purpose-section {
    max-width: 1100px;
    width: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 550px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(61, 53, 46, 0.08);
}

.mie-purpose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mie-purpose-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mie-purpose-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, transparent 60%);
    z-index: 2;
}

.mie-purpose-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 48px;
    max-width: 500px;
    position: relative;
    z-index: 3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.mie-purpose-pill {
    display: inline-flex;
    align-items: center;
    background-color: #F4EFEA;
    border-radius: 50px;
    margin-bottom: 24px;
    overflow: hidden;
}

.mie-purpose-pill-dark {
    background-color: var(--text-main);
    color: #FFFFFF;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 50px;
}

.mie-purpose-pill-light {
    color: var(--text-main);
    padding: 6px 16px 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mie-purpose-card h3 {
    color: var(--text-main);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}

.mie-purpose-divider {
    width: 100%;
    height: 1px;
    background-color: var(--grid-line);
    margin-bottom: 24px;
}

.mie-purpose-card p {
    color: var(--text-support);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0 0 16px;
}

.mie-purpose-card .mie-highlight-quote {
    color: var(--brand-sage-dark);
    font-weight: 500;
    font-style: italic;
    font-size: 1.05rem;
    margin-top: 24px;
    margin-bottom: 0;
    border-left: 2px solid var(--brand-sage);
    padding-left: 16px;
}

/* =========================================
   SEÇÃO 6: TIMELINE
   ========================================= */
.mie-timeline-section {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mie-timeline-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mie-timeline-header .mie-section-title {
    margin-bottom: 0;
    margin-top: 16px;
}

.mie-timeline-container {
    position: relative;
    width: 100%;
}

.mie-timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--brand-sage) 0%, rgba(163, 184, 159, 0) 100%);
}

.mie-timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.mie-timeline-item:last-child {
    margin-bottom: 0;
}

.mie-timeline-marker {
    width: 66px;
    height: 66px;
    background-color: var(--bg-card);
    border: 2px solid var(--brand-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(163, 184, 159, 0.2);
}

.mie-timeline-card {
    background-color: var(--bg-card);
    border: 1px solid var(--grid-line);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(61, 53, 46, 0.02);
    width: 100%;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow .3s ease;
}

.mie-timeline-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-sage);
    box-shadow: 0 8px 30px rgba(61, 53, 46, 0.05);
}

.mie-timeline-card::before {
    content: '';
    position: absolute;
    top: 24px;
    left: -9px;
    width: 16px;
    height: 16px;
    background-color: var(--bg-card);
    border-left: 1px solid var(--grid-line);
    border-bottom: 1px solid var(--grid-line);
    transform: rotate(45deg);
    transition: border-color 0.3s ease;
}

.mie-timeline-card:hover::before {
    border-color: var(--brand-sage);
}

.mie-timeline-card h3 {
    color: var(--text-main);
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0 0 12px;
}

.mie-timeline-card p {
    color: var(--text-support);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* RODAPÉ */
.mie-footer {
    max-width: 1100px;
    width: 100%;
    padding: 34px 0 0;
    border-top: 1px solid rgba(230,223,211,.78);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 34px;
}

.mie-footer-brand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.mie-logo-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand-sage);
    box-shadow: 0 0 0 6px rgba(163,184,159,.12);
    margin-top: 4px;
    flex: 0 0 auto;
}

.mie-footer strong {
    display: block;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 8px;
}

.mie-footer p {
    color: var(--text-support);
    font-size: .92rem;
    line-height: 1.6;
    margin: 0 0 14px;
    max-width: 440px;
    font-weight: 300;
}

.mie-footer-contact {
    text-align: right;
}

.mie-footer-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--btn-black);
    color: #FFFFFF;
    text-decoration: none ;
    padding: 7px 20px 7px 7px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 400;
    width: max-content;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow .2s ease;
}

.mie-footer-button:hover {
    background-color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(61, 53, 46, .14);
}

.mie-footer-button span {
    background-color: var(--brand-sage);
    color: var(--btn-black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   RESPONSIVIDADE
   ========================================= */
@media (max-width: 991px) {
    .mie-differentials-section {
        flex-direction: column;
        gap: 40px;
    }

    .mie-diff-left {
        position: relative;
        top: 0;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .mie-diff-arrow {
        display: none;
    }

    .mie-audience-box {
        padding: 60px 40px;
    }

    .mie-audience-title {
        font-size: 1.8rem;
    }

    .mie-purpose-section {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .mie-page {
        padding: 30px 16px;
    }

    .mie-hero-content {
        padding: 40px 30px;
        text-align: center;
        align-items: center;
    }

    .mie-hero-content h1,
    .mie-diff-left h2,
    .mie-section-title,
    .mie-purpose-card h3 {
        font-size: 2rem;
    }

    .mie-hero-highlight {
        padding-left: 0;
        border-left: 0;
        border-top: 3px solid var(--brand-sage);
        padding-top: 16px;
    }

    .mie-diff-right,
    .mie-formats-grid {
        grid-template-columns: 1fr;
    }

    .mie-audience-box {
        padding: 50px 24px;
        border-radius: 16px;
    }

    .mie-audience-title {
        font-size: 1.5rem;
    }

    .mie-audience-text {
        font-size: 0.95rem;
    }

    .mie-purpose-section {
        padding: 24px;
        min-height: auto;
    }

    .mie-purpose-bg::after {
        background: rgba(0,0,0,0.4);
    }

    .mie-purpose-card {
        padding: 32px 24px;
        width: 100%;
    }

    .mie-timeline-item {
        gap: 20px;
    }

    .mie-timeline-marker {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .mie-timeline-container::before {
        left: 23px;
    }

    .mie-timeline-card {
        padding: 24px;
    }

    .mie-timeline-card::before {
        top: 15px;
    }

    .mie-timeline-card h3 {
        font-size: 1.2rem;
    }

    .mie-footer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .mie-footer-brand {
        flex-direction: column;
        align-items: center;
    }

    .mie-footer-contact {
        text-align: center;
    }

    .mie-footer p {
        margin-left: auto;
        margin-right: auto;
    }
}


/* v1.0.1 — Hero corrigida: texto à esquerda e foto à direita no desktop */
.mie-hero-banner {
    flex-direction: row !important;
    align-items: stretch !important;
}

.mie-hero-content {
    flex: 0 0 58% !important;
}

.mie-hero-image-container {
    flex: 0 0 42% !important;
    min-height: 100% !important;
}

.mie-hero-image-container img {
    width: 100% !important;
    height: 100% !important;
    min-height: 520px !important;
    object-fit: cover !important;
    object-position: center center;
}

@media (max-width: 991px) {
    .mie-hero-banner {
        flex-direction: column !important;
    }

    .mie-hero-image-container {
        flex: 0 0 auto !important;
        width: 100% !important;
    }

    .mie-hero-image-container img {
        height: auto !important;
        min-height: 400px !important;
    }
}

@media (max-width: 767px) {
    .mie-hero-image-container img {
        min-height: 360px !important;
    }
}


/* v1.0.2 — Identidade visual Daniela Parente + fundo de grid */
.mie-page {
    --bg-page: #f8f6ef;
    --bg-card: rgba(253, 251, 247, .74);
    --text-main: #3d352e;
    --text-support: #70655a;
    --brand-sage: #a3b89f;
    --brand-sage-dark: #6f8066;
    --brand-sage-hover: #8fa48b;
    --terracotta: #cc6d52;
    --sand: #e6dfd3;
    --beige: #ebe4d8;
    --btn-black: #17171A;
    --overlay-dark: rgba(16, 18, 20, 0.56);
    --grid-line: rgba(230, 223, 211, .72);
    --grid-bg-line: rgba(255, 255, 255, .82);
    --font-main: 'Poppins', sans-serif;
    --shadow-soft: 0 14px 40px rgba(61, 53, 46, .05);

    font-family: var(--font-main) ;
    color: var(--text-main);
    background-color: var(--bg-page);
    background-image:
        linear-gradient(to right, var(--grid-bg-line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-bg-line) 1px, transparent 1px);
    background-size: 64px 64px;
}

.mie-page h1,
.mie-page h2,
.mie-page h3,
.mie-page p,
.mie-page a,
.mie-page span,
.mie-page div {
    font-family: var(--font-main) ;
}

/* Cards principais com o acabamento da Daniela */
.mie-hero-banner,
.mie-format-card,
.mie-purpose-card,
.mie-timeline-card {
    background: var(--bg-card);
    border-color: var(--grid-line);
    box-shadow: var(--shadow-soft) !important;
}

.mie-hero-banner {
    border-radius: 18px !important;
}

.mie-purpose-card,
.mie-timeline-card,
.mie-format-card {
    border-radius: 18px !important;
}

.mie-purpose-section,
.mie-audience-box {
    box-shadow: 0 18px 44px rgba(61, 53, 46, .08) !important;
}

/* Verde mais Daniela, menos saturado */
.mie-diff-card {
    background: rgba(163, 184, 159, .20);
    border-color: rgba(255, 255, 255, .62);
    box-shadow: 0 14px 34px rgba(61, 53, 46, .045) !important;
}

.mie-diff-card:hover {
    background: rgba(163, 184, 159, .28);
    box-shadow: 0 18px 40px rgba(61, 53, 46, .07) !important;
}

.mie-diff-card-icon,
.mie-timeline-marker {
    background: rgba(253, 251, 247, .72);
    border-color: rgba(255, 255, 255, .8);
}

.mie-format-card-pill,
.mie-formats-badge {
    background: rgba(253, 251, 247, .45);
}

/* Botões no padrão da página Daniela */
.mie-btn-agendar,
.mie-footer-button {
    background: var(--text-main);
    font-weight: 500 ;
}

.mie-btn-agendar:hover,
.mie-footer-button:hover {
    background: #17171A;
}

.mie-btn-icon,
.mie-footer-button span {
    background: var(--brand-sage);
    color: var(--text-main);
}

/* Títulos mais próximos da página principal */
.mie-hero-content h1,
.mie-diff-left h2,
.mie-section-title,
.mie-purpose-card h3,
.mie-audience-title {
    color: var(--text-main);
    letter-spacing: -.025em;
}

.mie-section-title em,
.mie-diff-left h2 em {
    color: var(--brand-sage-dark);
}

/* Destaques com respiro premium */
.mie-hero-highlight,
.mie-purpose-card .mie-highlight-quote {
    border-color: var(--brand-sage);
}

/* Rodapé no mesmo clima visual */
.mie-footer {
    border-top-color: rgba(230, 223, 211, .78);
}

.mie-logo-dot {
    background: var(--brand-sage);
    box-shadow: 0 0 0 6px rgba(163, 184, 159, .12) !important;
}


/* v1.0.3 — Ícones pela biblioteca do Elementor + cores editáveis */
.mie-diff-card-icon i,
.mie-pill-icon i,
.mie-timeline-marker i {
    font-size: 22px;
    line-height: 1;
    color: var(--brand-sage-dark);
}

.mie-diff-card-icon svg,
.mie-pill-icon svg,
.mie-timeline-marker svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: var(--brand-sage-dark);
}

.mie-pill-icon svg,
.mie-timeline-marker svg {
    fill: var(--text-main);
}

.mie-pill-icon i,
.mie-timeline-marker i {
    color: var(--text-main);
}

.mie-diff-card-icon .elementor-icon,
.mie-pill-icon .elementor-icon,
.mie-timeline-marker .elementor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* v1.0.4 — Textos separados por Desktop, Tablet e Mobile */
.mie-device {
    box-sizing: border-box;
}

.mie-device-block {
    display: none;
}

.mie-device-inline {
    display: none;
}

.mie-device-desktop.mie-device-block {
    display: block;
}

.mie-device-desktop.mie-device-inline {
    display: inline;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .mie-device-desktop.mie-device-block,
    .mie-device-mobile.mie-device-block,
    .mie-device-desktop.mie-device-inline,
    .mie-device-mobile.mie-device-inline {
        display: none !important;
    }

    .mie-device-tablet.mie-device-block {
        display: block !important;
    }

    .mie-device-tablet.mie-device-inline {
        display: inline !important;
    }
}

@media (max-width: 767px) {
    .mie-device-desktop.mie-device-block,
    .mie-device-tablet.mie-device-block,
    .mie-device-desktop.mie-device-inline,
    .mie-device-tablet.mie-device-inline {
        display: none !important;
    }

    .mie-device-mobile.mie-device-block {
        display: block !important;
    }

    .mie-device-mobile.mie-device-inline {
        display: inline !important;
    }
}

/* Ajuste para wrappers de parágrafos responsivos não criarem espaçamento extra */
.mie-hero-content > .mie-device-block,
.mie-purpose-card > .mie-device-block {
    margin: 0;
}

.mie-format-card > .mie-device-block,
.mie-timeline-card > .mie-device-block {
    margin: 0;
}

.mie-footer-button em {
    font-style: normal;
}


/* v1.0.5 — Configurações realmente separadas por dispositivo.
   Cada widget renderiza uma versão própria para Desktop, Tablet e Mobile. */
.mie-device-shell {
    display: none !important;
}

@media (min-width: 1025px) {
    .mie-device-shell.mie-device-desktop {
        display: flex !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .mie-device-shell.mie-device-tablet {
        display: flex !important;
    }
}

@media (max-width: 767px) {
    .mie-device-shell.mie-device-mobile {
        display: flex !important;
    }
}

/* Garante que as seções antigas de texto responsivo não interfiram na v1.0.5 */
.mie-device-shell .mie-device {
    display: initial;
}


/* v1.0.9 — Ícones dos botões trocados de emoji para biblioteca do Elementor */
.mie-btn-icon i,
.mie-footer-button span i {
    font-size: 15px;
    line-height: 1;
    color: inherit;
}

.mie-btn-icon svg,
.mie-footer-button span svg {
    width: 15px;
    height: 15px;
    display: block;
    fill: currentColor;
}

.mie-btn-icon svg *,
.mie-footer-button span svg * {
    fill: currentColor;
}

.mie-btn-icon .elementor-icon,
.mie-footer-button span .elementor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* v1.0.10 — Ajuste de proporção para ficar mais próximo da página principal Daniela */
.mie-page {
    padding: 46px 20px !important;
}

.mie-footer-page {
    padding-top: 34px !important;
    padding-bottom: 44px !important;
}

/* Containers mais elegantes */
.mie-hero-banner,
.mie-differentials-section,
.mie-formats-section,
.mie-audience-section,
.mie-purpose-section,
.mie-footer {
    max-width: 1040px !important;
}

.mie-timeline-section {
    max-width: 840px !important;
}

/* Hero menos gigante */
.mie-hero-content {
    padding: 46px 48px !important;
}

.mie-hero-content h1 {
    font-size: 2.18rem ;
    line-height: 1.18 ;
    margin-bottom: 20px !important;
}

.mie-hero-content p {
    font-size: .9rem ;
    line-height: 1.62 ;
    margin-bottom: 13px !important;
    max-width: 500px !important;
}

.mie-hero-highlight {
    font-size: .98rem ;
    margin-bottom: 30px !important;
}

.mie-hero-image-container img {
    min-height: 430px !important;
}

/* Botões mais finos */
.mie-btn-agendar {
    font-size: .86rem ;
    padding: 7px 20px 7px 7px !important;
}

.mie-btn-icon {
    width: 32px !important;
    height: 32px !important;
    margin-right: 13px !important;
}

.mie-btn-icon i,
.mie-btn-icon svg,
.mie-footer-button span i,
.mie-footer-button span svg {
    width: 13px !important;
    height: 13px !important;
    font-size: 13px ;
}

/* Títulos e etiquetas */
.mie-eyebrow {
    font-size: .72rem ;
    letter-spacing: 1.35px ;
}

.mie-eyebrow .line {
    width: 26px !important;
    height: 2px !important;
}

.mie-section-title,
.mie-diff-left h2 {
    font-size: 2.05rem ;
    line-height: 1.16 ;
}

.mie-section-title {
    margin-bottom: 38px !important;
}

/* Exploramos */
.mie-differentials-section {
    gap: 48px !important;
}

.mie-diff-left {
    gap: 19px !important;
}

.mie-diff-arrow {
    margin: 14px 0 !important;
}

.mie-btn-outline {
    font-size: .76rem ;
    padding: 12px 20px !important;
    gap: 10px !important;
}

.mie-diff-right {
    gap: 18px !important;
}

.mie-diff-card {
    padding: 26px 20px !important;
    min-height: 142px !important;
    gap: 13px !important;
}

.mie-diff-card-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
}

.mie-diff-card-icon i,
.mie-diff-card-icon svg {
    width: 19px !important;
    height: 19px !important;
    font-size: 19px ;
}

.mie-diff-card p {
    font-size: .92rem ;
    line-height: 1.36 ;
}

/* Formatos */
.mie-formats-badge {
    font-size: .78rem ;
    padding: 5px 14px !important;
    margin-bottom: 18px !important;
}

.mie-formats-grid {
    gap: 20px !important;
}

.mie-format-card {
    padding: 32px 26px !important;
}

.mie-format-card-line {
    left: 26px !important;
    width: 34px !important;
}

.mie-format-card-pill {
    margin-bottom: 17px !important;
}

.mie-pill-icon {
    width: 25px !important;
    height: 25px !important;
    margin-right: 10px !important;
}

.mie-pill-icon i,
.mie-pill-icon svg {
    width: 14px !important;
    height: 14px !important;
    font-size: 14px ;
}

.mie-pill-text {
    font-size: .88rem ;
}

.mie-format-card p {
    font-size: .9rem ;
    line-height: 1.58 ;
}

/* Para quem é */
.mie-audience-box {
    padding: 60px 50px !important;
    border-radius: 20px !important;
}

.mie-audience-eyebrow {
    font-size: .75rem ;
    margin-bottom: 18px !important;
}

.mie-audience-title {
    font-size: 1.78rem ;
    line-height: 1.28 ;
    margin-bottom: 18px !important;
}

.mie-audience-text {
    font-size: .98rem ;
    line-height: 1.58 ;
}

/* Propósito */
.mie-purpose-section {
    min-height: 460px !important;
    padding: 46px !important;
    border-radius: 20px !important;
}

.mie-purpose-card {
    max-width: 460px !important;
    padding: 38px !important;
}

.mie-purpose-pill {
    margin-bottom: 20px !important;
}

.mie-purpose-pill-dark,
.mie-purpose-pill-light {
    font-size: .72rem ;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.mie-purpose-card h3 {
    font-size: 1.72rem ;
    line-height: 1.18 ;
    margin-bottom: 20px !important;
}

.mie-purpose-divider {
    margin-bottom: 20px !important;
}

.mie-purpose-card p {
    font-size: .9rem ;
    line-height: 1.58 ;
    margin-bottom: 13px !important;
}

.mie-purpose-card .mie-highlight-quote {
    font-size: .98rem ;
    margin-top: 20px !important;
}

/* Timeline */
.mie-timeline-header {
    margin-bottom: 46px !important;
}

.mie-timeline-item {
    gap: 30px !important;
    margin-bottom: 38px !important;
}

.mie-timeline-container::before {
    left: 27px !important;
}

.mie-timeline-marker {
    width: 56px !important;
    height: 56px !important;
}

.mie-timeline-marker i,
.mie-timeline-marker svg {
    width: 18px !important;
    height: 18px !important;
    font-size: 18px ;
}

.mie-timeline-card {
    padding: 30px 32px !important;
    border-radius: 14px !important;
}

.mie-timeline-card::before {
    top: 20px !important;
}

.mie-timeline-card h3 {
    font-size: 1.2rem ;
    margin-bottom: 9px !important;
}

.mie-timeline-card p {
    font-size: .92rem ;
    line-height: 1.58 ;
}

/* Rodapé */
.mie-footer {
    padding-top: 28px !important;
}

.mie-footer p {
    font-size: .86rem ;
    line-height: 1.56 ;
}

.mie-footer-button {
    font-size: .8rem ;
    padding: 6px 18px 6px 6px !important;
}

.mie-footer-button span {
    width: 27px !important;
    height: 27px !important;
}

/* Mobile refinado */
@media (max-width: 767px) {
    .mie-page {
        padding: 26px 16px !important;
    }

    .mie-hero-content {
        padding: 34px 24px !important;
    }

    .mie-hero-content h1,
    .mie-diff-left h2,
    .mie-section-title,
    .mie-purpose-card h3 {
        font-size: 1.78rem ;
    }

    .mie-hero-image-container img {
        min-height: 330px !important;
    }

    .mie-diff-card {
        min-height: auto !important;
        padding: 24px 20px !important;
    }

    .mie-audience-box {
        padding: 44px 22px !important;
    }

    .mie-audience-title {
        font-size: 1.36rem ;
    }

    .mie-purpose-section {
        padding: 22px !important;
    }

    .mie-purpose-card {
        padding: 28px 22px !important;
    }

    .mie-timeline-item {
        gap: 18px !important;
    }

    .mie-timeline-marker {
        width: 44px !important;
        height: 44px !important;
    }

    .mie-timeline-container::before {
        left: 21px !important;
    }

    .mie-timeline-card {
        padding: 22px !important;
    }
}


/* v1.0.11 — Transições premium delicadas no padrão Daniela */
.mie-reveal-ready {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(2px);
    transition:
        opacity 820ms cubic-bezier(.22, 1, .36, 1),
        transform 820ms cubic-bezier(.22, 1, .36, 1),
        filter 820ms cubic-bezier(.22, 1, .36, 1),
        box-shadow 280ms ease,
        border-color 280ms ease,
        background-color 280ms ease;
    transition-delay: var(--mie-reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.mie-reveal-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

/* Variações sutis por tipo de elemento */
.mie-hero-image-container.mie-reveal-ready,
.mie-purpose-section.mie-reveal-ready {
    transform: translate3d(0, 14px, 0) scale(.985);
}

.mie-hero-image-container.mie-reveal-visible,
.mie-purpose-section.mie-reveal-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

.mie-diff-card.mie-reveal-ready,
.mie-format-card.mie-reveal-ready,
.mie-timeline-item.mie-reveal-ready {
    transform: translate3d(0, 20px, 0) scale(.985);
}

.mie-diff-card.mie-reveal-visible,
.mie-format-card.mie-reveal-visible,
.mie-timeline-item.mie-reveal-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Microinterações premium, sem exagero */
.mie-btn-agendar,
.mie-btn-outline,
.mie-footer-button,
.mie-diff-card,
.mie-format-card,
.mie-timeline-card,
.mie-purpose-card {
    transition:
        transform 260ms ease,
        box-shadow 260ms ease,
        background-color 260ms ease,
        color 260ms ease,
        border-color 260ms ease,
        opacity 260ms ease !important;
}

.mie-btn-agendar:hover,
.mie-btn-outline:hover,
.mie-footer-button:hover {
    transform: translateY(-2px) !important;
}

.mie-diff-card:hover,
.mie-format-card:hover,
.mie-timeline-card:hover {
    transform: translateY(-4px) !important;
}

.mie-btn-icon,
.mie-footer-button span,
.mie-diff-card-icon,
.mie-pill-icon,
.mie-timeline-marker {
    transition:
        transform 260ms ease,
        background-color 260ms ease,
        color 260ms ease,
        fill 260ms ease,
        border-color 260ms ease !important;
}

.mie-btn-agendar:hover .mie-btn-icon,
.mie-footer-button:hover span {
    transform: rotate(-8deg) scale(1.04);
}

.mie-diff-card:hover .mie-diff-card-icon,
.mie-format-card:hover .mie-pill-icon,
.mie-timeline-item:hover .mie-timeline-marker {
    transform: translateY(-1px) scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
    .mie-reveal-ready,
    .mie-reveal-visible,
    .mie-btn-agendar,
    .mie-btn-outline,
    .mie-footer-button,
    .mie-diff-card,
    .mie-format-card,
    .mie-timeline-card,
    .mie-purpose-card,
    .mie-btn-icon,
    .mie-footer-button span,
    .mie-diff-card-icon,
    .mie-pill-icon,
    .mie-timeline-marker {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}


/* v1.0.12 — Hero ajustada: nome como destaque principal e título como subtítulo terracota */
.mie-hero-brand-title {
    color: #CC6D52;
    font-size: 2.36rem ;
    line-height: 1.08 ;
    letter-spacing: -0.035em ;
    font-weight: 600 ;
    margin: 0 0 10px !important;
}

.mie-hero-subtitle {
    color: #CC6D52;
    font-size: 1.02rem ;
    line-height: 1.55 ;
    letter-spacing: .01em ;
    font-weight: 400 ;
    font-style: italic ;
    margin: 0 0 24px !important;
    max-width: 460px !important;
}

.mie-hero-content > p:not(.mie-hero-subtitle):not(.mie-hero-highlight) strong {
    color: #CC6D52;
    font-weight: 600 ;
}

.mie-hero-content > p:not(.mie-hero-subtitle):not(.mie-hero-highlight) span {
    color: inherit;
}

@media (max-width: 767px) {
    .mie-hero-brand-title {
        font-size: 1.92rem ;
        line-height: 1.1 ;
    }

    .mie-hero-subtitle {
        font-size: .94rem ;
        margin-bottom: 20px !important;
    }
}


/* v1.0.13 — Etiquetas premium estilo Daniela */
.mie-tag-pill,
.mie-formats-badge.mie-tag-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    max-width: 100% !important;
    padding: 8px 18px !important;
    border-radius: 999px !important;
    background-color: #F1E7DC;
    color: #CC6D52;
    border: 1px solid rgba(204, 109, 82, .10);
    font-family: var(--font-main) ;
    font-size: .68rem ;
    line-height: 1 ;
    font-weight: 700 ;
    letter-spacing: .13em ;
    text-transform: uppercase ;
    box-shadow: 0 10px 24px rgba(61, 53, 46, .035) !important;
    margin-bottom: 18px !important;
}

.mie-tag-pill .line,
.mie-tag-pill .dot,
.mie-formats-badge.mie-tag-pill .diamond {
    display: none !important;
}

.mie-diff-left .mie-tag-pill {
    margin-bottom: 0 !important;
}

.mie-timeline-header .mie-tag-pill {
    margin-left: auto !important;
    margin-right: auto !important;
}

.mie-audience-box .mie-tag-pill {
    background-color: rgba(248, 246, 239, .28);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, .22);
    margin-bottom: 18px !important;
}

.mie-formats-badge.mie-tag-pill {
    margin-bottom: 20px !important;
}

/* remove aparência antiga das etiquetas */
.mie-formats-badge {
    gap: 0 !important;
}

@media (max-width: 767px) {
    .mie-tag-pill,
    .mie-formats-badge.mie-tag-pill {
        padding: 7px 14px !important;
        font-size: .62rem ;
        letter-spacing: .11em ;
        margin-bottom: 16px !important;
    }
}


/* v1.0.14 — Todos os botões no padrão da Hero */
.mie-btn-agendar,
.mie-btn-standard,
.mie-footer-button.mie-btn-standard {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: fit-content !important;
    max-width: 100% !important;
    min-height: 42px !important;
    padding: 6px 20px 6px 6px !important;
    border-radius: 999px !important;
    background-color: #3D352E;
    color: #FFFFFF;
    border: 1px solid transparent;
    font-family: var(--font-main) ;
    font-size: .84rem ;
    font-weight: 500 ;
    line-height: 1.1 ;
    letter-spacing: -.01em ;
    text-decoration: none ;
    gap: 0 !important;
    box-shadow: 0 12px 28px rgba(61, 53, 46, .11) !important;
    overflow: hidden !important;
}

.mie-btn-agendar .mie-btn-icon,
.mie-footer-button.mie-btn-standard span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: 32px !important;
    height: 32px !important;
    margin-right: 13px !important;
    border-radius: 50% !important;
    background-color: #A3B89F;
    color: #3D352E;
}

.mie-footer-button.mie-btn-standard span {
    margin-left: 0 !important;
}

.mie-btn-agendar .mie-btn-icon i,
.mie-footer-button.mie-btn-standard span i {
    color: inherit;
    font-size: 13px ;
    line-height: 1 ;
}

.mie-btn-agendar .mie-btn-icon svg,
.mie-footer-button.mie-btn-standard span svg {
    width: 13px !important;
    height: 13px !important;
    display: block !important;
    fill: currentColor;
}

.mie-btn-agendar .mie-btn-icon svg *,
.mie-footer-button.mie-btn-standard span svg * {
    fill: currentColor;
}

.mie-btn-agendar:hover,
.mie-btn-standard:hover,
.mie-footer-button.mie-btn-standard:hover {
    background-color: #17171A;
    color: #FFFFFF;
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 34px rgba(61, 53, 46, .15) !important;
}

.mie-btn-outline {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: fit-content !important;
    min-height: 42px !important;
    padding: 6px 20px 6px 6px !important;
    border-radius: 999px !important;
    background-color: #3D352E;
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(61, 53, 46, .11) !important;
}

.mie-btn-outline .mie-diamond-icon {
    display: none !important;
}

@media (max-width: 767px) {
    .mie-btn-agendar,
    .mie-btn-standard,
    .mie-footer-button.mie-btn-standard,
    .mie-btn-outline {
        min-height: 40px !important;
        padding: 5px 17px 5px 5px !important;
        font-size: .78rem ;
    }

    .mie-btn-agendar .mie-btn-icon,
    .mie-footer-button.mie-btn-standard span {
        width: 30px !important;
        height: 30px !important;
        margin-right: 11px !important;
    }
}


/* v1.0.16 — Título da Hero no estilo da Daniela principal */
.mie-hero-brand-title {
    color: #3D352E;
    font-family: var(--font-main) ;
    font-size: 2.34rem ;
    line-height: 1.06 ;
    letter-spacing: -0.04em ;
    font-weight: 500 ;
    margin: 0 0 10px !important;
    text-wrap: balance;
}

@media (max-width: 767px) {
    .mie-hero-brand-title {
        font-size: 1.92rem ;
        line-height: 1.08 ;
        letter-spacing: -0.035em ;
    }
}


/* v1.0.17 — Correção: tipografia do Elementor funcionando */
.mie-page,
.mie-page h1,
.mie-page h2,
.mie-page h3,
.mie-page p,
.mie-page a,
.mie-page span,
.mie-page div,
.mie-hero-brand-title,
.mie-hero-subtitle,
.mie-hero-content p,
.mie-hero-highlight,
.mie-diff-left h2,
.mie-diff-card p,
.mie-section-title,
.mie-formats-badge,
.mie-tag-pill,
.mie-pill-text,
.mie-format-card p,
.mie-audience-eyebrow,
.mie-audience-title,
.mie-audience-text,
.mie-purpose-card h3,
.mie-purpose-card p,
.mie-highlight-quote,
.mie-timeline-card h3,
.mie-timeline-card p,
.mie-footer strong,
.mie-footer p,
.mie-btn-agendar,
.mie-footer-button {
    font-family: inherit;
}

/* A partir daqui, tamanho, fonte, peso, altura da linha e espaçamento ficam livres para o Elementor. */

/* v1.0.18 — Correção definitiva da visualização Tablet no editor e no front-end */
html[data-mie-device="desktop"] .mie-device-shell,
html[data-mie-device="tablet"] .mie-device-shell,
html[data-mie-device="mobile"] .mie-device-shell {
    display: none !important;
}

html[data-mie-device="desktop"] .mie-device-shell.mie-device-desktop,
html[data-mie-device="tablet"] .mie-device-shell.mie-device-tablet,
html[data-mie-device="mobile"] .mie-device-shell.mie-device-mobile {
    display: flex !important;
    width: 100%;
}

/* Segurança para o modo responsivo do editor Elementor */
body.elementor-device-desktop .mie-device-shell { display: none !important; }
body.elementor-device-desktop .mie-device-shell.mie-device-desktop { display: flex !important; width: 100%; }
body.elementor-device-tablet .mie-device-shell { display: none !important; }
body.elementor-device-tablet .mie-device-shell.mie-device-tablet { display: flex !important; width: 100%; }
body.elementor-device-mobile .mie-device-shell { display: none !important; }
body.elementor-device-mobile .mie-device-shell.mie-device-mobile { display: flex !important; width: 100%; }

/* v1.0.19 — Hero Tablet: texto menor e foto ao lado */
@media (min-width: 768px) and (max-width: 1024px) {
    .mie-device-shell.mie-device-tablet .mie-hero-banner {
        flex-direction: row !important;
        align-items: stretch !important;
        min-height: 470px !important;
    }

    .mie-device-shell.mie-device-tablet .mie-hero-content {
        flex: 0 0 56% !important;
        width: 56% !important;
        padding: 34px 30px !important;
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: center !important;
    }

    .mie-device-shell.mie-device-tablet .mie-hero-image-container {
        flex: 0 0 44% !important;
        width: 44% !important;
        min-height: 470px !important;
    }

    .mie-device-shell.mie-device-tablet .mie-hero-image-container img {
        width: 100% !important;
        height: 100% !important;
        min-height: 470px !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .mie-device-shell.mie-device-tablet .mie-hero-content .mie-eyebrow {
        font-size: .67rem;
        letter-spacing: 1.1px !important;
        margin-bottom: 10px !important;
    }

    .mie-device-shell.mie-device-tablet .mie-hero-brand-title,
    .mie-device-shell.mie-device-tablet .mie-hero-content h1 {
        font-size: 1.72rem;
        line-height: 1.08;
        letter-spacing: -.035em !important;
        margin-bottom: 14px !important;
    }

    .mie-device-shell.mie-device-tablet .mie-hero-subtitle,
    .mie-device-shell.mie-device-tablet .mie-hero-content p {
        font-size: .78rem;
        line-height: 1.48;
        margin-bottom: 10px !important;
        max-width: 100% !important;
    }

    .mie-device-shell.mie-device-tablet .mie-hero-highlight {
        font-size: .82rem;
        line-height: 1.42;
        margin-top: 4px !important;
        margin-bottom: 22px !important;
        padding-left: 12px !important;
    }

    .mie-device-shell.mie-device-tablet .mie-btn-agendar {
        min-height: 38px !important;
        padding: 5px 16px 5px 5px !important;
        font-size: .74rem;
    }

    .mie-device-shell.mie-device-tablet .mie-btn-agendar .mie-btn-icon {
        width: 28px !important;
        height: 28px !important;
        margin-right: 10px !important;
    }
}


/* v1.0.20 — Hero Mobile: imagem antes do conteúdo */
@media (max-width: 767px) {
    .mie-device-shell.mie-device-mobile .mie-hero-banner {
        display: flex !important;
        flex-direction: column !important;
    }

    .mie-device-shell.mie-device-mobile .mie-hero-image-container {
        order: 1 !important;
        width: 100% !important;
    }

    .mie-device-shell.mie-device-mobile .mie-hero-content {
        order: 2 !important;
        width: 100% !important;
    }
}

/* v1.0.21 — HERO TABLET REAL: layout lateral independente do breakpoint do Elementor */
.mie-device-shell.mie-device-tablet .mie-hero-banner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    min-height: 460px !important;
}

.mie-device-shell.mie-device-tablet .mie-hero-content {
    order: 1 !important;
    flex: 0 0 56% !important;
    width: 56% !important;
    min-width: 0 !important;
    padding: 30px 26px !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.mie-device-shell.mie-device-tablet .mie-hero-image-container {
    order: 2 !important;
    flex: 0 0 44% !important;
    width: 44% !important;
    min-width: 0 !important;
    min-height: 460px !important;
    align-self: stretch !important;
    overflow: hidden !important;
}

.mie-device-shell.mie-device-tablet .mie-hero-image-container img {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 460px !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.mie-device-shell.mie-device-tablet .mie-hero-brand-title,
.mie-device-shell.mie-device-tablet .mie-hero-content h1 {
    font-size: clamp(1.45rem, 2.5vw, 1.75rem);
    line-height: 1.08;
    margin: 0 0 12px !important;
}

.mie-device-shell.mie-device-tablet .mie-hero-subtitle,
.mie-device-shell.mie-device-tablet .mie-hero-content p {
    font-size: .76rem;
    line-height: 1.45;
    margin-bottom: 9px !important;
    max-width: 100% !important;
}

.mie-device-shell.mie-device-tablet .mie-hero-highlight {
    font-size: .8rem;
    line-height: 1.4;
    margin: 3px 0 18px !important;
    padding-left: 10px !important;
}

.mie-device-shell.mie-device-tablet .mie-btn-agendar {
    font-size: .72rem;
    padding: 5px 14px 5px 5px !important;
}

.mie-device-shell.mie-device-tablet .mie-btn-icon {
    width: 27px !important;
    height: 27px !important;
    margin-right: 9px !important;
}

/* v1.0.21 — HERO TABLET REAL: layout lateral independente do breakpoint do Elementor */
.mie-device-shell.mie-device-tablet .mie-hero-banner{display:flex!important;flex-direction:row!important;flex-wrap:nowrap!important;align-items:stretch!important;min-height:460px!important}
.mie-device-shell.mie-device-tablet .mie-hero-content{order:1!important;flex:0 0 56%!important;width:56%!important;min-width:0!important;padding:30px 26px!important;justify-content:center!important;align-items:flex-start!important;text-align:left!important}
.mie-device-shell.mie-device-tablet .mie-hero-image-container{order:2!important;flex:0 0 44%!important;width:44%!important;min-width:0!important;min-height:460px!important;align-self:stretch!important;overflow:hidden!important}
.mie-device-shell.mie-device-tablet .mie-hero-image-container img{display:block!important;width:100%!important;max-width:none!important;height:100%!important;min-height:460px!important;object-fit:cover!important;object-position:center center!important}
.mie-device-shell.mie-device-tablet .mie-hero-brand-title,.mie-device-shell.mie-device-tablet .mie-hero-content h1{font-size:clamp(1.45rem,2.5vw,1.75rem);line-height:1.08;margin:0 0 12px!important}
.mie-device-shell.mie-device-tablet .mie-hero-subtitle,.mie-device-shell.mie-device-tablet .mie-hero-content p{font-size:.76rem;line-height:1.45;margin-bottom:9px!important;max-width:100%!important}
.mie-device-shell.mie-device-tablet .mie-hero-highlight{font-size:.8rem;line-height:1.4;margin:3px 0 18px!important;padding-left:10px!important}
.mie-device-shell.mie-device-tablet .mie-btn-agendar{font-size:.72rem;padding:5px 14px 5px 5px!important}
.mie-device-shell.mie-device-tablet .mie-btn-icon{width:27px!important;height:27px!important;margin-right:9px!important}


/* v1.0.27 — cores controladas diretamente pelo Elementor, sem fallback bloqueando o preview. */

/* v1.0.28 — Hero: sombra removível e posicionamento manual da foto por dispositivo */
.mie-hero-image-container::after {
    opacity: var(--mie-image-overlay-opacity, 0) !important;
}
.mie-hero-image-container img {
    object-position: 50% 50%;
}


/* v1.0.29 — Hero com três molduras fotográficas.
   Desktop/tablet: texto à esquerda e fotos à direita.
   Mobile: fotos primeiro e texto abaixo. */
.mie-hero-banner {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    min-height: 520px;
}

.mie-hero-content {
    order: 1 !important;
    flex: 0 0 55% !important;
    width: 55% !important;
    min-width: 0 !important;
}

.mie-hero-collage {
    --mie-collage-bg: #f5f0e8;
    order: 2 !important;
    flex: 0 0 45% !important;
    width: 45% !important;
    min-width: 0 !important;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 82% 16%, rgba(204, 109, 82, .10) 0 2px, transparent 3px),
        linear-gradient(135deg, rgba(255,255,255,.46), rgba(255,255,255,0)),
        var(--mie-collage-bg);
}

.mie-hero-collage::before,
.mie-hero-collage::after {
    content: '';
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border: 1px solid rgba(204, 109, 82, .28);
    border-radius: 50%;
}

.mie-hero-collage::before {
    width: 150px;
    height: 150px;
    right: -88px;
    top: -88px;
}

.mie-hero-collage::after {
    width: 120px;
    height: 120px;
    left: 38%;
    bottom: -92px;
}

.mie-hero-photo {
    position: absolute;
    overflow: hidden;
    background: #eee8df;
    border: 1px solid rgba(61, 53, 46, .08);
    z-index: 1;
}

.mie-hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: rgba(20, 18, 16, .45);
    opacity: var(--mie-image-overlay-opacity, 0);
}

.mie-hero-photo img {
    position: relative;
    z-index: 1;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: 50% 50%;
}

.mie-hero-photo-left {
    left: 2%;
    top: 17%;
    width: 36%;
    height: 67%;
    z-index: 1;
}

.mie-hero-photo-center {
    left: 29%;
    top: 9%;
    width: 43%;
    height: 82%;
    z-index: 3;
}

.mie-hero-photo-right {
    right: 2%;
    top: 20%;
    width: 28%;
    height: 58%;
    z-index: 2;
}

.mie-device-shell.mie-device-tablet .mie-hero-banner {
    min-height: 460px !important;
}

.mie-device-shell.mie-device-tablet .mie-hero-content {
    order: 1 !important;
    flex: 0 0 56% !important;
    width: 56% !important;
}

.mie-device-shell.mie-device-tablet .mie-hero-collage {
    order: 2 !important;
    flex: 0 0 44% !important;
    width: 44% !important;
    min-height: 460px !important;
}

@media (max-width: 767px) {
    .mie-device-shell.mie-device-mobile .mie-hero-banner {
        display: flex !important;
        flex-direction: column !important;
        min-height: 0 !important;
    }

    .mie-device-shell.mie-device-mobile .mie-hero-collage {
        order: 1 !important;
        flex: 0 0 auto !important;
        width: 100% !important;
        min-height: 330px;
    }

    .mie-device-shell.mie-device-mobile .mie-hero-content {
        order: 2 !important;
        flex: 0 0 auto !important;
        width: 100% !important;
    }

    .mie-device-shell.mie-device-mobile .mie-hero-photo-left {
        left: 2%;
        top: 16%;
        width: 36%;
        height: 68%;
    }

    .mie-device-shell.mie-device-mobile .mie-hero-photo-center {
        left: 29%;
        top: 8%;
        width: 43%;
        height: 84%;
    }

    .mie-device-shell.mie-device-mobile .mie-hero-photo-right {
        right: 2%;
        top: 20%;
        width: 28%;
        height: 58%;
    }
}

/* v1.0.31 — Propósito em card arredondado.
   Imagem à esquerda; conteúdo à direita; botão em formato pílula. */
.mie-purpose-section {
    width: 100% !important;
    max-width: 1100px !important;
    min-height: 0 !important;
    padding: 0 !important;
    border-radius: 34px !important;
    overflow: hidden !important;
    display: block !important;
    position: relative !important;
    background-color: #F8F5EF;
    box-shadow: none !important;
    border: 1px solid rgba(112, 101, 90, .10);
    isolation: isolate;
}

.mie-purpose-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .58;
    background:
        radial-gradient(ellipse at 18% 45%, transparent 0 42%, rgba(204,109,82,.07) 42.3% 42.8%, transparent 43.1% 52%, rgba(204,109,82,.045) 52.3% 52.7%, transparent 53%),
        linear-gradient(112deg, transparent 0 31%, rgba(255,255,255,.52) 31.2% 31.7%, transparent 32% 100%);
}

.mie-purpose-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, .82fr) minmax(0, 1.48fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: start;
    width: 100%;
    padding: clamp(38px, 5.4vw, 72px);
}

.mie-purpose-copy {
    min-width: 0;
    padding-top: 2px;
}

.mie-purpose-layout .mie-tag-pill {
    display: inline-flex !important;
    width: max-content !important;
    max-width: 100% !important;
    margin: 0 0 20px !important;
}

.mie-purpose-title {
    max-width: 650px;
    margin: 0 0 28px !important;
    color: var(--text-main);
    font-size: clamp(2rem, 3.4vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -.035em;
    font-weight: 400;
}

.mie-purpose-benefits {
    width: 100%;
    max-width: 680px;
    border-top: 1px solid rgba(112, 101, 90, .13);
}

.mie-purpose-benefit {
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 19px 0;
    border-bottom: 1px solid rgba(112, 101, 90, .13);
}

.mie-purpose-check {
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border: 1px solid var(--brand-sage-dark);
    border-radius: 6px;
    color: var(--brand-sage-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
}

.mie-purpose-check svg {
    display: block;
    width: 15px;
    height: 15px;
}

.mie-purpose-benefit-text {
    margin: 0 !important;
    color: var(--text-support);
    font-size: .94rem;
    line-height: 1.62;
    font-weight: 400;
}

.mie-purpose-note {
    max-width: 660px;
    margin: 26px 0 0 !important;
    color: var(--text-support);
    font-size: .84rem;
    line-height: 1.62;
    font-style: italic;
}

.mie-purpose-media {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.mie-purpose-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 24px;
    background: #EEE7DE;
}

.mie-purpose-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,.02), rgba(61,53,46,.05));
}

.mie-purpose-image-frame img {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
}

.mie-purpose-media-title {
    margin: 16px 0 12px !important;
    color: var(--text-main);
    text-align: center;
    font-size: .92rem;
    line-height: 1.18;
    letter-spacing: .01em;
    font-weight: 500;
}

.mie-purpose-cta {
    width: 100%;
    min-height: 40px;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #CC6D52;
    color: #FFFFFF;
    text-decoration: none !important;
    text-align: center;
    font-size: .75rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: .04em;
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease, box-shadow .25s ease;
}

.mie-purpose-cta svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    stroke: currentColor;
}

.mie-purpose-cta:hover {
    transform: translateY(-2px);
    opacity: .94;
    box-shadow: 0 10px 22px rgba(61, 53, 46, .12);
}

.mie-device-shell.mie-device-tablet .mie-purpose-layout {
    grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
    gap: 34px;
    padding: 42px;
}

.mie-device-shell.mie-device-tablet .mie-purpose-section {
    border-radius: 28px !important;
}

.mie-device-shell.mie-device-tablet .mie-purpose-image-frame {
    border-radius: 20px;
}

.mie-device-shell.mie-device-tablet .mie-purpose-title {
    font-size: 2.15rem;
}

.mie-device-shell.mie-device-tablet .mie-purpose-benefit {
    gap: 13px;
    padding: 16px 0;
}

.mie-device-shell.mie-device-tablet .mie-purpose-benefit-text {
    font-size: .83rem;
}

.mie-device-shell.mie-device-tablet .mie-purpose-note {
    font-size: .75rem;
    margin-top: 21px !important;
}

.mie-device-shell.mie-device-tablet .mie-purpose-media-title {
    font-size: .78rem;
}

.mie-device-shell.mie-device-tablet .mie-purpose-cta {
    min-height: 36px;
    font-size: .68rem;
}

@media (max-width: 767px) {
    .mie-device-shell.mie-device-mobile .mie-purpose-layout {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 24px;
    }

    .mie-device-shell.mie-device-mobile .mie-purpose-section {
        border-radius: 24px !important;
    }

    .mie-device-shell.mie-device-mobile .mie-purpose-media {
        order: 1;
        width: 100%;
    }

    .mie-device-shell.mie-device-mobile .mie-purpose-copy {
        order: 2;
        width: 100%;
    }

    .mie-device-shell.mie-device-mobile .mie-purpose-title {
        font-size: 2rem;
        line-height: 1.08;
        margin-bottom: 24px !important;
    }

    .mie-device-shell.mie-device-mobile .mie-purpose-benefit {
        grid-template-columns: 23px minmax(0, 1fr);
        gap: 13px;
        padding: 16px 0;
    }

    .mie-device-shell.mie-device-mobile .mie-purpose-check {
        width: 21px;
        height: 21px;
    }

    .mie-device-shell.mie-device-mobile .mie-purpose-benefit-text {
        font-size: .88rem;
        line-height: 1.58;
    }

    .mie-device-shell.mie-device-mobile .mie-purpose-note {
        margin-top: 21px !important;
        font-size: .8rem;
    }

    .mie-device-shell.mie-device-mobile .mie-purpose-image-frame {
        aspect-ratio: 4 / 4.6;
        border-radius: 18px;
    }

    .mie-device-shell.mie-device-mobile .mie-purpose-media-title {
        font-size: .86rem;
        margin-top: 14px !important;
    }
}


/* v1.0.32 — O texto abaixo da imagem e o botão respeitam exatamente a capitalização digitada.
   Maiúsculas, minúsculas e capitalização continuam livres no controle de Tipografia do Elementor. */


/* v1.0.33 — Transições suaves e premium para Hero e Propósito */
.mie-hero-photo,
.mie-purpose-section,
.mie-purpose-image-frame,
.mie-purpose-image-frame img,
.mie-purpose-benefit,
.mie-purpose-check,
.mie-purpose-media-title,
.mie-purpose-cta,
.mie-purpose-title,
.mie-purpose-note {
    transition:
        transform 420ms cubic-bezier(.22, 1, .36, 1),
        opacity 320ms ease,
        box-shadow 420ms cubic-bezier(.22, 1, .36, 1),
        border-color 320ms ease,
        background-color 320ms ease,
        color 320ms ease,
        filter 420ms cubic-bezier(.22, 1, .36, 1) !important;
}

.mie-hero-photo,
.mie-purpose-image-frame {
    box-shadow: 0 14px 34px rgba(61, 53, 46, .06);
}

.mie-hero-photo:hover,
.mie-purpose-section:hover .mie-purpose-image-frame {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(61, 53, 46, .08);
}

.mie-hero-photo img,
.mie-purpose-image-frame img {
    transform: scale(1.001);
}

.mie-hero-photo:hover img,
.mie-purpose-section:hover .mie-purpose-image-frame img {
    transform: scale(1.028);
}

.mie-purpose-section:hover {
    border-color: rgba(112, 101, 90, .16);
    box-shadow: 0 20px 44px rgba(61, 53, 46, .05);
}

.mie-purpose-benefit {
    border-radius: 14px;
    padding-left: 2px;
    padding-right: 2px;
}

.mie-purpose-benefit:hover {
    transform: translateX(4px);
    background-color: rgba(255, 255, 255, .34);
}

.mie-purpose-benefit:hover .mie-purpose-check {
    transform: scale(1.06);
    background-color: rgba(163, 184, 159, .08);
}

.mie-purpose-section:hover .mie-purpose-media-title,
.mie-purpose-section:hover .mie-purpose-title {
    transform: translateY(-1px);
}

.mie-purpose-cta {
    box-shadow: 0 10px 24px rgba(204, 109, 82, .14);
}

.mie-purpose-cta:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 14px 28px rgba(61, 53, 46, .14);
}

.mie-purpose-cta:hover svg {
    transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
    .mie-hero-photo,
    .mie-purpose-section,
    .mie-purpose-image-frame,
    .mie-purpose-image-frame img,
    .mie-purpose-benefit,
    .mie-purpose-check,
    .mie-purpose-media-title,
    .mie-purpose-cta,
    .mie-purpose-title,
    .mie-purpose-note,
    .mie-purpose-cta svg {
        transition: none !important;
        transform: none !important;
    }
}


/* v1.0.34 — Transições suaves em toda a página */
.mie-hero-banner,
.mie-hero-content > *,
.mie-hero-photo,
.mie-diff-left > *,
.mie-diff-card,
.mie-formats-badge,
.mie-section-title,
.mie-format-card,
.mie-audience-box,
.mie-audience-title,
.mie-audience-text,
.mie-purpose-section,
.mie-purpose-media > *,
.mie-purpose-copy > *,
.mie-purpose-benefit,
.mie-timeline-header > *,
.mie-timeline-item,
.mie-footer > *,
.mie-footer-brand > *,
.mie-footer-contact > * {
    transition:
        transform 520ms cubic-bezier(.22, 1, .36, 1),
        opacity 380ms ease,
        box-shadow 380ms ease,
        border-color 320ms ease,
        background-color 320ms ease,
        color 320ms ease,
        filter 520ms cubic-bezier(.22, 1, .36, 1) !important;
}

.mie-tag-pill,
.mie-btn-agendar,
.mie-btn-outline,
.mie-footer-button,
.mie-purpose-cta,
.mie-diff-card-icon,
.mie-pill-icon,
.mie-purpose-check,
.mie-timeline-marker,
.mie-logo-dot {
    transition:
        transform 280ms ease,
        opacity 280ms ease,
        box-shadow 280ms ease,
        border-color 280ms ease,
        background-color 280ms ease,
        color 280ms ease,
        fill 280ms ease !important;
}

.mie-audience-box:hover,
.mie-footer:hover > *,
.mie-diff-left:hover > *,
.mie-timeline-header:hover > * {
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    .mie-hero-banner,
    .mie-hero-content > *,
    .mie-hero-photo,
    .mie-diff-left > *,
    .mie-diff-card,
    .mie-formats-badge,
    .mie-section-title,
    .mie-format-card,
    .mie-audience-box,
    .mie-audience-title,
    .mie-audience-text,
    .mie-purpose-section,
    .mie-purpose-media > *,
    .mie-purpose-copy > *,
    .mie-purpose-benefit,
    .mie-timeline-header > *,
    .mie-timeline-item,
    .mie-footer > *,
    .mie-footer-brand > *,
    .mie-footer-contact > *,
    .mie-tag-pill,
    .mie-btn-agendar,
    .mie-btn-outline,
    .mie-footer-button,
    .mie-purpose-cta,
    .mie-diff-card-icon,
    .mie-pill-icon,
    .mie-purpose-check,
    .mie-timeline-marker,
    .mie-logo-dot {
        transition: none !important;
        transform: none !important;
    }
}


/* v1.0.35 — Efeito somente ao surgir, sem animações ao passar o mouse */
.mie-btn-agendar:hover,
.mie-btn-standard:hover,
.mie-footer-button:hover,
.mie-footer-button.mie-btn-standard:hover,
.mie-btn-outline:hover,
.mie-diff-card:hover,
.mie-format-card:hover,
.mie-timeline-card:hover,
.mie-timeline-card:hover::before,
.mie-purpose-cta:hover,
.mie-hero-photo:hover,
.mie-purpose-section:hover,
.mie-purpose-section:hover .mie-purpose-image-frame,
.mie-purpose-benefit:hover,
.mie-audience-box:hover,
.mie-footer:hover > *,
.mie-diff-left:hover > *,
.mie-timeline-header:hover > * {
    transform: none !important;
    opacity: 1 !important;
    box-shadow: inherit !important;
}

.mie-btn-agendar:hover,
.mie-btn-standard:hover,
.mie-footer-button:hover,
.mie-footer-button.mie-btn-standard:hover {
    background-color: var(--btn-black) !important;
    color: #FFFFFF !important;
}

.mie-btn-outline:hover {
    background: rgba(163, 184, 159, 0.05) !important;
    background-color: rgba(163, 184, 159, 0.05) !important;
    color: var(--brand-sage-dark) !important;
    border-color: var(--brand-sage-dark) !important;
}

.mie-diff-card:hover {
    background: rgba(163, 184, 159, 0.25) !important;
}

.mie-format-card:hover {
    box-shadow: 0 4px 20px rgba(61, 53, 46, 0.02) !important;
}

.mie-timeline-card:hover {
    border-color: var(--grid-line) !important;
    box-shadow: 0 4px 20px rgba(61, 53, 46, 0.02) !important;
}

.mie-timeline-card:hover::before {
    border-color: var(--grid-line) !important;
}

.mie-btn-agendar:hover .mie-btn-icon,
.mie-footer-button:hover span,
.mie-diff-card:hover .mie-diff-card-icon,
.mie-format-card:hover .mie-pill-icon,
.mie-timeline-item:hover .mie-timeline-marker,
.mie-purpose-benefit:hover .mie-purpose-check,
.mie-purpose-cta:hover svg,
.mie-hero-photo:hover img,
.mie-purpose-section:hover .mie-purpose-image-frame img,
.mie-purpose-section:hover .mie-purpose-media-title,
.mie-purpose-section:hover .mie-purpose-title {
    transform: none !important;
}

.mie-purpose-section:hover {
    border-color: rgba(112, 101, 90, .10) !important;
    box-shadow: none !important;
}

.mie-purpose-section:hover .mie-purpose-image-frame {
    box-shadow: 0 14px 34px rgba(61, 53, 46, .06) !important;
}

.mie-purpose-benefit:hover {
    background-color: transparent !important;
}

.mie-purpose-benefit:hover .mie-purpose-check {
    background-color: transparent !important;
}

.mie-purpose-cta:hover {
    box-shadow: 0 10px 24px rgba(204, 109, 82, .14) !important;
}

@media (prefers-reduced-motion: reduce) {
    .mie-btn-agendar:hover,
    .mie-btn-standard:hover,
    .mie-footer-button:hover,
    .mie-footer-button.mie-btn-standard:hover,
    .mie-btn-outline:hover,
    .mie-diff-card:hover,
    .mie-format-card:hover,
    .mie-timeline-card:hover,
    .mie-purpose-cta:hover,
    .mie-hero-photo:hover,
    .mie-purpose-section:hover,
    .mie-purpose-section:hover .mie-purpose-image-frame,
    .mie-purpose-benefit:hover {
        transition: none !important;
        transform: none !important;
    }
}


/* v1.0.36 — Correção real do efeito de entrada ao rolar a página */
.mie-reveal-ready {
    opacity: 0 !important;
    transform: translate3d(0, 24px, 0) !important;
    filter: blur(2px) !important;
    transition:
        opacity 900ms cubic-bezier(.22, 1, .36, 1),
        transform 900ms cubic-bezier(.22, 1, .36, 1),
        filter 900ms cubic-bezier(.22, 1, .36, 1) !important;
    transition-delay: var(--mie-reveal-delay, 0ms) !important;
    will-change: opacity, transform, filter;
}

.mie-reveal-ready.mie-reveal-visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
    filter: blur(0) !important;
}

.mie-hero-photo.mie-reveal-ready,
.mie-purpose-section.mie-reveal-ready,
.mie-audience-box.mie-reveal-ready {
    transform: translate3d(0, 20px, 0) scale(.985) !important;
}

.mie-hero-photo.mie-reveal-ready.mie-reveal-visible,
.mie-purpose-section.mie-reveal-ready.mie-reveal-visible,
.mie-audience-box.mie-reveal-ready.mie-reveal-visible {
    transform: translate3d(0, 0, 0) scale(1) !important;
}

@media (prefers-reduced-motion: reduce) {
    .mie-reveal-ready,
    .mie-reveal-ready.mie-reveal-visible {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}


/* =========================================================
   MAPEAMENTO INDIVIDUAL 1.0.0 — versão sem fotografias
   ========================================================= */
.mie-hero-banner {
    display: grid !important;
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr) !important;
    align-items: stretch !important;
}

.mie-hero-map {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-height: 570px !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 68% 26%, rgba(204,109,82,.16), transparent 23%),
        radial-gradient(circle at 26% 72%, rgba(163,184,159,.26), transparent 28%),
        linear-gradient(145deg, #F5EFE7 0%, #EEE8DE 100%) !important;
    border-left: 1px solid rgba(112,101,90,.10);
    isolation: isolate;
}

.mie-hero-map::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background-image:
        linear-gradient(rgba(112,101,90,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(112,101,90,.055) 1px, transparent 1px) !important;
    background-size: 44px 44px !important;
    opacity: .75 !important;
    z-index: 0 !important;
}

.mie-hero-map::after { display: none !important; }

.mie-map-orbit {
    position: absolute;
    border: 1px solid rgba(204,109,82,.26);
    border-radius: 50%;
    z-index: 1;
}
.mie-map-orbit-one { width: 330px; height: 330px; right: -58px; top: 52px; }
.mie-map-orbit-two { width: 250px; height: 250px; left: -60px; bottom: 44px; border-color: rgba(111,128,102,.28); }

.mie-map-node {
    position: absolute;
    z-index: 3;
    width: 190px;
    padding: 19px 20px 18px;
    border-radius: 20px;
    background: rgba(253,251,247,.88);
    border: 1px solid rgba(112,101,90,.13);
    box-shadow: 0 18px 45px rgba(61,53,46,.08);
    backdrop-filter: blur(8px);
}
.mie-map-node span { display:block; margin-bottom:10px; color:#CC6D52; font-size:.68rem; letter-spacing:.12em; font-weight:600; }
.mie-map-node strong { display:block; color:#3D352E; font-size:1.08rem; font-weight:500; margin-bottom:5px; }
.mie-map-node small { display:block; color:#70655A; font-size:.76rem; line-height:1.35; }
.mie-map-node-past { left: 9%; top: 16%; transform: rotate(-3deg); }
.mie-map-node-pattern { right: 8%; top: 38%; transform: rotate(2.5deg); }
.mie-map-node-present { left: 16%; bottom: 13%; transform: rotate(-1deg); }

.mie-map-caption {
    position: absolute;
    right: 9%;
    bottom: 10%;
    z-index: 2;
    max-width: 170px;
    margin: 0 !important;
    color: #3D352E !important;
    font-size: .88rem !important;
    line-height: 1.42 !important;
    text-align: right;
}
.mie-map-caption em { color:#CC6D52; font-style:italic; }

.mie-purpose-duration-card {
    position: relative;
    min-height: 360px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at 78% 17%, rgba(204,109,82,.20), transparent 30%),
        linear-gradient(155deg, #EEE7DE 0%, #E3E9DF 100%);
    border: 1px solid rgba(112,101,90,.12);
}
.mie-purpose-duration-card::before {
    content:'';
    position:absolute;
    width:230px;
    height:230px;
    border-radius:50%;
    border:1px solid rgba(111,128,102,.28);
    right:-80px;
    top:-55px;
}
.mie-purpose-duration-card::after {
    content:'';
    position:absolute;
    inset:0;
    background-image:linear-gradient(rgba(112,101,90,.045) 1px, transparent 1px),linear-gradient(90deg, rgba(112,101,90,.045) 1px, transparent 1px);
    background-size:36px 36px;
    pointer-events:none;
}
.mie-duration-kicker,
.mie-purpose-duration-card strong,
.mie-purpose-duration-card small,
.mie-purpose-duration-card p,
.mie-duration-line { position:relative; z-index:1; }
.mie-duration-kicker { color:#CC6D52; font-size:.64rem; font-weight:600; letter-spacing:.13em; margin-bottom:auto; }
.mie-purpose-duration-card strong { color:#3D352E; font-size:4.6rem; line-height:.9; letter-spacing:-.07em; font-weight:400; margin-bottom:8px; }
.mie-purpose-duration-card small { color:#3D352E; font-size:.86rem; font-weight:500; }
.mie-duration-line { width:42px; height:2px; background:#6F8066; margin:22px 0 15px; }
.mie-purpose-duration-card p { color:#70655A; margin:0 !important; font-size:.82rem; line-height:1.55; }

/* seis resultados ficam equilibrados em duas colunas */
.mie-formats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }

/* neutraliza qualquer regra antiga dependente de fotos */
.mie-purpose-image-frame,
.mie-hero-photo { display:none !important; }

.mie-device-shell.mie-device-tablet .mie-hero-banner {
    display: grid !important;
    grid-template-columns: minmax(0, 56%) minmax(0, 44%) !important;
}
.mie-device-shell.mie-device-tablet .mie-hero-content,
.mie-device-shell.mie-device-tablet .mie-hero-collage {
    width: 100% !important;
    flex: none !important;
    order: initial !important;
}
.mie-device-shell.mie-device-tablet .mie-hero-map { min-height: 500px !important; }
.mie-device-shell.mie-device-tablet .mie-map-node { width: 155px; padding: 16px; }
.mie-device-shell.mie-device-tablet .mie-map-node-past { left:6%; top:15%; }
.mie-device-shell.mie-device-tablet .mie-map-node-pattern { right:5%; top:41%; }
.mie-device-shell.mie-device-tablet .mie-map-node-present { left:10%; bottom:12%; }
.mie-device-shell.mie-device-tablet .mie-map-caption { display:none; }

@media (max-width: 767px) {
    .mie-device-shell.mie-device-mobile .mie-hero-banner {
        display:flex !important;
        flex-direction:column !important;
    }
    .mie-device-shell.mie-device-mobile .mie-hero-content { order:1 !important; }
    .mie-device-shell.mie-device-mobile .mie-hero-map {
        order:2 !important;
        min-height:390px !important;
        border-left:0;
        border-top:1px solid rgba(112,101,90,.10);
    }
    .mie-device-shell.mie-device-mobile .mie-map-node { width:145px; padding:14px 15px; border-radius:16px; }
    .mie-device-shell.mie-device-mobile .mie-map-node strong { font-size:.96rem; }
    .mie-device-shell.mie-device-mobile .mie-map-node small { font-size:.68rem; }
    .mie-device-shell.mie-device-mobile .mie-map-node-past { left:7%; top:10%; }
    .mie-device-shell.mie-device-mobile .mie-map-node-pattern { right:6%; top:34%; }
    .mie-device-shell.mie-device-mobile .mie-map-node-present { left:14%; bottom:9%; }
    .mie-device-shell.mie-device-mobile .mie-map-caption { right:6%; bottom:8%; font-size:.72rem !important; max-width:125px; }
    .mie-formats-grid { grid-template-columns: 1fr !important; }
    .mie-purpose-duration-card { min-height:300px; padding:26px 24px; border-radius:18px; }
    .mie-purpose-duration-card strong { font-size:4rem; }
}


.mie-formats-intro {
    max-width: 720px;
    margin: -18px auto 34px !important;
    color: #70655A;
    text-align: center;
    font-size: .92rem;
    line-height: 1.65;
}
@media (max-width: 767px) {
    .mie-formats-intro { margin: -12px auto 26px !important; text-align:left; font-size:.86rem; }
}


/* =========================================================
   v1.0.1 — conteúdo literal + hero mais ampla
   ========================================================= */
.mie-hero-banner {
    max-width: 1240px !important;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, .72fr) !important;
    min-height: 470px !important;
}
.mie-hero-content {
    padding: 64px 68px !important;
}
.mie-hero-content .mie-hero-brand-title {
    max-width: 760px !important;
}
.mie-hero-content .mie-hero-subtitle,
.mie-hero-content p {
    max-width: 720px !important;
}
.mie-hero-content .mie-hero-subtitle {
    font-size: 1.08rem !important;
    line-height: 1.68 !important;
    margin-bottom: 34px !important;
}
.mie-hero-map {
    min-height: 470px !important;
}
.mie-map-node {
    width: 185px;
    padding: 17px 18px;
}
.mie-map-node small,
.mie-map-caption { display:none !important; }
.mie-map-node-past { left: 8%; top: 12%; }
.mie-map-node-pattern { right: 7%; top: 34%; }
.mie-map-node-present { left: 10%; bottom: 16%; }
.mie-map-node-identity { right: 8%; bottom: 8%; transform: rotate(1.5deg); }

.mie-formats-closing {
    max-width: 760px;
    margin: 34px auto 0 !important;
    color: #70655A;
    text-align: center;
    font-size: .92rem;
    line-height: 1.7;
}

.mie-purpose-abstract {
    min-height: 360px;
    position: relative;
}
.mie-purpose-abstract .mie-abstract-ring,
.mie-purpose-abstract .mie-abstract-dot {
    position: absolute;
    z-index: 2;
    display: block;
    border-radius: 999px;
}
.mie-abstract-ring-one {
    width: 230px;
    height: 230px;
    border: 1px solid rgba(111,128,102,.34);
    left: 12%;
    top: 13%;
}
.mie-abstract-ring-two {
    width: 145px;
    height: 145px;
    border: 1px solid rgba(204,109,82,.34);
    right: 10%;
    bottom: 12%;
}
.mie-abstract-dot-one {
    width: 22px;
    height: 22px;
    background: rgba(204,109,82,.78);
    right: 24%;
    top: 23%;
}
.mie-abstract-dot-two {
    width: 12px;
    height: 12px;
    background: rgba(111,128,102,.85);
    left: 22%;
    bottom: 20%;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .mie-device-shell.mie-device-tablet .mie-hero-banner {
        grid-template-columns: minmax(0, 64%) minmax(0, 36%) !important;
    }
    .mie-device-shell.mie-device-tablet .mie-hero-content {
        padding: 48px 46px !important;
    }
    .mie-device-shell.mie-device-tablet .mie-hero-content .mie-hero-subtitle,
    .mie-device-shell.mie-device-tablet .mie-hero-content p {
        max-width: 100% !important;
    }
    .mie-device-shell.mie-device-tablet .mie-hero-map { min-height: 430px !important; }
    .mie-device-shell.mie-device-tablet .mie-map-node { width: 140px; padding: 14px; }
    .mie-device-shell.mie-device-tablet .mie-map-node-identity { right:5%; bottom:7%; }
}

@media (max-width: 767px) {
    .mie-device-shell.mie-device-mobile .mie-hero-content {
        padding: 38px 28px !important;
    }
    .mie-device-shell.mie-device-mobile .mie-hero-content .mie-hero-subtitle,
    .mie-device-shell.mie-device-mobile .mie-hero-content p {
        max-width: 100% !important;
    }
    .mie-device-shell.mie-device-mobile .mie-hero-map { min-height: 360px !important; }
    .mie-device-shell.mie-device-mobile .mie-map-node { width: 132px; }
    .mie-device-shell.mie-device-mobile .mie-map-node-identity { right:6%; bottom:7%; }
    .mie-formats-closing { text-align:left; font-size:.86rem; margin-top:26px !important; }
}

/* v1.0.1 — parágrafos literais da seção de primeiro olhar */
.mie-audience-text p {
    margin: 0 0 16px !important;
    color: inherit !important;
    font: inherit !important;
    line-height: inherit !important;
}
.mie-audience-text p:last-child { margin-bottom: 0 !important; }


/* v1.0.2 — Duração sem bloco decorativo vazio */
.mie-purpose-layout {
    grid-template-columns: minmax(0, 1fr) !important;
}
.mie-purpose-copy {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}
.mie-purpose-media {
    display: none !important;
}
.mie-purpose-media-title {
    text-align: left;
    margin: 24px 0 14px !important;
}
.mie-purpose-cta {
    width: max-content;
    max-width: 100%;
    min-width: 240px;
    margin-top: 28px;
}
.mie-device-shell.mie-device-tablet .mie-purpose-layout {
    grid-template-columns: minmax(0, 1fr) !important;
}
@media (max-width: 767px) {
    .mie-device-shell.mie-device-mobile .mie-purpose-copy {
        order: initial !important;
    }
    .mie-device-shell.mie-device-mobile .mie-purpose-cta {
        width: 100%;
        min-width: 0;
    }
}


/* Ajuste tablet — seção Por que mapear: último card ocupa a largura toda quando a quantidade for ímpar */
@media (min-width: 768px) and (max-width: 1024px) {
    .mie-device-tablet .mie-diff-right .mie-diff-card:last-child:nth-child(odd) {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        max-width: none !important;
    }
}


/* v1.0.4 — hero map mais organizada no mobile */
@media (max-width: 767px) {
    .mie-device-shell.mie-device-mobile .mie-hero-map {
        min-height: 420px !important;
    }

    .mie-device-shell.mie-device-mobile .mie-map-orbit-one {
        width: 260px !important;
        height: 260px !important;
        right: -52px !important;
        top: 52px !important;
    }

    .mie-device-shell.mie-device-mobile .mie-map-orbit-two {
        width: 220px !important;
        height: 220px !important;
        left: -48px !important;
        bottom: 38px !important;
    }

    .mie-device-shell.mie-device-mobile .mie-map-node {
        width: 128px !important;
        padding: 14px 14px !important;
        border-radius: 16px !important;
    }

    .mie-device-shell.mie-device-mobile .mie-map-node span {
        margin-bottom: 8px !important;
        font-size: .64rem !important;
    }

    .mie-device-shell.mie-device-mobile .mie-map-node strong {
        font-size: .95rem !important;
        line-height: 1.28 !important;
        margin-bottom: 0 !important;
    }

    .mie-device-shell.mie-device-mobile .mie-map-node-past {
        left: 7% !important;
        top: 11% !important;
        transform: rotate(-2deg) !important;
    }

    .mie-device-shell.mie-device-mobile .mie-map-node-pattern {
        right: 7% !important;
        top: 25% !important;
        transform: rotate(2deg) !important;
    }

    .mie-device-shell.mie-device-mobile .mie-map-node-present {
        left: 7% !important;
        bottom: 10% !important;
        transform: rotate(-1deg) !important;
    }

    .mie-device-shell.mie-device-mobile .mie-map-node-identity {
        right: 7% !important;
        bottom: 10% !important;
        transform: rotate(1deg) !important;
    }
}


/* v1.0.5 — hero map mais organizada no tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .mie-device-shell.mie-device-tablet .mie-hero-map {
        min-height: 470px !important;
    }

    .mie-device-shell.mie-device-tablet .mie-map-orbit-one {
        width: 290px !important;
        height: 290px !important;
        right: -44px !important;
        top: 38px !important;
    }

    .mie-device-shell.mie-device-tablet .mie-map-orbit-two {
        width: 235px !important;
        height: 235px !important;
        left: -46px !important;
        bottom: 42px !important;
    }

    .mie-device-shell.mie-device-tablet .mie-map-node {
        width: 136px !important;
        padding: 14px 14px !important;
        border-radius: 18px !important;
    }

    .mie-device-shell.mie-device-tablet .mie-map-node span {
        margin-bottom: 8px !important;
        font-size: .64rem !important;
    }

    .mie-device-shell.mie-device-tablet .mie-map-node strong {
        font-size: .96rem !important;
        line-height: 1.28 !important;
        margin-bottom: 0 !important;
    }

    .mie-device-shell.mie-device-tablet .mie-map-node-past {
        left: 9% !important;
        top: 9% !important;
        transform: rotate(-2deg) !important;
    }

    .mie-device-shell.mie-device-tablet .mie-map-node-pattern {
        right: 9% !important;
        top: 34% !important;
        transform: rotate(2deg) !important;
    }

    .mie-device-shell.mie-device-tablet .mie-map-node-present {
        left: 9% !important;
        bottom: 10% !important;
        transform: rotate(-1deg) !important;
    }

    .mie-device-shell.mie-device-tablet .mie-map-node-identity {
        right: 9% !important;
        bottom: 8% !important;
        transform: rotate(1deg) !important;
    }
}


/* v1.0.6 — hero map organizada no desktop */
.mie-device-shell.mie-device-desktop .mie-hero-banner {
    min-height: 560px !important;
}

.mie-device-shell.mie-device-desktop .mie-hero-map {
    min-height: 560px !important;
}

.mie-device-shell.mie-device-desktop .mie-map-orbit-one {
    width: 320px !important;
    height: 320px !important;
    right: -60px !important;
    top: 42px !important;
}

.mie-device-shell.mie-device-desktop .mie-map-orbit-two {
    width: 245px !important;
    height: 245px !important;
    left: -54px !important;
    bottom: 52px !important;
}

.mie-device-shell.mie-device-desktop .mie-map-node {
    width: 165px !important;
    padding: 16px 17px !important;
    border-radius: 19px !important;
}

.mie-device-shell.mie-device-desktop .mie-map-node span {
    margin-bottom: 8px !important;
    font-size: .66rem !important;
}

.mie-device-shell.mie-device-desktop .mie-map-node strong {
    font-size: 1rem !important;
    line-height: 1.28 !important;
    margin-bottom: 0 !important;
}

.mie-device-shell.mie-device-desktop .mie-map-node-past {
    left: 7% !important;
    top: 8% !important;
    transform: rotate(-2deg) !important;
}

.mie-device-shell.mie-device-desktop .mie-map-node-pattern {
    right: 5% !important;
    top: 31% !important;
    transform: rotate(2deg) !important;
}

.mie-device-shell.mie-device-desktop .mie-map-node-present {
    left: 7% !important;
    top: 57% !important;
    bottom: auto !important;
    transform: rotate(-1deg) !important;
}

.mie-device-shell.mie-device-desktop .mie-map-node-identity {
    right: 5% !important;
    bottom: 5% !important;
    transform: rotate(1deg) !important;
}


/* v1.0.7 — mesma composição do desktop em tablet e mobile */
@media (min-width: 768px) and (max-width: 1024px) {
    .mie-device-shell.mie-device-tablet .mie-hero-map {
        min-height: 540px !important;
    }

    .mie-device-shell.mie-device-tablet .mie-map-node {
        width: 145px !important;
        padding: 15px 15px !important;
        border-radius: 18px !important;
    }

    .mie-device-shell.mie-device-tablet .mie-map-node-past {
        left: 7% !important;
        top: 8% !important;
        bottom: auto !important;
        transform: rotate(-2deg) !important;
    }

    .mie-device-shell.mie-device-tablet .mie-map-node-pattern {
        right: 6% !important;
        top: 31% !important;
        bottom: auto !important;
        transform: rotate(2deg) !important;
    }

    .mie-device-shell.mie-device-tablet .mie-map-node-present {
        left: 7% !important;
        top: 57% !important;
        bottom: auto !important;
        transform: rotate(-1deg) !important;
    }

    .mie-device-shell.mie-device-tablet .mie-map-node-identity {
        right: 6% !important;
        top: 76% !important;
        bottom: auto !important;
        transform: rotate(1deg) !important;
    }
}

@media (max-width: 767px) {
    .mie-device-shell.mie-device-mobile .mie-hero-map {
        min-height: 500px !important;
    }

    .mie-device-shell.mie-device-mobile .mie-map-node {
        width: 128px !important;
        padding: 14px 14px !important;
        border-radius: 16px !important;
    }

    .mie-device-shell.mie-device-mobile .mie-map-node-past {
        left: 7% !important;
        top: 8% !important;
        bottom: auto !important;
        transform: rotate(-2deg) !important;
    }

    .mie-device-shell.mie-device-mobile .mie-map-node-pattern {
        right: 7% !important;
        top: 31% !important;
        bottom: auto !important;
        transform: rotate(2deg) !important;
    }

    .mie-device-shell.mie-device-mobile .mie-map-node-present {
        left: 7% !important;
        top: 57% !important;
        bottom: auto !important;
        transform: rotate(-1deg) !important;
    }

    .mie-device-shell.mie-device-mobile .mie-map-node-identity {
        right: 7% !important;
        top: 76% !important;
        bottom: auto !important;
        transform: rotate(1deg) !important;
    }
}


/* =========================================================
   v1.0.8 — FIX REAL Elementor editor: Tablet/Mobile sem depender do viewport
   O editor troca a versão pelo body.elementor-device-*, mas mantém o browser largo.
   Por isso estas regras ficam fora de @media e são escopadas pela shell do dispositivo.
   ========================================================= */

/* TABLET — mesma sequência do desktop, com espaço real entre os 4 cards */
.mie-device-shell.mie-device-tablet .mie-hero-banner {
    min-height: 620px !important;
    align-items: stretch !important;
}
.mie-device-shell.mie-device-tablet .mie-hero-collage,
.mie-device-shell.mie-device-tablet .mie-hero-map {
    min-height: 620px !important;
    height: 620px !important;
}
.mie-device-shell.mie-device-tablet .mie-map-node {
    width: 138px !important;
    padding: 14px 14px !important;
    border-radius: 18px !important;
}
.mie-device-shell.mie-device-tablet .mie-map-node span {
    margin-bottom: 8px !important;
    font-size: .64rem !important;
}
.mie-device-shell.mie-device-tablet .mie-map-node strong {
    font-size: .96rem !important;
    line-height: 1.28 !important;
    margin-bottom: 0 !important;
}
.mie-device-shell.mie-device-tablet .mie-map-node-past {
    left: 7% !important;
    right: auto !important;
    top: 6% !important;
    bottom: auto !important;
    transform: rotate(-2deg) !important;
}
.mie-device-shell.mie-device-tablet .mie-map-node-pattern {
    left: auto !important;
    right: 6% !important;
    top: 29% !important;
    bottom: auto !important;
    transform: rotate(2deg) !important;
}
.mie-device-shell.mie-device-tablet .mie-map-node-present {
    left: 7% !important;
    right: auto !important;
    top: 53% !important;
    bottom: auto !important;
    transform: rotate(-1deg) !important;
}
.mie-device-shell.mie-device-tablet .mie-map-node-identity {
    left: auto !important;
    right: 6% !important;
    top: 77% !important;
    bottom: auto !important;
    transform: rotate(1deg) !important;
}

/* MOBILE — mesma sequência, dimensionada para a largura menor */
.mie-device-shell.mie-device-mobile .mie-hero-banner {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
}
.mie-device-shell.mie-device-mobile .mie-hero-content {
    order: 1 !important;
    width: 100% !important;
    flex: 0 0 auto !important;
}
.mie-device-shell.mie-device-mobile .mie-hero-collage,
.mie-device-shell.mie-device-mobile .mie-hero-map {
    order: 2 !important;
    width: 100% !important;
    flex: 0 0 auto !important;
    min-height: 560px !important;
    height: 560px !important;
}
.mie-device-shell.mie-device-mobile .mie-map-node {
    width: 132px !important;
    padding: 14px 14px !important;
    border-radius: 16px !important;
}
.mie-device-shell.mie-device-mobile .mie-map-node span {
    margin-bottom: 8px !important;
    font-size: .64rem !important;
}
.mie-device-shell.mie-device-mobile .mie-map-node strong {
    font-size: .95rem !important;
    line-height: 1.28 !important;
    margin-bottom: 0 !important;
}
.mie-device-shell.mie-device-mobile .mie-map-node-past {
    left: 7% !important;
    right: auto !important;
    top: 6% !important;
    bottom: auto !important;
    transform: rotate(-2deg) !important;
}
.mie-device-shell.mie-device-mobile .mie-map-node-pattern {
    left: auto !important;
    right: 7% !important;
    top: 29% !important;
    bottom: auto !important;
    transform: rotate(2deg) !important;
}
.mie-device-shell.mie-device-mobile .mie-map-node-present {
    left: 7% !important;
    right: auto !important;
    top: 53% !important;
    bottom: auto !important;
    transform: rotate(-1deg) !important;
}
.mie-device-shell.mie-device-mobile .mie-map-node-identity {
    left: auto !important;
    right: 7% !important;
    top: 77% !important;
    bottom: auto !important;
    transform: rotate(1deg) !important;
}
