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

body {
    background-color: #f2f1eb; /* Fundo idêntico ao vídeo */
    font-family: 'Montserrat', sans-serif; /* Nova fonte aplicada */
    color: #333;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    -webkit-font-smoothing: antialiased; /* Melhora a nitidez da fonte */
}

.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.logo-container {
    margin-bottom: 25px;
}

.logo {
    width: 130px;
    height: 130px;
    object-fit: cover; /* Garante que a imagem não distorça */
    border-radius: 25px; /* Cantos arredondados do logo */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Sombra suave */
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    background: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 16px; /* Cantos mais suaves nos botões */
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: scale(1.02); /* Leve zoom ao passar o mouse */
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}

.icon {
    font-size: 1.4rem;
    color: #7c8a7c; /* Verde suave dos ícones */
    width: 45px;
    text-align: left;
    display: flex;
    align-items: center;
}

.text {
    flex-grow: 1;
    text-align: left;
}

.title {
    display: block;
    font-weight: 600;
    color: #222;
    font-size: 0.95rem;
}

.subtitle {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-top: 3px;
    font-weight: 500;
}

.arrow {
    color: #d1d1d1;
    font-size: 0.85rem;
}

footer {
    margin-top: 50px;
    font-size: 0.85rem;
    color: #777;
    font-weight: 500;
}

footer strong {
    color: #2d4f1e;
}