/* ==========================================================================
   Lírio & Co. — landing page (identidade Assamble)
   ========================================================================== */

:root {
    --brand: #29CEB4;
    --brand-dark: #16B79B;
    --accent: #FF6A4D;
    --accent-soft: #FFF1ED;
    --ink: #14143A;
    --muted: #6A6A85;
    --soft: #F4FBFA;
    --pink: #FFF5F2;
    --line: #ECEFF3;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 999px;
    transition: .25s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 12px 26px -10px rgba(41, 206, 180, .6);
}

.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
}

.btn-ghost {
    border-color: var(--brand);
    color: var(--brand-dark);
}

.btn-ghost:hover {
    background: var(--brand);
    color: #fff;
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 26px -10px rgba(255, 106, 77, .6);
}

.btn-accent:hover {
    filter: brightness(.95);
    transform: translateY(-2px);
}

/* Header */
header.top {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
    gap: 20px;
}

.nav .logo img {
    height: 42px;
}

.nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav ul a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    opacity: .85;
    transition: .2s;
}

.nav ul a:hover {
    color: var(--brand-dark);
    opacity: 1;
}

.nav ul a.active {
    color: var(--accent);
    font-weight: 700;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: 0;
    color: var(--ink);
}

@media (max-width: 940px) {

    .nav ul,
    .nav-actions .btn-ghost {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero */
.hero {
    background: linear-gradient(180deg, var(--soft), #fff 70%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
    padding: 74px 0 80px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.5px;
}

.hero h1 .hl {
    color: var(--brand-dark);
}

.hero p.lead {
    font-size: 18px;
    color: var(--muted);
    margin: 22px 0 30px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 40px 80px -40px rgba(20, 20, 58, .25);
    text-align: center;
}

.hero-card img.brand {
    width: 130px;
    height: 130px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--line);
    padding: 14px;
    margin: 0 auto 16px;
    background: #fff;
}

.hero-card .name {
    font-weight: 700;
    font-size: 20px;
}

.hero-card .slogan {
    color: var(--muted);
    font-size: 14px;
    font-style: italic;
}

.hero-mini {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.hero-mini img {
    width: 74px;
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line);
}

@media (max-width: 860px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding: 48px 0 56px;
    }
}

/* Seções */
section {
    padding: 74px 0;
}

.section-head {
    max-width: 720px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-head .eyebrow {
    margin-bottom: 14px;
}

.section-head h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.15;
}

.section-head p {
    color: var(--muted);
    margin-top: 14px;
    font-size: 16.5px;
}

.story {
    background: var(--soft);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.story-grid h2 {
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 18px;
}

.story-grid p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 16px;
}

.story-img {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 30px 70px -40px rgba(20, 20, 58, .3);
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

@media (max-width: 820px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Processo (cards) */
.cards3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px 26px;
    transition: .25s;
}

.feat:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 50px -30px rgba(20, 20, 58, .25);
}

.feat .ic {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
}

.feat h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feat p {
    color: var(--muted);
    font-size: 14.5px;
}

@media (max-width: 820px) {
    .cards3 {
        grid-template-columns: 1fr;
    }
}

/* Produtos */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.prod {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    transition: .25s;
    display: block;
}

.prod:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -35px rgba(20, 20, 58, .3);
}

.prod .ph {
    aspect-ratio: 1/1;
    background: var(--soft);
    overflow: hidden;
}

.prod .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

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

.prod .info {
    padding: 18px 20px 22px;
    text-align: center;
}

.prod .info .pn {
    font-weight: 600;
    font-size: 15.5px;
}

.prod .info .pp {
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 16px;
    margin-top: 4px;
}

@media (max-width: 820px) {
    .prod-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}

/* Citação */
.quote {
    background: var(--ink);
    color: #fff;
    text-align: center;
}

.quote blockquote {
    font-size: clamp(22px, 3.4vw, 34px);
    font-weight: 600;
    line-height: 1.35;
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: -.3px;
}

.quote blockquote .hl {
    color: var(--brand);
}

.quote .who {
    margin-top: 22px;
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Diferenciais */
.cards4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mini {
    text-align: center;
    padding: 24px 16px;
}

.mini .ic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--soft);
    color: var(--brand-dark);
    display: grid;
    place-items: center;
    font-size: 26px;
    margin: 0 auto 14px;
}

.mini h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.mini p {
    color: var(--muted);
    font-size: 13.5px;
}

@media (max-width: 820px) {
    .cards4 {
        grid-template-columns: 1fr 1fr;
    }
}

/* FAQ */
.faq {
    max-width: 820px;
    margin: 0 auto;
}

.qa {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 14px;
}

.qa h3 {
    font-size: 16.5px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
}

.qa h3 i {
    color: var(--brand-dark);
}

.qa p {
    color: var(--muted);
    font-size: 15px;
    padding-left: 28px;
}

/* CTA Assamble */
.cta-band {
    background: linear-gradient(120deg, var(--brand), #1FC4A9);
    color: #fff;
    text-align: center;
    border-radius: 32px;
    padding: 56px 28px;
    box-shadow: 0 40px 90px -50px rgba(41, 206, 180, .8);
}

.cta-band h2 {
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    letter-spacing: -.5px;
}

.cta-band p {
    max-width: 620px;
    margin: 14px auto 26px;
    opacity: .95;
    font-size: 16.5px;
}

.cta-band .btn-white {
    background: #fff;
    color: var(--brand-dark);
}

.cta-band .btn-white:hover {
    transform: translateY(-2px);
}

/* Footer */
footer.ft {
    background: var(--ink);
    color: rgba(255, 255, 255, .7);
    padding: 56px 0 28px;
    margin-top: 8px;
}

.ft-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
}

.ft-grid img {
    height: 38px;
    margin-bottom: 16px;
}

.ft h5 {
    color: #fff;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.ft a {
    display: block;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    margin-bottom: 10px;
    transition: .2s;
}

.ft a:hover {
    color: var(--brand);
}

.ft .social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.ft .social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    font-size: 18px;
    margin: 0;
}

.ft .social a:hover {
    background: var(--brand);
    color: #fff;
}

.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 40px;
    padding-top: 22px;
    text-align: center;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
}

@media (max-width: 760px) {
    .ft-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}
