:root {
    /* Colors */
    --bg-dark: #fffdf4;
    --bg-card: #fff8d8;
    --accent-yellow: #f4c430;
    --accent-yellow-glow: rgba(244, 196, 48, 0.28);
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Navigation --- */
.nav-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 252, 239, 0.96);
    border-bottom: 1px solid rgba(244, 196, 48, 0.18);
    backdrop-filter: blur(14px);
}

.nav-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo img {
    height: 45px; /* Altura ideal baseada visualmente */
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 1.85rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.08rem;
    line-height: 1;
    padding: 0.55rem 0;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--accent-yellow);
}

/* --- Hero Section --- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url("../img/trilista%20pagina.jpg") center center / cover no-repeat;
}

#hero-bg-canvas, 
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#hero-bg-canvas {
    z-index: -2;
}

.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.16) 0%, rgba(17, 24, 39, 0.08) 18%, rgba(17, 24, 39, 0.03) 32%, rgba(17, 24, 39, 0) 46%);
}

/* Background Glows */
.hero-glow {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-yellow-glow) 0%, transparent 70%);
    z-index: 1;
    filter: blur(80px);
    pointer-events: none;
}

.hero-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: block;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

/* Left Column */
.hero-content {
    animation: fadeInSlideUp 0.8s ease-out forwards;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(17, 24, 39, 0.22);
    color: #fff7cf;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 240, 186, 0.28);
    text-shadow: 0 1px 2px rgba(17, 24, 39, 0.22);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-title span {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(15, 23, 42, 0.18);
}

.hero-description {
    font-size: 2.5rem;
    color: #374151;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-features {
    list-style: none;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1f2937;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-yellow);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b4300;
    flex-shrink: 0;
}

.feature-icon i {
    display: none;
}

.feature-icon::before {
    content: "";
    width: 46%;
    height: 24%;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg) translate(1px, -1px);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: var(--accent-yellow);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 10px 20px -5px rgba(225, 173, 1, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(225, 173, 1, 0.4);
}

/* Right Column - Animation Placeholder */
.hero-visual {
    display: none !important;
}

.hero-image-frame {
    display: none !important;
}

.hero-cover-image {
    display: none !important;
}

/* Abstract Animation Elements */
/* Elementos de animação legados removidos */

.placeholder-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.placeholder-icon {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

/* Keyframes */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -20px) scale(1.05); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* --- Responsiveness --- */
@media (min-width: 1101px) {
    .hero {
        min-height: 80vh;
        display: block;
        background: url("../img/trilista%20pagina.jpg") 65% center / cover no-repeat;
    }

    .hero-overlay {
        z-index: 1;
    }

    .hero::before {
        content: none;
    }

    .hero-container {
        min-height: 80vh;
        display: grid;
        grid-template-columns: minmax(0, 36%) minmax(0, 64%);
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
        padding-left: 2rem;
        padding-right: 2rem;
        position: relative;
        z-index: 2;
    }

    .hero-content {
        width: min(100%, 24rem);
        max-width: 24rem;
        min-width: 0;
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: clamp(1.9rem, 2.85vw, 2.45rem);
        line-height: 1.02;
        max-width: 22rem;
        margin-bottom: 1.1rem;
    }

    .hero-description {
        max-width: 22rem;
        margin: 0 0 1.7rem;
        font-size: clamp(0.98rem, 1.15vw, 1.08rem);
        line-height: 1.6;
    }

    .hero-features {
        display: block;
        text-align: left;
        margin-bottom: 0;
        max-width: 22rem;
    }

    .feature-item {
        font-size: clamp(0.92rem, 1vw, 1rem);
        margin-bottom: 0.85rem;
    }
}

