.cartao-basico {
    width: 250px;
    height: 150px;
    border: 2px solid red;
    padding: 15px;
    justify-content: center;
}

.botao-flutuante {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #fff; 
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px gray;
    text-decoration: none;
    color: green;
    margin: 30px;
    justify-content: center;
}

.container-centralizado {
    width: 80%;
    min-height: 300px;
    margin: 30px;      
    border: 1px dashed #000;  
}
.moldura-irregular {
    border-radius: 5px 50px 5px 50px;
    margin: 10px 20px 30px 40px;
    padding: 25px;

    background: #fff;
    border: 2px solid #222;

    box-shadow: 0 0 0 4px #fff,  
                0 0 0 6px #222; 
}
.bloco-3d {
    width: 200px;
    height: 200px;

    border: 5px double black;
    box-shadow: 8px 8px 0px #000;
}
p, ul {
    margin: 10px;        /* remove margens externas */
    padding: 0;       /* remove margens internas */
    border: none;     /* remove bordas padrão */
}

p {
    width: 400px;     /* largura definida */
}

.circulo {
    width: 100px;
    height: 100px;
    border-radius: 50%;   /* transforma o quadrado em círculo */
    background-color: black; /* opcional, só para visualizar */
    margin: 20px;          /* margem externa uniforme */
}
.borda-4x {
    border-left: 5px solid black;   /* borda esquerda sólida */
    border-bottom: 2px dotted black; /* borda inferior pontilhada */
    border-top: none;               /* sem borda superior */
    border-right: none;             /* sem borda direita */
    padding-left: 15px;             /* afasta o texto da borda esquerda */
}
.card-interna {
    width: 300px;
    height: 200px;
    border-radius: 15px;           /* bordas arredondadas */
    margin-top: 50px;              /* margem apenas no topo */
    background-color: #f0f0f0;     /* cor de fundo para destacar a sombra */
    
    /* sombra interna */
    box-shadow: inset 5px 5px 15px rgba(0,0,0,0.3);
    
    padding: 20px;                 /* opcional, para afastar o conteúdo da borda */
}
.coluna-30, .coluna-70 {
    float: left;                 /* posicionamento lado a lado */
    height: 400px;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;      /* inclui padding e borda na largura total */
}

.coluna-30 {
    width: 30%;
}

.coluna-70 {
    width: 70%;
}

