/*
 * Landing page pública — www.cabidenovo.com.br
 * Design "Pastel lúdica" (specs/Landing Page.zip)
 *
 * Tokens: rosa pálido #FCE4E7 · blush #F9C0C0 · azul pó #A7C9D1 · sage #D2E394
 *         slate #2C3E50 · teal (ação) #1abc9c / hover #16a085
 */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Lato", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #212529;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

.cn-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Navbar ---------- */

.cn-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: #FCE4E7;
    padding: 0.7rem 0;
}

.cn-nav .cn-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cn-nav-brand {
    background: #fff;
    border-radius: 50rem;
    padding: 7px 18px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(44, 62, 80, .08);
    text-decoration: none;
}

.cn-nav-brand img {
    height: 34px;
    display: block;
}

.cn-nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}

.cn-nav-link {
    color: #2C3E50;
    text-decoration: none;
    padding: 0.55rem 0.95rem;
    border-radius: 50rem;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    transition: background .15s, color .15s;
}

.cn-nav-link:hover {
    background: #fff;
}

.cn-nav-link--cta {
    color: #fff;
    background: #1abc9c;
    padding: 0.55rem 1.1rem;
}

.cn-nav-link--cta:hover {
    background: #16a085;
}

/* ---------- Hero ---------- */

.cn-hero {
    background: #FCE4E7;
    padding: calc(3.5rem + 76px) 24px 0; /* 76px compensa a navbar fixa */
    text-align: center;
}

@keyframes cnFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.cn-hero-lion {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.8rem;
    background: #fff;
    box-shadow: 0 14px 36px rgba(44, 62, 80, .12);
    animation: cnFloat 6s ease-in-out infinite;
}

.cn-hero-lion img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cn-hero h1 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: clamp(2.3rem, 5.5vw, 4rem);
    line-height: 1.1;
    color: #2C3E50;
    margin: 0;
}

.cn-hero-sub {
    font-size: 1.25rem;
    color: rgba(44, 62, 80, .75);
    max-width: 560px;
    margin: 1.6rem auto 0;
    text-wrap: pretty;
}

.cn-hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.2rem;
}

.cn-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 1.9rem;
    font-size: 1.1rem;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    border-radius: 50rem;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.cn-btn--primary {
    background: #1abc9c;
    color: #fff;
    box-shadow: 0 8px 20px rgba(26, 188, 156, .35);
}

.cn-btn--primary:hover {
    background: #16a085;
}

.cn-btn--secondary {
    background: #fff;
    color: #2C3E50;
    box-shadow: 0 4px 14px rgba(44, 62, 80, .1);
}

.cn-btn--secondary:hover {
    background: #2C3E50;
    color: #fff;
}

/* Transição rosa → branco em festão */
.cn-scallop {
    display: block;
    width: 100%;
    height: 28px;
    margin-top: 4rem;
}

/* ---------- Títulos de seção ---------- */

.cn-section-title {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 2.3rem;
    color: #2C3E50;
    text-align: center;
    margin: 0;
}

.cn-section-sub {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(44, 62, 80, .7);
    max-width: 600px;
    margin: 1rem auto 0;
    text-wrap: pretty;
}

/* ---------- Grupos de WhatsApp ---------- */

.cn-grupos {
    background: #fff;
    padding: 4.5rem 24px 5rem;
}

.cn-grupos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 2.8rem;
}

.cn-grupo {
    border-radius: 1.5rem;
    padding: 1.4rem 1.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cn-grupo--meninas { background: rgba(249, 192, 192, .32); }
.cn-grupo--calcados { background: rgba(167, 201, 209, .32); }
.cn-grupo--fabrica { background: rgba(210, 227, 148, .38); }

.cn-grupo-chip {
    align-self: flex-start;
    background: #fff;
    color: #2C3E50;
    border-radius: 50rem;
    padding: 4px 12px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cn-grupo h3 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #2C3E50;
    margin: 0;
}

.cn-grupo-desc {
    font-size: 0.92rem;
    color: rgba(44, 62, 80, .65);
    flex: 1;
    margin: 0;
}

.cn-grupo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #2C3E50;
    color: #fff;
    border-radius: 50rem;
    padding: 10px 16px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background .15s;
}

