
:root {
    --brand-color: #8A7363;
    --brand-dark: #4A3A31;
    --text-light: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.75);
    --bg-light: #FDFCFB;
    --bg-white: #FFFFFF;
    --bg-beige: #F9F7F5;
    --card-beige: #EBE5DF;
    --text-dark: #2C2825;
    --text-gray: #66615E;
    --border-color: #F0ECE9;
    --font-main: 'Inter', system-ui, sans-serif;
    --font-serif: 'Playfair Display', serif;
}

.lasofie-scope,
.lasofie-scope * {
    margin-top: 0;
    box-sizing: border-box;
}

.lasofie-scope {
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
}

.lasofie-scope a {
    text-decoration: none;
}

.lasofie-scope .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lasofie-scope .reveal {
    opacity: 1;
    transform: none;
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

body:not(.elementor-editor-active) .lasofie-scope .reveal {
    opacity: 0;
    transform: translateY(40px);
}

body:not(.elementor-editor-active) .lasofie-scope .reveal.active,
.elementor-editor-active .lasofie-scope .reveal,
.elementor-editor-preview .lasofie-scope .reveal,
.elementor .lasofie-scope .reveal {
    opacity: 1 !important;
    transform: none !important;
}

.lasofie-scope .delay-100 { transition-delay: 100ms; }
.lasofie-scope .delay-200 { transition-delay: 200ms; }
.lasofie-scope .delay-300 { transition-delay: 300ms; }

/* --- HEADER --- */
header.lasofie-header {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 40px 12%;
    background-color: var(--bg-light);
}

.lasofie-header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.lasofie-header .logo-container {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--brand-dark);
}

.lasofie-header .logo-title {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.lasofie-header .logo-subtitle {
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand-color);
    margin-top: 6px;
}

.lasofie-header .btn-outline-header {
    background: transparent;
    color: var(--brand-dark);
    border: 1px solid rgba(74, 58, 49, 0.2);
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lasofie-header .btn-outline-header:hover {
    background: var(--brand-dark);
    color: var(--text-light);
}


/* Header corrigido para Elementor: por padrão fica normal/estável e não some nem quebra a largura. */
.elementor-editor-active header.lasofie-header {
    position: relative !important;
}

header.lasofie-header {
    margin: 0;
}

.lasofie-header .logo-container,
.lasofie-header .btn-outline-header {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    header.lasofie-header {
        position: relative !important;
        padding: 24px 5%;
    }

    .lasofie-header .header-inner {
        justify-content: center;
        text-align: center;
        gap: 16px;
    }

    .lasofie-header .logo-container {
        align-items: center;
    }

    .lasofie-header .header-actions {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .lasofie-header .btn-outline-header {
        display: inline-flex;
    }
}

/* --- HERO SECTION --- */
.lasofie-scope.hero {
    position: relative;
    padding: 180px 12% 160px;
    background-color: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: clip;
}

.lasofie-scope .hero-editorial-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.lasofie-scope .hero-editorial-img {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    border-radius: 24px;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 60px rgba(74, 58, 49, 0.1);
    z-index: 1;
    overflow: hidden;
}

.lasofie-scope .hero-editorial-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to right, rgba(253, 252, 251, 0.5) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
    z-index: 2;
}

.lasofie-scope .hero-editorial-img video,
.lasofie-scope .cta-editorial-img video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.lasofie-scope .hero-content {
    position: absolute;
    top: 20%;
    left: -40px;
    transform: translateY(-50%);
    z-index: 2;
    width: 45%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

.lasofie-scope .hero-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand-color);
    margin-bottom: 25px;
    display: block;
}

.lasofie-scope.hero h1 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 25px;
    color: var(--brand-dark);
}

.lasofie-scope.hero h1 em {
    color: var(--brand-color);
    font-style: italic;
}

.lasofie-scope.hero p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-gray);
    margin: 0 0 45px;
    line-height: 1.6;
}

.lasofie-scope .cta-btn-hero,
.lasofie-scope .btn-cta-editorial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-dark);
    color: var(--text-light);
    padding: 18px 42px;
    text-decoration: none;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    gap: 10px;
    border: 0;
}