@media (max-width: 1100px) {
    .hero {
        min-height: 640px;
        display: flex;
        align-items: center;
        background: url("../img/trilista%20pagina.jpg") 65% center / cover no-repeat;
        overflow: hidden;
    }

    .hero::after {
        content: none;
        display: none;
    }

    #hero-bg-canvas {
        display: none;
    }

    .hero-overlay {
        display: block;
        z-index: 1;
        background:
            linear-gradient(90deg, rgba(255, 248, 223, 0.16) 0%, rgba(255, 248, 223, 0.08) 32%, rgba(255, 248, 223, 0) 52%);
    }

    .hero-container {
        display: grid;
        grid-template-columns: minmax(0, 36%) minmax(0, 64%);
        align-items: center;
        gap: 1.75rem;
        min-height: 640px;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .hero-content {
        width: min(100%, 18.5rem);
        max-width: 18.5rem;
        background: transparent;
        margin: 0;
        padding: 0;
    }

    .hero-title {
        font-size: clamp(1.45rem, 2.55vw, 1.82rem);
        line-height: 1.02;
        max-width: 18.5rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        max-width: 18.5rem;
        font-size: clamp(0.72rem, 1.25vw, 0.84rem);
        line-height: 1.42;
        margin-bottom: 1rem;
    }

    .hero-features {
        max-width: 18.5rem;
    }

    .feature-item {
        font-size: clamp(0.68rem, 1.16vw, 0.78rem);
        margin-bottom: 0.46rem;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        display: flex;
        gap: 1rem;
        max-width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .hero-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 768px) {
    body.landing-page {
        padding: 0;
    }

    :root {
        --hero-mobile-top-trim: 28px;
        --hero-mobile-bottom-extend: 190px;
    }

    :root {
        --header-height: 46px;
    }

    .nav-header {
        height: auto;
        min-height: var(--header-height);
        padding: 0;
        background: rgba(255, 252, 239, 0.96);
        border-bottom: 1px solid rgba(244, 196, 48, 0.18);
    }

    .nav-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.65rem;
        padding-top: 0.16rem;
        padding-bottom: 0.12rem;
    }

    .logo {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
    }

    .logo img {
        height: 24px;
        width: auto;
        max-width: none;
        object-fit: contain;
        flex-shrink: 0;
    }

    .nav-links {
        width: auto;
        justify-content: flex-end;
        gap: 0.6rem;
        white-space: nowrap;
        padding-bottom: 0.08rem;
        flex-wrap: nowrap;
    }

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 800;
        padding: 0.42rem 0;
        line-height: 1;
    }

    .hero {
        min-height: 360px;
        height: auto;
        display: flex;
        align-items: center;
        padding-bottom: 0;
        overflow: hidden;
        background: url("../img/trilista%20pagina%20mobiled%202.png") center top / cover no-repeat;
    }

    .hero::after {
        content: none;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 42% 58%;
        align-items: center;
        min-height: 360px;
        padding: 0.75rem 0.9rem 0.65rem 0.8rem;
        min-width: 0;
    }

    .hero-content {
        width: 100%;
        max-width: 11.5rem;
        text-align: left;
        position: relative;
        z-index: 2;
        margin-top: 0;
        margin-bottom: 0;
        align-self: center;
        padding: 0;
        min-width: 0;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-tag {
        font-size: 0.56rem;
        padding: 0.24rem 0.5rem;
        margin-bottom: 0.4rem;
        letter-spacing: 0.05em;
        border-radius: 999px;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(1.5rem, 5.2vw, 2.25rem);
        line-height: 1.08;
        margin-bottom: 0.42rem;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    
    .hero-description {
        font-size: clamp(0.75rem, 2.8vw, 0.92rem);
        line-height: 1.35;
        margin-bottom: 0.52rem;
        max-width: 95%;
        overflow-wrap: anywhere;
        color: rgba(255, 250, 235, 0.94);
        text-shadow: 0 1px 4px rgba(15, 23, 42, 0.22);
    }

    .hero-features {
        width: 100%;
        margin-bottom: 0;
        max-width: 100%;
    }

    .feature-item {
        font-size: 0.64rem;
        gap: 0.42rem;
        margin-bottom: 0.32rem;
        line-height: 1.2;
        overflow-wrap: anywhere;
        color: rgba(255, 250, 235, 0.96);
        text-shadow: 0 1px 4px rgba(15, 23, 42, 0.18);
    }

    .feature-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: #ffd447;
        color: #6f5200;
    }

    .feature-icon::before {
        width: 42%;
        height: 24%;
        border-left-width: 3px;
        border-bottom-width: 3px;
        transform: rotate(-45deg) translate(2px, -1px);
    }
    
    .placeholder-box {
        width: 0;
        max-width: none;
        aspect-ratio: auto;
        margin: 0;
    }

    .info-section {
        padding-top: 20px !important;
    }

    .hero-overlay {
        display: block !important;
        z-index: 1;
        background:
            linear-gradient(180deg, rgba(255, 248, 223, 0.02) 0%, rgba(255, 248, 223, 0.04) 20%, rgba(17, 24, 39, 0.12) 62%, rgba(17, 24, 39, 0.34) 100%),
            linear-gradient(90deg, rgba(17, 24, 39, 0.52) 0%, rgba(17, 24, 39, 0.26) 24%, rgba(17, 24, 39, 0.06) 40%, rgba(17, 24, 39, 0) 56%);
    }
}

