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

.btn{
    margin: 10px 0;
    padding: 0;
    border: none;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.content-richtext a {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background-color: transparent;
    border: none;
    color: #007D7A;
    gap: 8px;
    width: auto;
    border-radius: 32px;
    font-weight: 900;
    position: relative;
    padding-right: 18px; /* Espaço para o ícone */
}

.content-richtext a::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    right: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='12' height='12' fill='none' stroke='%23007D7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V8a2 2 0 012-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.7;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Efeito hover opcional */
.content-richtext a:hover::after {
    transform: translateX(2px) translateY(-2px);
    opacity: 1;
}

.small{
    height: 32px !important;
    border-radius: 32px;
}

.medium{
    height: 40px !important;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
}

.large{
    height: 48px !important;
    border-radius: 32px;
    font-size: 18px;
    font-weight: 600;
}

.extra-large{
    height: 60px !important;
    border-radius: 32px;
    font-size: 20px;
    font-weight: 600;
}

.small:disabled, .medium:disabled, .large:disabled, .extra-large:disabled{
    background-color: #C8D1E0;
}

.primary{
    padding: 0 16px;
    background-color: #007D7A;
    border: none;
    color: white;
    gap: 8px;
    width: auto;
    text-decoration: none;
    border-radius: 32px;
}

.primary:hover{
    background-color: #006969;
    color: white;
}

.btn .primary:hover{
    background-color: #006969;
    color: white;
}

.btn:active{
    color: #025257;
}

.primary:active{
    background-color: #025257;
    color: white;
}

.btn.primary.extra-large {
    margin-top: 0px;
    margin-bottom: 0px;
}

.card-buttons{
    margin: 0;
}

.secondary{
    padding: 12px 16px;
    border: 1px solid #007D7A;
    background: white;
    color: #007D7A; 
}

.secondary:hover {
    background-color: #006969;
    color: white;
}

.secondary:active {
    background-color: #025257;
    color: white;;
}

.terciary{
    border: none;
    background: transparent;
    color: #007D7A;
    padding: 0;
}

.terciary:hover {
    background-color: #006969;
    color: white;
    cursor: pointer;
  }

.terciary:active {
    color: #025257;
    background-color: transparent;
}