.home {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 25px;
    background-color: #e8f5e9;
}

.logo-home {
    width: 150px;
    height: 150px;
    margin-bottom: -16px;
    align-self: flex-start;
}

.header {
    text-align: center;
    max-width: 800px;
}

.header h1 {
    color: #2d5c3f;
    margin-bottom: 5px;
}

.header p {
    color: #555;
}

/* BOTÃO PRINCIPAL */
.cta {
    display: block;
    text-align: center;
    background-color: #2d5c3f;
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.25s ease;
}

.cta:hover {
    background-color: #244a33;
    transform: translateY(-2px);
}

/* SEÇÕES COMO CARD */
.section {
    width: 100%;
    max-width: 800px;
    background: #fffcf7;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

/* TÍTULO DAS SEÇÕES */
.section h2 {
    margin-bottom: 12px;
    color: #2d5c3f;
}

/* TEXTO */
.section p,
.section li {
    color: #444;
    font-size: 14px;
    line-height: 1.6;
}

/* LISTA SEM BOLINHA + SETA */
.section ul {
    list-style: none;
    padding-left: 0;
}

.section li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
}

.section li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #2d5c3f;
    font-weight: bold;
}

.section-1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* CARD BASE */
.step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;

    width: 100%;
    box-sizing: border-box;

    border: 1px solid rgba(0,0,0,0.05);
}

.step-number {
    min-width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(45, 92, 63, 0.15);
    color: #2d5c3f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* CORES DIFERENTES POR PASSO */
.step-1 {
    background: #ffdcf1 !important; /* verde claro */
}

.step-2 {
    background: #c0e4fd !important; /* azul claro */
}

.step-3 {
    background: #faf9cf !important; /* laranja claro */
}

/* TEXTO */
.step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.section-2 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
}

/* lado esquerdo */
.section2-content {
    flex: 2;
    min-width: 0;
}

/* lado direito (card interno) */
.section2-tip {
    position: relative;
    z-index: 2;
    background: #a78db1;
    border-radius: 14px;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    flex: 0.8; 
    max-width: 220px; 
    min-height: 120px;  
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.section2-tip::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 4px;
    right: -4px;
    bottom: 6px;
    background: #fce4ff;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    z-index: -1;
}

/* responsivo (IMPORTANTE) */
@media (max-width: 768px) {
    .section-2 {
        flex-direction: column;
    }
}