.cn-grupo-btn:hover {
    background: #1abc9c;
}

/* ---------- Vitrine ---------- */

.cn-vitrine {
    background: rgba(167, 201, 209, .22);
    padding: 5rem 24px;
}

.cn-polaroids {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cn-polaroid {
    background: #fff;
    padding: 14px 14px 18px;
    border-radius: 6px;
    box-shadow: 0 10px 26px rgba(44, 62, 80, .14);
    transition: transform .2s;
    width: 300px;
}

.cn-polaroid--r1 { transform: rotate(-2.5deg); }
.cn-polaroid--r2 { transform: rotate(1.5deg); margin-top: 18px; }
.cn-polaroid--r3 { transform: rotate(-1.5deg); }

.cn-polaroid:hover {
    transform: rotate(0deg) scale(1.04);
}

.cn-polaroid img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
}

.cn-polaroid-legenda {
    text-align: center;
    font-style: italic;
    color: rgba(44, 62, 80, .7);
    margin-top: 12px;
    font-size: 1rem;
}

/* ---------- Instagram ---------- */

.cn-instagram {
    background: #fff;
    padding: 5rem 24px;
    text-align: center;
}

.cn-ig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 2.8rem;
}

.cn-ig-item {
    display: block;
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
}

.cn-ig-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cn-btn--rosa {
    margin-top: 2.5rem;
    padding: 0.95rem 1.8rem;
    font-size: 1rem;
    background: #FCE4E7;
    color: #2C3E50;
}

.cn-btn--rosa:hover {
    background: #F9C0C0;
    color: #2C3E50;
}

/* ---------- Como funciona ---------- */

.cn-comofunciona {
    background: rgba(210, 227, 148, .3);
    padding: 5rem 24px 5.5rem;
}

.cn-comofunciona .cn-section-title {
    margin-bottom: 2.8rem;
}

.cn-passos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.cn-passo {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 6px 18px rgba(44, 62, 80, .07);
}

.cn-passo-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #2C3E50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
}

.cn-passo:nth-child(1) .cn-passo-num { background: #F9C0C0; }
.cn-passo:nth-child(2) .cn-passo-num { background: #A7C9D1; }
.cn-passo:nth-child(3) .cn-passo-num { background: #D2E394; }
.cn-passo:nth-child(4) .cn-passo-num { background: #FCE4E7; }

.cn-passo h3 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #2C3E50;
    margin: 0 0 0.5rem;
}

.cn-passo p {
    font-size: 0.95rem;
    color: rgba(44, 62, 80, .65);
    margin: 0;
    text-wrap: pretty;
}

.cn-desapego {
    max-width: 700px;
    margin: 3rem auto 0;
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 6px 18px rgba(44, 62, 80, .07);
}

.cn-desapego img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cn-desapego p {
    margin: 0;
    font-size: 1.05rem;
    color: #2C3E50;
    flex: 1;
    min-width: 240px;
    text-wrap: pretty;
}

.cn-desapego strong {
    font-family: Montserrat, sans-serif;
}

.cn-desapego a {
    color: #1abc9c;
    font-weight: 700;
    text-decoration: none;
    transition: color .15s;
}

.cn-desapego a:hover {
    color: #16a085;
}

/* ---------- Footer ---------- */

.cn-footer {
    background: #2C3E50;
    color: #fff;
    padding: 4.5rem 24px 2rem;
    text-align: center;
}

.cn-footer-lion {
    width: 92px;
    margin-bottom: 1.2rem;
}

.cn-footer-nome {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0;
}

.cn-footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, .65);
    margin: 0.4rem 0 1.6rem;
}

.cn-footer-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.cn-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 100%;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.cn-footer-social a:hover {
    background: #fff;
    color: #2C3E50;
}

.cn-footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, .45);
    margin: 2.5rem 0 0;
}