@media (max-width: 640px) {
    .nav-container {
        align-items: center;
        gap: 0.35rem;
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
    }

    .logo img {
        height: 22px;
        width: auto;
        max-width: none;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-end;
        overflow-x: auto;
        padding-bottom: 0.18rem;
        margin-left: auto;
    }

    .hero {
        min-height: 390px;
        background-position: center center;
    }

    .hero-container {
        grid-template-columns: 41% 59%;
        min-height: 390px;
        padding: 0.85rem 0.72rem 0.85rem 0.7rem;
    }

    .hero-content {
        max-width: 9.5rem;
    }

    .hero-title {
        font-size: clamp(1.32rem, 5vw, 1.6rem);
    }

    .hero-description {
        font-size: 0.72rem;
    }

    .feature-item {
        font-size: 0.58rem;
        margin-bottom: 0.26rem;
    }
}

@media (min-width: 641px) and (max-width: 1100px) and (max-height: 560px) and (orientation: landscape) {
    :root {
        --header-height: 46px;
    }

    .nav-header {
        height: auto;
        min-height: var(--header-height);
        padding: 0;
    }

    .nav-container {
        align-items: center;
        gap: 0.65rem;
        padding-top: 0.16rem;
        padding-bottom: 0.12rem;
    }

    .logo img {
        height: 24px;
        width: auto;
    }

    .nav-links {
        gap: 0.6rem;
        white-space: nowrap;
        padding-bottom: 0.08rem;
        flex-wrap: nowrap;
    }

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 800;
        padding: 0.42rem 0;
        line-height: 1;
    }

    .hero {
        min-height: calc(100vh - var(--header-height));
        height: auto;
        display: flex;
        align-items: center;
        padding-bottom: 0;
        overflow: hidden;
        background: url("../img/trilista%20pagina.jpg") 76% center / cover no-repeat;
    }

    .hero::after {
        content: none;
        display: none;
    }

    .hero-container {
        display: grid;
        grid-template-columns: minmax(0, 36%) minmax(0, 64%);
        align-items: center;
        min-height: calc(100vh - var(--header-height));
        gap: 0.85rem;
        padding: 0.55rem 1.4rem 0.55rem 1.25rem;
        min-width: 0;
    }

    .hero-content {
        width: 100%;
        max-width: 15.5rem;
        text-align: left;
        position: relative;
        z-index: 2;
        margin: 0;
        padding: 0;
        min-width: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .hero-tag {
        font-size: 0.54rem;
        padding: 0.22rem 0.48rem;
        margin-bottom: 0.34rem;
        letter-spacing: 0.05em;
    }

    .hero-title {
        font-size: clamp(1.42rem, 3.05vw, 2.05rem);
        line-height: 1;
        margin-bottom: 0.34rem;
        max-width: 15.5rem;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .hero-description {
        font-size: clamp(0.74rem, 1.35vw, 0.9rem);
        line-height: 1.22;
        margin-bottom: 0.36rem;
        max-width: 15.5rem;
        color: #374151;
        text-shadow: none;
        overflow-wrap: anywhere;
    }

    .hero-features {
        width: 100%;
        margin-bottom: 0;
        max-width: 15.5rem;
    }

    .feature-item {
        font-size: clamp(0.64rem, 1.22vw, 0.78rem);
        gap: 0.38rem;
        margin-bottom: 0.18rem;
        line-height: 1.1;
        color: #1f2937;
        text-shadow: none;
        overflow-wrap: anywhere;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        border-radius: 9px;
        background: #ffd447;
        color: #6f5200;
    }

    .feature-icon::before {
        width: 42%;
        height: 24%;
        border-left-width: 3px;
        border-bottom-width: 3px;
        transform: rotate(-45deg) translate(2px, -1px);
    }

    .hero-overlay {
        display: block !important;
        z-index: 1;
        background:
            linear-gradient(90deg, rgba(255, 248, 223, 0.16) 0%, rgba(255, 248, 223, 0.08) 32%, rgba(255, 248, 223, 0) 52%);
    }
}

/* Overrides for the merged index: keep the original desktop hero art while the header logo is controlled elsewhere. */
@media (min-width: 769px) {
    body.landing-page .hero {
        background-color: #ffc20e;
        background-image: url("../img/trilista%20pagina.jpg") !important;
        background-position: 65% center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
    }
}

@media (min-width: 1101px) {
    body.landing-page .hero,
    body.landing-page .hero-container {
        min-height: min(760px, calc(100vh - var(--header-height)));
    }
}

@media (max-width: 768px) {
    body.landing-page .hero {
        background-image: url("../img/trilista%20pagina%20mobiled%202.png") !important;
        background-position: 72% center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-color: #ffc20e !important;
    }
}

/* Polished hero copy for the active landing page. */
body.landing-page .hero-content {
    width: min(100%, 30rem);
    max-width: 30rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

body.landing-page .hero-tag {
    margin-bottom: 0.9rem;
    padding: 0.42rem 0.78rem;
    background: rgba(17, 24, 39, 0.16);
    color: #fff7d1;
    border-color: rgba(255, 255, 255, 0.22);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

body.landing-page .hero-title {
    max-width: 26rem;
    margin-bottom: 0.9rem;
    color: #101827;
    font-size: clamp(2rem, 3.55vw, 3.15rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

body.landing-page .hero-title span {
    color: #ffffff;
    text-shadow: none;
}

body.landing-page .hero-description {
    max-width: 27rem;
    margin-bottom: 1.25rem;
    color: #2f3b50;
    font-size: clamp(0.98rem, 1.25vw, 1.08rem);
    line-height: 1.52;
}

body.landing-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.15rem;
}

body.landing-page .hero-cta {
    min-height: 42px;
    padding: 0 1rem;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 800;
    box-shadow: none;
}

body.landing-page .hero-cta-primary {
    background: #111827;
    color: #ffffff;
}

body.landing-page .hero-cta-secondary {
    border: 1px solid rgba(17, 24, 39, 0.16);
    background: rgba(255, 255, 255, 0.58);
    color: #111827;
}

body.landing-page .hero-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    max-width: 28rem;
    margin: 0;
}

body.landing-page .feature-item {
    display: inline-flex;
    align-items: center;
    width: auto;
    margin: 0;
    padding: 0;
    gap: 0.45rem;
    border-radius: 0;
    background: transparent;
    color: #1f2937;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.1;
}

body.landing-page .feature-icon {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: #ffd33d;
}

body.landing-page .feature-icon::before {
    border-left-width: 2px;
    border-bottom-width: 2px;
}

@media (max-width: 768px) {
    body.landing-page .hero,
    body.landing-page .hero-container {
        min-height: min(720px, calc(100svh - var(--header-height)));
    }

    body.landing-page .hero-content {
        width: min(100%, 21rem);
        max-width: 21rem;
        padding: 0;
        border-radius: 0;
    }

    body.landing-page .hero-title {
        font-size: clamp(1.7rem, 8.5vw, 2.5rem);
    }

    body.landing-page .hero-description {
        font-size: 0.9rem;
    }
}

/* Mobile hero restore: keep the artwork visible and stop copy from covering the photo. */
@media (max-width: 768px) {
    body.landing-page .hero {
        min-height: min(640px, calc(100svh - var(--header-height))) !important;
        background-image: url("../img/trilista%20pagina%20mobiled%202.png") !important;
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
        background-color: #ffc20e !important;
    }

    body.landing-page .hero-container {
        grid-template-columns: minmax(0, 39%) minmax(0, 61%) !important;
        align-items: start !important;
        min-height: min(640px, calc(100svh - var(--header-height))) !important;
        padding: clamp(0.9rem, 4vw, 1.55rem) 0.85rem 0.8rem !important;
    }

    body.landing-page .hero-content {
        width: 100% !important;
        max-width: 9.6rem !important;
        align-self: start !important;
        margin-top: clamp(0.3rem, 2.2vw, 0.85rem) !important;
    }

    body.landing-page .hero-overlay {
        display: block !important;
        z-index: 1 !important;
        background:
            linear-gradient(90deg, rgba(255, 194, 14, 0.18) 0%, rgba(255, 194, 14, 0.08) 28%, rgba(255, 194, 14, 0) 48%) !important;
    }

    body.landing-page .hero-tag {
        margin-bottom: 0.55rem !important;
        padding: 0.3rem 0.58rem !important;
        background: rgba(17, 24, 39, 0.18) !important;
        color: #fff8d7 !important;
        font-size: clamp(0.54rem, 2.7vw, 0.72rem) !important;
        line-height: 1.35 !important;
    }

    body.landing-page .hero-title {
        max-width: 9.6rem !important;
        margin-bottom: 0.5rem !important;
        color: #111827 !important;
        font-size: clamp(1.28rem, 7.3vw, 2.05rem) !important;
        line-height: 1.03 !important;
        letter-spacing: 0 !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    body.landing-page .hero-title span {
        color: #ffffff !important;
        text-shadow: 0 2px 8px rgba(15, 23, 42, 0.12) !important;
    }

    body.landing-page .hero-description {
        max-width: 9.4rem !important;
        margin-bottom: 0.75rem !important;
        color: rgba(17, 24, 39, 0.72) !important;
        font-size: clamp(0.62rem, 3.05vw, 0.82rem) !important;
        line-height: 1.34 !important;
        text-shadow: none !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    body.landing-page .hero-features {
        max-width: 10.2rem !important;
        gap: 0.45rem !important;
    }

    body.landing-page .feature-item {
        color: rgba(17, 24, 39, 0.82) !important;
        font-size: clamp(0.56rem, 2.75vw, 0.72rem) !important;
        line-height: 1.1 !important;
        text-shadow: none !important;
    }
}

@media (max-width: 390px) {
    body.landing-page .hero-content {
        max-width: 8.7rem !important;
    }

    body.landing-page .hero-title {
        max-width: 8.7rem !important;
        font-size: clamp(1.18rem, 7vw, 1.72rem) !important;
    }

    body.landing-page .hero-description {
        max-width: 8.5rem !important;
        font-size: 0.6rem !important;
    }
}

/* Mobile composition: copy sits in the empty yellow area beside the artwork. */
@media (max-width: 768px) {
    body.landing-page .hero {
        display: grid !important;
        align-items: stretch !important;
        min-height: 0 !important;
        height: auto !important;
        padding: 0 !important;
        overflow: hidden !important;
        background: #ffc20e url("../img/trilista%20pagina%20mobiled%202.png") 60% 0 / auto 148% no-repeat !important;
        background-origin: border-box !important;
    }

    body.landing-page .hero::before {
        content: none !important;
        display: none !important;
    }

    body.landing-page .hero-overlay {
        display: none !important;
    }

    body.landing-page .hero-container {
        display: grid !important;
        grid-template-columns: minmax(0, 46%) minmax(0, 54%) !important;
        align-items: start !important;
        min-height: clamp(530px, 82vw, 575px) !important;
        padding: clamp(1.55rem, 5vw, 2.05rem) 0.95rem 0.95rem !important;
        background: transparent !important;
    }

    body.landing-page .hero-content {
        width: 100% !important;
        max-width: 13.2rem !important;
        margin: clamp(0.22rem, 1.7vw, 0.72rem) 0 0 !important;
        padding: 0 !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    body.landing-page .hero-tag {
        margin-bottom: 0.72rem !important;
        padding: 0.38rem 0.72rem !important;
        background: rgba(17, 24, 39, 0.18) !important;
        color: #fff8d7 !important;
        font-size: clamp(0.5rem, 2.25vw, 0.64rem) !important;
        line-height: 1.25 !important;
        max-width: none !important;
        white-space: nowrap !important;
        letter-spacing: 0.04em !important;
    }

    body.landing-page .hero-title {
        max-width: 12.8rem !important;
        margin-bottom: 0.72rem !important;
        color: #111827 !important;
        font-size: clamp(1.72rem, 9.2vw, 2.55rem) !important;
        line-height: 0.98 !important;
        letter-spacing: 0 !important;
    }

    body.landing-page .hero-description {
        max-width: 12.8rem !important;
        margin-bottom: 0.95rem !important;
        color: rgba(17, 24, 39, 0.76) !important;
        font-size: clamp(0.72rem, 3.55vw, 0.94rem) !important;
        line-height: 1.32 !important;
        text-shadow: none !important;
    }

    body.landing-page .hero-features {
        max-width: 12.8rem !important;
        gap: 0.48rem !important;
    }

    body.landing-page .feature-item {
        color: #182133 !important;
        font-size: clamp(0.64rem, 3.2vw, 0.84rem) !important;
        line-height: 1.16 !important;
        text-shadow: none !important;
    }
}

@media (max-width: 430px) {
    body.landing-page .hero {
        background-position: 48% 0 !important;
        background-size: auto 148% !important;
    }

    body.landing-page .hero-title {
        font-size: clamp(1.48rem, 8.35vw, 2.15rem) !important;
    }
}