.lasofie-scope .cta-btn-hero:hover,
.lasofie-scope .btn-cta-editorial:hover {
    background-color: var(--brand-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(138, 115, 99, 0.25);
}

/* --- INTRODUÇÃO --- */
.lasofie-scope.sobre-plano {
    padding: 100px 12% 120px;
    background-color: var(--bg-light);
}

.lasofie-scope .sobre-plano-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.lasofie-scope .sobre-plano-text {
    flex: 1;
    max-width: 500px;
}

.lasofie-scope.sobre-plano h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.35;
    margin: 0 0 35px;
    letter-spacing: -0.5px;
}

.lasofie-scope.sobre-plano p,
.lasofie-scope.sobre-plano .intro-highlight {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0 0 20px;
}

.lasofie-scope .sobre-carrossel-wrapper {
    flex: 1;
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(74, 58, 49, 0.12);
    background-color: var(--card-beige);
}

.lasofie-scope .carrossel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.lasofie-scope .carrossel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.lasofie-scope .carrossel-slide.active {
    opacity: 1;
    z-index: 2;
}

.lasofie-scope .carrossel-slide img,
.lasofie-scope .carrossel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lasofie-scope .carrossel-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.lasofie-scope .btn-carrossel {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.lasofie-scope .btn-carrossel:hover {
    background-color: var(--text-light);
    color: var(--brand-dark);
}

.lasofie-scope .btn-carrossel svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.lasofie-scope .carrossel-dots {
    position: absolute;
    bottom: 42px;
    left: 40px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.lasofie-scope .dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    cursor: pointer;
    border: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.lasofie-scope .dot.active {
    background-color: #FFFFFF;
    width: 24px;
    border-radius: 10px;
}

/* --- INCLUSOS --- */
.lasofie-scope.sessao-inclusos-detalhes {
    padding: 120px 12% 120px;
    background-color: var(--bg-beige);
}

.lasofie-scope .inclusos-header {
    margin-bottom: 45px;
}

.lasofie-scope .inclusos-header h2 {
    margin: 0;
    color: var(--text-dark);
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 400;
}

.lasofie-scope .inclusos-galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.lasofie-scope .img-incluso {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    height: 100%;
}

.lasofie-scope .grid-categorias {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.lasofie-scope .categoria-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.lasofie-scope .categoria-icon {
    color: var(--brand-color);
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lasofie-scope .categoria-icon svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
    stroke: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lasofie-scope .categoria-titulo {
    margin: 0 0 24px;
    color: var(--text-dark);
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
}

.lasofie-scope .lista-premium {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lasofie-scope .item-incluso {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.lasofie-scope .item-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background-color: rgba(138, 115, 99, 0.1);
    color: var(--brand-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lasofie-scope .item-icon svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lasofie-scope .item-texto {
    color: var(--text-gray);
    line-height: 1.55;
}

.lasofie-scope .item-texto p {
    margin: 0;
}


/* Inclusos refinado: card/lista no estilo da referência */
.lasofie-scope.sessao-inclusos-detalhes .categoria-card {
    background: #FFFFFF;
    border: 1px solid rgba(74, 58, 49, 0.06);
    border-radius: 14px;
    padding: 38px 34px 48px;
    box-shadow: 0 18px 45px rgba(74, 58, 49, 0.055);
}

.lasofie-scope.sessao-inclusos-detalhes .categoria-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: #F6F3F0;
    color: #8A7363;
    margin-bottom: 28px;
}

.lasofie-scope.sessao-inclusos-detalhes .categoria-icon svg,
.lasofie-scope.sessao-inclusos-detalhes .categoria-icon i {
    width: 16px;
    height: 16px;
    font-size: 16px;
    stroke-width: 1.9;
}

.lasofie-scope.sessao-inclusos-detalhes .categoria-titulo {
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.2px;
    margin-bottom: 20px;
    color: #2C2825;
}

.lasofie-scope.sessao-inclusos-detalhes .lista-premium {
    gap: 14px;
}

.lasofie-scope.sessao-inclusos-detalhes .item-incluso {
    background: #FDFBFA;
    border-radius: 10px;
    padding: 15px 16px;
    gap: 13px;
    align-items: flex-start;
    border: 1px solid rgba(74, 58, 49, 0.025);
}

.lasofie-scope.sessao-inclusos-detalhes .item-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 5px;
    background: #F1EEEB;
    color: #8A7363;
    margin-top: 1px;
}

.lasofie-scope.sessao-inclusos-detalhes .item-icon svg {
    width: 12px;
    height: 12px;
    display: block;
    stroke: currentColor;
    stroke-width: 2.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lasofie-scope.sessao-inclusos-detalhes .item-texto {
    font-size: 0.91rem;
    line-height: 1.45;
    color: #5E5855;
    font-weight: 300;
}

.lasofie-scope.sessao-inclusos-detalhes .item-texto strong {
    color: #2C2825;
    font-weight: 600;
}

.lasofie-scope.sessao-inclusos-detalhes .item-texto p {
    margin: 0;
}

/* --- IDEAL --- */
.lasofie-scope.sessao-ideal {
    padding: 120px 12%;
    background-color: var(--bg-light);
}

.lasofie-scope .ideal-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.lasofie-scope .ideal-header {
    margin-bottom: 55px;
    max-width: 720px;
}

.lasofie-scope .ideal-label,
.lasofie-scope .cta-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand-color);
    margin-bottom: 16px;
}

.lasofie-scope .ideal-header h2 {
    margin: 0;
    color: var(--text-dark);
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 400;
}

.lasofie-scope .bento-grid-ideal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lasofie-scope .bento-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 36px;
    min-height: 220px;
    box-shadow: 0 20px 50px rgba(74, 58, 49, 0.06);
}

.lasofie-scope .bento-card.span-1 { grid-column: span 1; }
.lasofie-scope .bento-card.span-2 { grid-column: span 2; }

.lasofie-scope .bento-icon {
    color: var(--brand-color);
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lasofie-scope .bento-icon svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
    stroke: none;
}

.lasofie-scope .bento-card h3 {
    margin: 0 0 18px;
    color: var(--text-dark);
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
}

.lasofie-scope .bento-card p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.75;
    font-weight: 300;
}


/* Ideal: ícones preenchidos/sólidos, não em traçado */
.lasofie-scope.sessao-ideal .bento-icon svg,
.lasofie-scope.sessao-ideal .bento-icon svg path,
.lasofie-scope.sessao-ideal .bento-icon svg polygon,
.lasofie-scope.sessao-ideal .bento-icon svg circle,
.lasofie-scope.sessao-ideal .bento-icon svg rect,
.lasofie-scope.sessao-ideal .bento-icon svg polyline,
.lasofie-scope.sessao-ideal .bento-icon svg line {
    fill: currentColor !important;
    stroke: none !important;
}

.lasofie-scope.sessao-ideal .bento-icon {
    color: #8A7363;
}

/* --- CTA FINAL --- */
.lasofie-scope.sessao-cta-final {
    padding: 120px 12%;
    background: var(--bg-beige);
}

.lasofie-scope .cta-editorial-container {
    position: relative;
    width: 100%;
    min-height: 650px;
    max-width: 1120px;
    margin: 0 auto;
}

.lasofie-scope .cta-editorial-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    border-radius: 28px;
    background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 60px rgba(74, 58, 49, 0.12);
    overflow: hidden;
}

.lasofie-scope .cta-editorial-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 26px;
    padding: 58px 48px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.lasofie-scope .cta-editorial-content h2 {
    font-family: var(--font-serif);
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 25px;
    color: var(--brand-dark);
}

.lasofie-scope .cta-editorial-content h2 em {
    color: var(--brand-color);
    font-style: italic;
}

.lasofie-scope .cta-editorial-content p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-gray);
    margin: 0 0 45px;
    line-height: 1.6;
}

