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

:root {
    --rosa: #ff5c9a;
    --rosa-escuro: #d03a76;
    --fundo: #fff7fb;
    --texto: #333;
    --cinza: #777;
    --preto: #111;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--fundo);
    color: var(--texto);
    line-height: 1.6;
}

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

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

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--preto);
    letter-spacing: 1px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
}

.nav a {
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    transition: 0.2s;
    font-weight: 500;
    color: var(--cinza);
}

.nav a:hover {
    background: var(--rosa);
    color: white;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #ffe0f0, #fff7fb);
    padding: 3rem 0 3.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero h1 {
    font-size: 2.1rem;
    margin-bottom: 0.8rem;
    color: var(--preto);
}

.hero p {
    font-size: 1rem;
    color: var(--cinza);
    margin-bottom: 1.3rem;
}

.tagline {
    display: inline-block;
    font-size: 0.9rem;
    background: white;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 0.6rem;
    border: 1px solid #ffd3e7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 0.6rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
}

.btn-primary {
    background: var(--rosa);
    color: white;
    box-shadow: 0 8px 18px rgba(255, 92, 154, 0.35);
}

.btn-primary:hover {
    background: var(--rosa-escuro);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid var(--rosa);
    color: var(--rosa-escuro);
    background: white;
}

.btn-outline:hover {
    background: #ffe6f3;
}

.hero-info {
    font-size: 0.85rem;
    color: var(--cinza);
}

.hero-card {
    background: white;
    border-radius: 1.2rem;
    padding: 1.2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.hero-card h3 {
    font-size: 1.05rem;
    color: var(--rosa-escuro);
    margin-bottom: 0.6rem;
}

.hero-card p {
    font-size: 0.9rem;
    color: var(--cinza);
    margin-bottom: 0.4rem;
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: #fff1f8;
    margin-top: 0.4rem;
}

/* SEÇÕES GERAIS */
section {
    padding: 2.5rem 0;
}

.section-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    color: var(--preto);
}

.section-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--cinza);
    margin-bottom: 1.8rem;
}

/* SOBRE */
.sobre-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.sobre-text p {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

.sobre-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 0.8rem;
}

.sobre-item {
    background: white;
    border-radius: 0.9rem;
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
    color: var(--cinza);
    border: 1px solid #ffe1f0;
}

.sobre-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--rosa-escuro);
    margin-bottom: 0.2rem;
}

/* PRODUTOS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.card {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
}

.card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--preto);
}

.card p {
    color: var(--cinza);
    margin-bottom: 0.4rem;
}

.tag-small {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: #fff1f8;
    margin-top: 0.3rem;
}

/* CURSOS */
.cursos-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.4rem;
    align-items: flex-start;
}

.curso-card {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    border: 1px dashed #ffc6df;
}

.curso-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--preto);
}

.curso-info {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: var(--cinza);
}

.curso-preco {
    font-size: 0.95rem;
    margin-top: 0.4rem;
    margin-bottom: 0.5rem;
}

.curso-preco strong {
    color: var(--rosa-escuro);
}

.curso-lista {
    list-style: disc;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    color: var(--cinza);
    margin-bottom: 0.8rem;
}



/* CONTATO */
.contato-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.6rem;
    align-items: center;
}

.contato-info p {
    font-size: 0.95rem;
    color: var(--cinza);
    margin-bottom: 0.5rem;
}

.contato-dados {
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.contato-dados strong {
    color: var(--preto);
}

.contato-box {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
}

.contato-box label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
    color: var(--cinza);
}

.contato-box input,
.contato-box textarea {
    width: 100%;
    padding: 0.5rem 0.7rem;
    border-radius: 0.7rem;
    border: 1px solid #ffd7ea;
    margin-bottom: 0.6rem;
    font-family: inherit;
    font-size: 0.85rem;
}

.contato-box textarea {
    min-height: 80px;
    resize: vertical;
}

/* FOOTER */
footer {
    background: white;
    padding: 1.2rem 0;
    margin-top: 1.5rem;
    border-top: 1px solid #ffe1f0;
    font-size: 0.8rem;
    color: var(--cinza);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-flex a {
    color: var(--rosa-escuro);
    font-weight: 500;
}

/* RESPONSIVO */
@media (max-width: 900px) {

    .hero-grid,
    .sobre-grid,
    .cards-grid,
    .cursos-wrapper,
    .contato-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .hero {
        padding-top: 2rem;
    }

    .hero-grid {
        gap: 1.5rem;
    }

    .nav ul {
        display: none;
        /* menu simples no mobile */
    }
}

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

footer {
    background: white;
    padding: 1.8rem 0;
    border-top: 1px solid #ffe1f0;
    font-size: 0.9rem;
    color: var(--cinza);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--rosa-escuro);
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    color: var(--cinza);
}

.footer-info a {
    color: var(--rosa-escuro);
    font-weight: 600;
}

.icon-footer {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}

.footer-copy {
    text-align: right;
}

.footer-copy a {
    color: var(--rosa-escuro);
    font-weight: 500;
}

.curso-botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.btn-vip {
    background: #25D366;
    /* verde WhatsApp */
    color: white;
    border: none;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
}

.btn-vip:hover {
    background: #1ebc57;
    transform: translateY(-1px);
}