.lasofie-scope .btn-cta-editorial svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}


/* Hero sem imagem: somente vidro retangular ocupando a hero */
.lasofie-scope.hero.hero-sem-imagem {
    background:
        radial-gradient(circle at top left, rgba(138, 115, 99, 0.14), transparent 34%),
        linear-gradient(135deg, #FDFCFB 0%, #F9F7F5 100%);
}

.lasofie-scope.hero.hero-sem-imagem .hero-editorial-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.lasofie-scope.hero.hero-sem-imagem .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.lasofie-scope.hero.hero-sem-imagem .hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.70), rgba(255,255,255,0.34)),
        radial-gradient(circle at 90% 15%, rgba(138,115,99,0.10), transparent 28%);
    pointer-events: none;
    z-index: 0;
}

.lasofie-scope.hero.hero-sem-imagem .hero-content > * {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

/* --- MOBILE --- */
@media (max-width: 1024px) {
    .lasofie-scope .hero-content,
    .lasofie-scope .cta-editorial-content {
        width: 58%;
    }

    .lasofie-scope .bento-grid-ideal {
        grid-template-columns: repeat(2, 1fr);
    }

    .lasofie-scope .bento-card.span-1,
    .lasofie-scope .bento-card.span-2 {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    header.lasofie-header {
        position: absolute;
        padding: 28px 5%;
    }

    .lasofie-header .header-inner {
        align-items: flex-start;
    }

    .lasofie-header .btn-outline-header {
        display: inline-flex;
    }

    .lasofie-scope.hero {
        padding: 120px 5% 60px;
        display: block;
        min-height: auto;
    }

    .lasofie-scope .hero-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 95% !important;
        margin: 0 auto;
        padding: 40px 30px;
        text-align: center;
    }

    .lasofie-scope.hero h1 {
        font-size: 2.5rem;
    }

    .lasofie-scope .hero-editorial-img {
        margin-bottom: -50px;
        min-height: 380px;
    }

    .lasofie-scope.sobre-plano,
    .lasofie-scope.sessao-inclusos-detalhes,
    .lasofie-scope.sessao-ideal,
    .lasofie-scope.sessao-cta-final {
        padding: 70px 5%;
    }

    .lasofie-scope .sobre-plano-inner {
        flex-direction: column;
        gap: 40px;
    }

    .lasofie-scope .sobre-plano-text {
        max-width: 100%;
    }

    .lasofie-scope .inclusos-galeria,
    .lasofie-scope .grid-categorias,
    .lasofie-scope .bento-grid-ideal {
        grid-template-columns: 1fr !important;
    }

    .lasofie-scope .bento-card {
        grid-column: span 1 !important;
    }

    .lasofie-scope .cta-editorial-container {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .lasofie-scope .cta-editorial-img,
    .lasofie-scope .cta-editorial-content {
        position: relative !important;
        width: 100% !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }

    .lasofie-scope .cta-editorial-img {
        height: 360px;
        margin-bottom: -50px;
    }

    .lasofie-scope .cta-editorial-content {
        padding: 40px 30px;
    }

    .lasofie-scope .cta-editorial-content h2 {
        font-size: 2.5rem;
    }
}


/* Suporte para ícones da biblioteca do Elementor/Font Awesome */
.lasofie-scope .categoria-icon i,
.lasofie-scope .bento-icon i {
    font-size: 34px;
    line-height: 1;
}

.lasofie-scope .item-icon i {
    font-size: 14px;
    line-height: 1;
}

.lasofie-scope .btn-cta-editorial i {
    font-size: 18px;
    line-height: 1;
}


@media (max-width: 768px) {
    .lasofie-scope.hero.hero-sem-imagem .hero-content {
        width: 100% !important;
        min-height: 560px;
        padding: 50px 30px;
        text-align: center;
    }

    .lasofie-scope.hero.hero-sem-imagem .hero-content > * {
        max-width: 100%;
    }
}


/* Ícones da página em preenchimento sólido, não em traçado */
.lasofie-scope .categoria-icon svg,
.lasofie-scope .categoria-icon svg *,
.lasofie-scope .bento-icon svg,
.lasofie-scope .bento-icon svg *,
.lasofie-scope .item-icon svg,
.lasofie-scope .item-icon svg *,
.lasofie-scope .btn-carrossel svg,
.lasofie-scope .btn-carrossel svg *,
.lasofie-scope .btn-cta-editorial svg,
.lasofie-scope .btn-cta-editorial svg * {
    fill: currentColor !important;
    stroke: none !important;
}

.lasofie-scope .categoria-icon i,
.lasofie-scope .bento-icon i,
.lasofie-scope .item-icon i {
    color: currentColor;
}

/* Ajustes de tamanho para SVGs preenchidos */
.lasofie-scope .categoria-icon svg,
.lasofie-scope .bento-icon svg {
    display: block;
}

.lasofie-scope .item-icon svg {
    width: 10px;
    height: 10px;
    display: block;
}

.lasofie-scope .btn-carrossel svg {
    width: 14px;
    height: 14px;
    display: block;
}

.lasofie-scope .btn-cta-editorial svg {
    width: 16px;
    height: 16px;
    display: block;
}




/* V13 - Ideal com fundo e vidro editáveis pelo Elementor */
.lasofie-scope.sessao-ideal {
    background-color: #8A7363;
}

.lasofie-scope.sessao-ideal .ideal-label,
.lasofie-scope.sessao-ideal .ideal-header h2 {
    color: #FFFFFF;
}

.lasofie-scope.sessao-ideal .bento-card {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.lasofie-scope.sessao-ideal .bento-card h3,
.lasofie-scope.sessao-ideal .bento-icon {
    color: #FFFFFF;
}

.lasofie-scope.sessao-ideal .bento-card p {
    color: rgba(255, 255, 255, 0.84);
}


/* V14 - ajustes finais: hero mais compacta, hover e rolagem suave */
html {
    scroll-behavior: smooth;
}

.lasofie-scope.hero.hero-sem-imagem {
    min-height: 78vh;
    padding: 120px 12% 90px;
}

.lasofie-scope.hero.hero-sem-imagem .hero-content {
    min-height: 480px;
    transition: transform 0.45s ease, box-shadow 0.45s ease, background 0.45s ease, border-color 0.45s ease;
}

.lasofie-scope.hero.hero-sem-imagem .hero-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 70px rgba(74, 58, 49, 0.13);
    border-color: rgba(255, 255, 255, 0.98);
}

.lasofie-scope .categoria-card,
.lasofie-scope .bento-card,
.lasofie-scope .sobre-carrossel-wrapper,
.lasofie-scope .cta-editorial-content,
.lasofie-scope .img-incluso {
    transition: transform 0.42s ease, box-shadow 0.42s ease, border-color 0.42s ease, background 0.42s ease;
}

.lasofie-scope .categoria-card:hover,
.lasofie-scope .bento-card:hover,
.lasofie-scope .sobre-carrossel-wrapper:hover,
.lasofie-scope .cta-editorial-content:hover {
    transform: translateY(-6px);
}

.lasofie-scope .categoria-card:hover,
.lasofie-scope .bento-card:hover {
    box-shadow: 0 24px 60px rgba(74, 58, 49, 0.12);
}

.lasofie-scope .img-incluso:hover {
    transform: translateY(-4px) scale(1.01);
}

.lasofie-scope .cta-btn-hero,
.lasofie-scope .btn-cta-editorial,
.lasofie-header .btn-outline-header,
.lasofie-scope .btn-carrossel {
    transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.32s ease, color 0.32s ease, border-color 0.32s ease;
}

.lasofie-scope .cta-btn-hero:hover,
.lasofie-scope .btn-cta-editorial:hover,
.lasofie-header .btn-outline-header:hover {
    transform: translateY(-3px);
}

body:not(.elementor-editor-active) .lasofie-scope .reveal {
    transition: opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1), transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (max-width: 768px) {
    .lasofie-scope.hero.hero-sem-imagem {
        min-height: auto;
        padding: 80px 5% 55px;
    }

    .lasofie-scope.hero.hero-sem-imagem .hero-content {
        min-height: 430px;
        padding: 42px 28px;
    }
}


/* V15 - movimentos finais premium: rolagem, hover e zoom leve */
body:not(.elementor-editor-active) .lasofie-scope .reveal {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    filter: blur(3px);
    transition:
        opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.9s cubic-bezier(0.25, 1, 0.5, 1),
        filter 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

body:not(.elementor-editor-active) .lasofie-scope .reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.lasofie-scope .hero-content,
.lasofie-scope .categoria-card,
.lasofie-scope .bento-card,
.lasofie-scope .cta-editorial-content {
    will-change: transform, box-shadow;
}

.lasofie-scope.hero.hero-sem-imagem .hero-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 80px rgba(74, 58, 49, 0.16);
}

.lasofie-scope .categoria-card:hover {
    transform: translateY(-8px) scale(1.008);
    box-shadow: 0 28px 70px rgba(74, 58, 49, 0.13);
    border-color: rgba(138, 115, 99, 0.13);
}

.lasofie-scope.sessao-ideal .bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
    border-color: rgba(255, 255, 255, 0.36) !important;
    background: rgba(255, 255, 255, 0.18) !important;
}

.lasofie-scope .bento-card:hover .bento-icon,
.lasofie-scope .categoria-card:hover .categoria-icon {
    transform: scale(1.08);
}

.lasofie-scope .bento-icon,
.lasofie-scope .categoria-icon {
    transition: transform 0.38s ease, color 0.38s ease, background 0.38s ease;
}

.lasofie-scope .sobre-carrossel-wrapper {
    overflow: hidden;
}

.lasofie-scope .sobre-carrossel-wrapper:hover {
    transform: translateY(-7px);
    box-shadow: 0 34px 78px rgba(74, 58, 49, 0.16);
}

.lasofie-scope .carrossel-slide img,
.lasofie-scope .carrossel-slide video,
.lasofie-scope .cta-editorial-img,
.lasofie-scope .img-incluso {
    will-change: transform;
    transition: transform 1.1s cubic-bezier(0.25, 1, 0.5, 1), filter 1.1s cubic-bezier(0.25, 1, 0.5, 1);
}

.lasofie-scope .carrossel-slide.active img,
.lasofie-scope .carrossel-slide.active video {
    transform: scale(1.025);
}

.lasofie-scope .sobre-carrossel-wrapper:hover .carrossel-slide.active img,
.lasofie-scope .sobre-carrossel-wrapper:hover .carrossel-slide.active video {
    transform: scale(1.045);
}

.lasofie-scope .inclusos-galeria {
    overflow: visible;
}

.lasofie-scope .img-incluso:hover {
    transform: translateY(-6px) scale(1.025);
    filter: brightness(1.03);
    box-shadow: 0 22px 50px rgba(74, 58, 49, 0.13);
}

.lasofie-scope .cta-editorial-container {
    overflow: visible;
}

.lasofie-scope .cta-editorial-img {
    overflow: hidden;
}

.lasofie-scope .cta-editorial-img:hover {
    transform: scale(1.015);
}

.lasofie-scope .cta-editorial-content:hover {
    transform: translateY(calc(-50% - 7px));
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.10);
}

.lasofie-scope .cta-btn-hero:hover,
.lasofie-scope .btn-cta-editorial:hover,
.lasofie-header .btn-outline-header:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(74, 58, 49, 0.18);
}

.lasofie-scope .btn-cta-editorial svg {
    transition: transform 0.32s ease;
}

.lasofie-scope .btn-cta-editorial:hover svg {
    transform: translateX(4px);
}

.lasofie-scope .item-incluso {
    transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.lasofie-scope .item-incluso:hover {
    transform: translateX(4px);
    background: #FFFFFF;
}

/* Mantém o CTA normal no mobile, sem cálculo de translate do desktop */
@media (max-width: 768px) {
    .lasofie-scope .cta-editorial-content:hover {
        transform: translateY(-6px) !important;
    }

    .lasofie-scope .img-incluso:hover,
    .lasofie-scope .categoria-card:hover,
    .lasofie-scope .bento-card:hover {
        transform: translateY(-5px);
    }
}
